|
| | ResultRecord () |
| |
| void | clear () |
| | blank out everything More...
|
| |
|
| Kind | kind () const |
| |
| void | kind (Kind a_in) |
| |
| const map< string, IDebugger::Breakpoint > & | breakpoints () const |
| |
| map< string, IDebugger::Breakpoint > & | breakpoints () |
| |
| map< UString, UString > & | attrs () |
| |
| const map< UString, UString > & | attrs () const |
| |
| bool | has_call_stack () const |
| |
| void | has_call_stack (bool a_flag) |
| |
| const vector< IDebugger::Frame > & | call_stack () const |
| |
| vector< IDebugger::Frame > & | call_stack () |
| |
| void | call_stack (const vector< IDebugger::Frame > &a_in) |
| |
| bool | has_register_names () const |
| |
| void | has_register_names (bool a_flag) |
| |
| const std::map< IDebugger::register_id_t, UString > & | register_names () const |
| |
| void | register_names (const std::map< IDebugger::register_id_t, UString > &a_names) |
| |
| bool | has_changed_registers () const |
| |
| void | has_changed_registers (bool a_flag) |
| |
| const std::list< IDebugger::register_id_t > & | changed_registers () const |
| |
| void | changed_registers (const std::list< IDebugger::register_id_t > &a_regs) |
| |
| bool | has_register_values () const |
| |
| void | has_register_values (bool a_flag) |
| |
| const std::map< IDebugger::register_id_t, UString > & | register_values () const |
| |
| void | register_values (const std::map< IDebugger::register_id_t, UString > &a_regs) |
| |
| bool | has_memory_values () const |
| |
| void | has_memory_values (bool a_flag) |
| |
| const std::vector< uint8_t > & | memory_values () const |
| |
| size_t | memory_address () const |
| |
| void | memory_values (size_t a_address, const std::vector< uint8_t > &a_values) |
| |
| bool | has_asm_instruction_list () const |
| |
| void | has_asm_instruction_list (bool a) |
| |
| const std::list< common::Asm > & | asm_instruction_list () const |
| |
| void | asm_instruction_list (const std::list< common::Asm > &a_asms) |
| |
| const map< int, list< IDebugger::VariableSafePtr > > & | frames_parameters () const |
| |
| void | frames_parameters (const map< int, list< IDebugger::VariableSafePtr > > &a_in) |
| |
| bool | has_frames_parameters () const |
| |
| void | has_frames_parameters (bool a_yes) |
| |
| const list< IDebugger::VariableSafePtr > & | local_variables () const |
| |
| void | local_variables (const list< IDebugger::VariableSafePtr > &a_in) |
| |
| bool | has_local_variables () const |
| |
| void | has_local_variables (bool a_in) |
| |
| const IDebugger::VariableSafePtr & | variable_value () const |
| |
| void | variable_value (const IDebugger::VariableSafePtr &a_in) |
| |
| bool | has_variable_value () const |
| |
| void | has_variable_value (bool a_in) |
| |
| bool | has_thread_list () const |
| |
| void | has_thread_list (bool a_in) |
| |
| const std::list< int > & | thread_list () const |
| |
| void | thread_list (const std::list< int > &a_in) |
| |
| bool | thread_id_got_selected () const |
| |
| void | thread_id_got_selected (bool a_in) |
| |
| int | thread_id () const |
| |
| const IDebugger::Frame & | frame_in_thread () const |
| |
| void | thread_id_selected_info (int a_thread_id, const IDebugger::Frame &a_frame_in_thread) |
| |
| bool | has_file_list () const |
| |
| void | has_file_list (bool a_in) |
| |
| const std::vector< UString > & | file_list () const |
| |
| void | file_list (const std::vector< UString > &a_in) |
| |
| const IDebugger::Frame & | current_frame_in_core_stack_trace () |
| |
| void | current_frame_in_core_stack_trace (const IDebugger::Frame &a_in) |
| |
| bool | has_current_frame_in_core_stack_trace () |
| |
| void | has_current_frame_in_core_stack_trace (bool a_in) |
| |
| bool | has_variable () |
| |
| void | has_variable (bool a_in) |
| |
| IDebugger::VariableSafePtr | variable () const |
| |
| void | variable (const IDebugger::VariableSafePtr a_var) |
| |
| int | number_of_variables_deleted () const |
| |
| void | number_of_variables_deleted (int a_nb) |
| |
| bool | has_variable_children () const |
| |
| void | has_variable_children (bool a_in) |
| |
| const vector< IDebugger::VariableSafePtr > & | variable_children () const |
| |
| void | variable_children (const vector< IDebugger::VariableSafePtr > &a_vars) |
| |
| bool | has_var_changes () const |
| |
| void | has_var_changes (bool a_in) |
| |
| const list< VarChangePtr > & | var_changes () const |
| |
| void | var_changes (const list< VarChangePtr > &a_in) |
| |
| int | new_num_children () const |
| |
| void | new_num_children (int a) |
| |
| const UString & | path_expression () const |
| |
| void | path_expression (const UString &a_str) |
| |
| bool | has_path_expression () const |
| |
| void | has_path_expression (bool a) |
| |
| IDebugger::Variable::Format | variable_format () const |
| |
| void | variable_format (IDebugger::Variable::Format a_format) |
| |
| bool | has_variable_format () const |
| |
| void | has_variable_format (bool a_flag) |
| |
\debugger result record
this is a notification of gdb that about the last operation he was asked to perform. This basically can be either "running" --> the operation was successfully started, the target is running. "done" --> the synchronous operation was successful. In this case, gdb also returns the result of the operation. "error" the operation failed. In this case, gdb returns the corresponding error message.