Characteristics of a breakpoint.
|
|
bool | is_hwbpt (void) const |
| | Is hardware breakpoint?
|
| |
|
bool | enabled (void) const |
| | Is breakpoint enabled?
|
| |
|
bool | is_low_level (void) const |
| | Is bpt condition calculated at low level?
|
| |
|
bool | badbpt (void) const |
| | Failed to write bpt to process memory?
|
| |
|
bool | listbpt (void) const |
| | Include in the bpt list?
|
| |
|
bool | is_compiled (void) const |
| | Condition has been compiled?
|
| |
|
bool | is_active (void) const |
| | Written completely to process?
|
| |
|
bool | is_partially_active (void) const |
| | Written partially to process?
|
| |
|
bool | is_inactive (void) const |
| | Not written to process at all?
|
| |
|
bool | is_page_bpt (void) const |
| | Page breakpoint?
|
| |
|
int | get_size (void) const |
| | Get bpt size.
|
| |
|
void | set_abs_bpt (ea_t a) |
| | Set bpt location to an absolute address.
|
| |
|
void | set_src_bpt (const char *fn, int lineno) |
| | Set bpt location to a source line.
|
| |
|
void | set_sym_bpt (const char *sym, uval_t o) |
| | Set bpt location to a symbol.
|
| |
|
void | set_rel_bpt (const char *mod, uval_t o) |
| | Set bpt location to a relative address.
|
| |
|
bool | is_absbpt (void) const |
| | Is absolute address breakpoint?
|
| |
|
bool | is_relbpt (void) const |
| | Is relative address breakpoint?
|
| |
|
bool | is_symbpt (void) const |
| | Is symbolic breakpoint?
|
| |
|
bool | is_srcbpt (void) const |
| | Is source level breakpoint?
|
| |
|
bool | is_tracemodebpt (void) const |
| | Does breakpoint trace anything?
|
| |
|
bool | is_traceonbpt (void) const |
| | Is this a tracing breakpoint, and is tracing enabled?
|
| |
|
bool | is_traceoffbpt (void) const |
| | Is this a tracing breakpoint, and is tracing disabled?
|
| |
|
bool | set_trace_action (bool enable, int trace_types) |
| | Configure tracing options.
|
| |
|
const char * | get_cnd_elang () const |
| | Get the scripting language name for the condition string.
|
| |
| bool | set_cnd_elang (const char *name) |
| | Set the scripting language name for the condition string. More...
|
| |
|
size_t | get_cnd_elang_idx () const |
| |
|
void | set_cond (const char *cnd) |
| | Internal function.
|
| |
|
bool | eval_cond (ea_t ea, bool *fire, const char *bpt_type) |
| | Internal function.
|
| |