/external/lldb/source/Target/ |
ThreadPlanShouldStopHere.cpp | 26 ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(ThreadPlan *owner, ThreadPlanShouldStopHereCallback callback, void *baton) : 28 m_baton (baton), 42 ThreadPlanShouldStopHere::SetShouldStopHereCallback (ThreadPlanShouldStopHereCallback callback, void *baton) 45 m_baton = baton;
|
/external/lldb/include/lldb/Target/ |
ThreadPlanShouldStopHere.h | 49 void *baton = NULL); 54 SetShouldStopHereCallback (ThreadPlanShouldStopHereCallback callback, void *baton);
|
/external/lldb/source/Core/ |
InputReaderEZ.cpp | 16 InputReaderEZ::Callback_Impl(void *baton, 26 baton); 63 InputReaderEZ::Initialize(void* baton, 70 baton,
|
StreamCallback.cpp | 22 StreamCallback::StreamCallback (lldb::LogOutputCallback callback, void *baton) : 25 m_baton (baton),
|
EmulateInstruction.cpp | 234 EmulateInstruction::SetBaton (void *baton) 236 m_baton = baton; 286 void *baton, 292 if (!baton || dst == NULL || dst_len == 0) 295 StackFrame *frame = (StackFrame *) baton; 308 void *baton, 314 if (!baton || src == NULL || src_len == 0) 317 StackFrame *frame = (StackFrame *) baton; 331 void *baton, 335 if (!baton) [all...] |
/external/lldb/source/Plugins/Instruction/ARM/ |
EmulationStateARM.h | 55 void *baton, 63 void *baton, 71 void *baton, 77 void *baton,
|
EmulationStateARM.cpp | 181 void *baton, 187 if (!baton) 191 EmulationStateARM *pseudo_state = (EmulationStateARM *) baton; 225 void *baton, 231 if (!baton) 235 EmulationStateARM *pseudo_state = (EmulationStateARM *) baton; 246 void *baton, 250 if (!baton || !reg_info) 254 EmulationStateARM *pseudo_state = (EmulationStateARM *) baton; 267 void *baton, [all...] |
/external/lldb/include/lldb/Interpreter/ |
OptionValueString.h | 29 void* baton); 47 void* baton = NULL) : 53 m_validator_baton(baton) 89 void* baton = NULL) : 95 m_validator_baton(baton) 107 void* baton = NULL) : 113 m_validator_baton(baton)
|
ScriptInterpreterPython.h | 133 GenerateBreakpointOptionsCommandCallback (void *baton, 140 GenerateWatchpointOptionsCommandCallback (void *baton, 147 BreakpointCallbackFunction (void *baton, 153 WatchpointCallbackFunction (void *baton, 236 RunEmbeddedPythonInterpreter (lldb::thread_arg_t baton); 364 InputReaderCallback (void *baton, 371 RunPythonInputReader (lldb::thread_arg_t baton); 380 InputReaderCallback (void *baton,
|
/external/lldb/include/lldb/API/ |
SBInputReader.h | 21 typedef size_t (*Callback) (void *baton, 84 PrivateCallback (void *baton,
|
SBBreakpoint.h | 21 typedef bool (*BreakpointHitCallback) (void *baton, 119 SetCallback (BreakpointHitCallback callback, void *baton); 165 PrivateBreakpointHitCallback (void *baton,
|
SBCommunication.h | 30 typedef void (*ReadThreadBytesReceived) (void *baton, const void *src, size_t src_len);
|
/external/lldb/include/lldb/Core/ |
InputReaderEZ.h | 22 static size_t Callback_Impl(void *baton, 38 Initialize(void* baton,
|
StreamCallback.h | 25 StreamCallback (lldb::LogOutputCallback callback, void *baton);
|
InputReader.h | 28 typedef size_t (*Callback) (void *baton, 39 void* baton; member in struct:lldb_private::InputReader::HandlerData 48 baton(t) 134 void *baton, 140 virtual Error Initialize(void* baton,
|
EmulateInstruction.h | 30 /// callbacks and a baton are provided. The four callbacks are read 364 void *baton, 371 void *baton, 378 void *baton, 383 void *baton, 533 void *baton, 541 void *baton, 549 void *baton, 556 void *baton, 563 void *baton, [all...] |
Debugger.h | 60 CreateInstance (lldb::LogOutputCallback log_callback = NULL, void *baton = NULL); 258 SetLoggingCallback (lldb::LogOutputCallback log_callback, void *baton); 343 DispatchInputCallback (void *baton, const void *bytes, size_t bytes_len); 388 Debugger (lldb::LogOutputCallback m_log_callback, void *baton);
|
/external/lldb/include/lldb/ |
lldb-types.h | 51 typedef void (*LogOutputCallback) (const char *, void *baton); 52 typedef bool (*CommandOverrideCallback)(void *baton, const char **argv);
|
lldb-private-interfaces.h | 34 typedef bool (*BreakpointHitCallback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 35 typedef bool (*WatchpointHitCallback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id); 36 typedef lldb::ThreadPlanSP (*ThreadPlanShouldStopHereCallback) (ThreadPlan *current_plan, Flags &flags, void *baton); 39 typedef bool (*CommandOverrideCallback)(void *baton, const char **argv);
|
/external/lldb/scripts/Python/interface/ |
SBInputReader.i | 16 typedef size_t (*Callback) (void *baton,
|
SBCommunication.i | 24 typedef void (*ReadThreadBytesReceived) (void *baton, const void *src, size_t src_len);
|
/external/lldb/include/lldb/Symbol/ |
ClangExternalASTSourceCallbacks.h | 34 typedef void (*CompleteTagDeclCallback)(void *baton, clang::TagDecl *); 35 typedef void (*CompleteObjCInterfaceDeclCallback)(void *baton, clang::ObjCInterfaceDecl *); 36 typedef void (*FindExternalVisibleDeclsByNameCallback)(void *baton, const clang::DeclContext *DC, clang::DeclarationName Name, llvm::SmallVectorImpl <clang::NamedDecl *> *results); 37 typedef bool (*LayoutRecordTypeCallback)(void *baton,
|
/external/lldb/include/lldb/Breakpoint/ |
WatchpointOptions.h | 18 #include "lldb/Core/Baton.h" 49 /// @param[in] baton 56 void *baton, 95 /// A baton which will get passed back to the callback when it is invoked. 137 /// Fetch the baton from the callback. 140 /// The baton. 142 Baton *GetBaton (); 145 /// Fetch a const version of the baton from the callback. 148 /// The baton. 150 const Baton *GetBaton () const [all...] |
/external/lldb/tools/driver/ |
Driver.h | 185 EditLineInputReaderCallback (void *baton, 192 ReadThreadBytesReceived (void *baton, const void *src, size_t src_len); 195 MasterThreadBytesReceived (void *baton, const void *src, size_t src_len);
|
/external/lldb/source/Commands/ |
CommandObjectExpression.h | 77 MultiLineExpressionCallback (void *baton,
|