Home
last modified time | relevance | path

Searched refs:address_list (Results 1 – 7 of 7) sorted by relevance

/openbsd/gnu/llvm/lldb/examples/python/
H A Ddiagnose_unwind.py77 address_list = [cur_thread.GetFrameAtIndex(0).GetPC()]
85 return [module_list, address_list]
94 address_list.append(cur_pc)
125 return [module_list, address_list]
216 (module_list, address_list) = simple_backtrace(debugger)
219 if address_list and address_list is not None:
221 addresses_seen.update(set(address_list))
/openbsd/gnu/llvm/lldb/source/Target/
H A DThreadPlanStepUntil.cpp27 lldb::addr_t *address_list, in ThreadPlanStepUntil() argument
68 target_sp->CreateBreakpoint(address_list[i], true, false).get(); in ThreadPlanStepUntil()
71 m_until_points[address_list[i]] = until_bp->GetID(); in ThreadPlanStepUntil()
74 m_until_points[address_list[i]] = LLDB_INVALID_BREAK_ID; in ThreadPlanStepUntil()
H A DThread.cpp1383 bool abort_other_plans, lldb::addr_t *address_list, size_t num_addresses, in QueueThreadPlanForStepUntil() argument
1386 *this, address_list, num_addresses, stop_other_threads, frame_idx)); in QueueThreadPlanForStepUntil()
/openbsd/gnu/llvm/lldb/include/lldb/Target/
H A DThreadPlanStepUntil.h33 ThreadPlanStepUntil(Thread &thread, lldb::addr_t *address_list,
56 bool abort_other_plans, lldb::addr_t *address_list, size_t num_addresses,
H A DThread.h926 bool abort_other_plans, lldb::addr_t *address_list, size_t num_addresses,
/openbsd/gnu/llvm/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py335 self.address_list = []
362 self.address_list.append(addr)
368 self.address_list.sort()
375 index = bisect.bisect_left(self.address_list, addr)
379 key = self.address_list[index - 1]
/openbsd/gnu/llvm/lldb/source/Commands/
H A DCommandObjectThread.cpp995 std::vector<addr_t> address_list; in DoExecute() local
1043 address_list.push_back(address); in DoExecute()
1053 address_list.push_back(address); in DoExecute()
1058 if (address_list.empty()) { in DoExecute()
1070 abort_other_plans, &address_list.front(), address_list.size(), in DoExecute()