Higher level convenience functions are defined in ua.hpp.
More...
|
idaman THREAD_SAFE void ida_export | tag_addr (qstring *buf, ea_t ea, bool ins=false) |
| Insert an address mark into a string.
|
idaman THREAD_SAFE const char *ida_export | tag_advance (const char *line, int cnt) |
| Move pointer to a 'line' to 'cnt' positions right.
|
idaman THREAD_SAFE const char *ida_export | tag_skipcodes (const char *line) |
| Move the pointer past all color codes.
|
idaman THREAD_SAFE const char *ida_export | tag_skipcode (const char *line) |
| Skip one color code.
|
idaman THREAD_SAFE ssize_t ida_export | tag_strlen (const char *line) |
| Calculate length of a colored string This function computes the length in unicode codepoints of a line.
|
idaman THREAD_SAFE ssize_t ida_export | tag_remove (qstring *buf, const char *str, int init_level=0) |
| Remove color escape sequences from a string.
|
THREAD_SAFE ssize_t idaapi | tag_remove (qstring *buf, const qstring &str, int init_level=0) |
THREAD_SAFE ssize_t idaapi | tag_remove (qstring *buf, int init_level=0) |
Higher level convenience functions are defined in ua.hpp.
Please use the following functions only if functions from ua.hpp are not useful in your case.
◆ tag_addr()
Insert an address mark into a string.
- Parameters
-
buf | pointer to the output buffer; the tag will be appended or inserted into it |
ea | address to include |
ins | if true, the tag will be inserted at the beginning of the buffer |
◆ tag_advance()
idaman THREAD_SAFE const char *ida_export tag_advance |
( |
const char * | line, |
|
|
int | cnt ) |
Move pointer to a 'line' to 'cnt' positions right.
Take into account escape sequences.
- Parameters
-
line | pointer to string |
cnt | number of positions to move right |
- Returns
- moved pointer
◆ tag_skipcodes()
idaman THREAD_SAFE const char *ida_export tag_skipcodes |
( |
const char * | line | ) |
|
Move the pointer past all color codes.
- Parameters
-
- Returns
- moved pointer, can't be nullptr
◆ tag_skipcode()
idaman THREAD_SAFE const char *ida_export tag_skipcode |
( |
const char * | line | ) |
|
Skip one color code.
This function should be used if you are interested in color codes and want to analyze all of them. Otherwise tag_skipcodes() function is better since it will skip all colors at once. This function will skip the current color code if there is one. If the current symbol is not a color code, it will return the input.
- Returns
- moved pointer
◆ tag_strlen()
idaman THREAD_SAFE ssize_t ida_export tag_strlen |
( |
const char * | line | ) |
|
Calculate length of a colored string This function computes the length in unicode codepoints of a line.
- Returns
- the number of codepoints in the line, or -1 on error
◆ tag_remove() [1/3]
idaman THREAD_SAFE ssize_t ida_export tag_remove |
( |
qstring * | buf, |
|
|
const char * | str, |
|
|
int | init_level = 0 ) |
Remove color escape sequences from a string.
- Parameters
-
buf | output buffer with the string, cannot be nullptr. |
str | input string, cannot be nullptr. |
init_level | used to verify that COLOR_ON and COLOR_OFF tags are balanced |
- Returns
- length of resulting string, -1 if error
◆ tag_remove() [2/3]
◆ tag_remove() [3/3]
THREAD_SAFE ssize_t idaapi tag_remove |
( |
qstring * | buf, |
|
|
int | init_level = 0 ) |
|
inline |