HomeSort by relevance Sort by last modified time
    Searched refs:baton (Results 26 - 50 of 109) sorted by null

12 3 4 5

  /external/lldb/source/Plugins/UnwindAssembly/InstEmulation/
UnwindAssemblyInstEmulation.h 72 void *baton,
80 void *baton,
88 void *baton,
94 void *baton,
UnwindAssemblyInstEmulation.cpp 390 void *baton,
414 void *baton,
420 if (baton && dst && dst_len)
421 return ((UnwindAssemblyInstEmulation *)baton)->WriteMemory (instruction, context, addr, dst, dst_len);
528 void *baton,
533 if (baton && reg_info)
534 return ((UnwindAssemblyInstEmulation *)baton)->ReadRegister (instruction, reg_info, reg_value);
559 void *baton,
564 if (baton && reg_info)
565 return ((UnwindAssemblyInstEmulation *)baton)->WriteRegister (instruction, context, reg_info, reg_value)
    [all...]
  /external/lldb/test/api/multithreaded/
test_breakpoint_callback.cpp 21 bool BPCallback (void *baton,
  /external/lldb/include/lldb/Breakpoint/
BreakpointOptions.h 18 #include "lldb/Core/Baton.h"
52 /// @param[in] baton
66 void *baton,
108 /// A baton which will get passed back to the callback when it is invoked.
153 /// Fetch the baton from the callback.
156 /// The baton.
158 Baton *GetBaton ();
161 /// Fetch a const version of the baton from the callback.
164 /// The baton.
166 const Baton *GetBaton () const
    [all...]
BreakpointSiteList.h 164 typedef void (*BreakpointSiteSPMapFunc) (lldb::BreakpointSiteSP &bp, void *baton);
BreakpointLocation.h 145 /// A shared pointer to a Baton that provides the void * needed
148 /// @see lldb_private::Baton
157 void *baton,
  /external/lldb/include/lldb/Symbol/
Variable.h 147 typedef size_t (*GetVariableCallback) (void *baton,
156 void *baton,
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.h 106 RendezvousBreakpointHit(void *baton,
141 EntryBreakpointHit(void *baton,
  /external/lldb/examples/darwin/heap_find/heap/
heap_find.cpp 141 void *baton,
161 typedef void range_callback_t (task_t task, void *baton, unsigned type, uint64_t ptr_addr, uint64_t ptr_size);
168 void *baton; member in struct:range_callback_info_t
629 ((range_contains_data_callback_info_t *)info->baton)->unique = true;
649 info->baton,
665 dump_malloc_block_callback (task_t task, void *baton, unsigned type, uint64_t ptr_addr, uint64_t ptr_size)
667 printf ("task = 0x%4.4x: baton = %p, type = %u, ptr_addr = 0x%llx + 0x%llu\n", task, baton, type, ptr_addr, ptr_size);
671 ranges_callback (task_t task, void *baton, unsigned type, vm_range_t *ptrs, unsigned count)
673 range_callback_info_t *info = (range_callback_info_t *)baton;
    [all...]
  /external/lldb/include/lldb/API/
SBDebugger.h 36 Create(bool source_init_files, lldb::LogOutputCallback log_callback, void *baton);
206 SetLoggingCallback (lldb::LogOutputCallback log_callback, void *baton);
210 DispatchInput (void* baton,
SBCommandInterpreter.h 121 void *baton);
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwinKernel.h 111 GetKextDirectoriesInSDK (void *baton,
116 GetKextsInDirectory (void *baton,
  /external/lldb/include/lldb/Target/
ThreadPlanStepInRange.h 58 DefaultShouldStopHereCallback (ThreadPlan *current_plan, Flags &flags, void *baton);
PathMappingList.h 29 void *baton);
  /external/lldb/scripts/Python/interface/
SBBreakpoint.i 84 typedef bool (*BreakpointHitCallback) (void *baton,
181 SetCallback (BreakpointHitCallback callback, void *baton);
SBDebugger.i 126 Create(bool source_init_files, lldb::LogOutputCallback log_callback, void *baton);
278 SetLoggingCallback (lldb::LogOutputCallback log_callback, void *baton);
  /external/lldb/tools/debugserver/source/MacOSX/
MachProcess.h 84 void SetNameToAddressCallback (DNBCallbackNameToAddress callback, void *baton)
87 m_name_to_addr_baton = baton;
89 void SetSharedLibraryInfoCallback (DNBCallbackCopyExecutableImageInfos callback, void *baton)
92 m_image_infos_baton = baton;
  /external/lldb/tools/debugserver/source/
RNBSocket.h 30 typedef void (*PortBoundCallback) (const void *baton, in_port_t port);
  /external/lldb/source/Commands/
CommandObjectBreakpointCommand.cpp 222 bp_options, // baton
267 GenerateBreakpointCommandCallback (void *baton,
303 if (bytes && bytes_len && baton)
305 BreakpointOptions *bp_options = (BreakpointOptions *) baton;
308 Baton *bp_options_baton = bp_options->GetBaton();
324 BreakpointOptions *bp_options = (BreakpointOptions *) baton;
327 Baton *bp_options_baton = bp_options->GetBaton ();
354 BreakpointOptionsCallbackFunction (void *baton,
360 if (baton == NULL)
364 BreakpointOptions::CommandData *data = (BreakpointOptions::CommandData *) baton;
858 const Baton *baton = bp_options->GetBaton(); local
    [all...]
CommandObjectWatchpointCommand.cpp 286 Baton *wp_options_baton = wp_options->GetBaton();
305 Baton *wp_options_baton = wp_options->GetBaton ();
332 WatchpointOptionsCallbackFunction (void *baton,
337 if (baton == NULL)
341 WatchpointOptions::CommandData *data = (WatchpointOptions::CommandData *) baton;
794 // Get the callback baton associated with the current watchpoint.
795 const Baton *baton = wp_options->GetBaton(); local
796 if (baton)
800 baton->GetDescription(&result.GetOutputStream(), eDescriptionLevelFull)
    [all...]
  /external/lldb/source/API/
SBBreakpoint.cpp 42 class SBBreakpointCallbackBaton : public Baton
46 SBBreakpointCallbackBaton (SBBreakpoint::BreakpointHitCallback callback, void *baton) :
47 Baton (new CallbackData)
51 data->callback_baton = baton;
529 void *baton,
537 if (baton && bp_sp)
539 CallbackData *data = (CallbackData *)baton;
566 SBBreakpoint::SetCallback (BreakpointHitCallback callback, void *baton)
571 log->Printf ("SBBreakpoint(%p)::SetCallback (callback=%p, baton=%p)", m_opaque_sp.get(), callback, baton);
    [all...]
SBInputReader.cpp 60 void *baton,
67 SBInputReader *sb_reader = (SBInputReader *)baton;
  /external/lldb/source/Core/
InputReader.cpp 44 void *baton,
53 m_callback_baton = baton,
  /external/lldb/include/lldb/Core/
Communication.h 97 typedef void (*ReadThreadBytesReceived) (void *baton, const void *src, size_t src_len);
  /external/lldb/tools/driver/
IOChannel.h 82 LibeditOutputBytesReceived (void *baton, const void *src,size_t src_len);

Completed in 808 milliseconds

12 3 4 5