HomeSort by relevance Sort by last modified time
    Searched defs:baton (Results 1 - 5 of 5) sorted by null

  /external/lldb/include/lldb/Core/
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,
  /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/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/Target/
Process.h 784 void *baton,
788 m_monitor_callback_baton = baton;
1417 void *baton; member in struct:lldb_private::Process::__anon8952
1418 void (*initialize)(void *baton, Process *process)
3623 void *baton; member in struct:lldb_private::Process::PreResumeCallbackAndBaton
    [all...]

Completed in 1213 milliseconds