Home
last modified time | relevance | path

Searched refs:CreateBreakpoint (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h672 lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules,
691 lldb::BreakpointSP CreateBreakpoint(lldb::addr_t load_addr, bool internal,
701 lldb::BreakpointSP CreateBreakpoint(const Address &addr, bool internal,
719 lldb::BreakpointSP CreateBreakpoint(
743 lldb::BreakpointSP CreateBreakpoint(
751 CreateBreakpoint(const FileSpecList *containingModules,
760 lldb::BreakpointSP CreateBreakpoint(lldb::SearchFilterSP &filter_sp,
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepUntil.cpp52 target_sp->CreateBreakpoint(m_return_addr, true, false).get(); in ThreadPlanStepUntil()
68 target_sp->CreateBreakpoint(address_list[i], true, false).get(); in ThreadPlanStepUntil()
H A DTarget.cpp361 BreakpointSP bp_sp = CreateBreakpoint( in CreateBreakpointAtUserEntry()
392 return CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, true); in CreateSourceRegexBreakpoint()
395 BreakpointSP Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint() function in Target
450 return CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, true); in CreateBreakpoint()
453 BreakpointSP Target::CreateBreakpoint(lldb::addr_t addr, bool internal, in CreateBreakpoint() function in Target
469 BreakpointSP bp_sp(CreateBreakpoint(so_addr, internal, hardware)); in CreateBreakpoint()
473 BreakpointSP Target::CreateBreakpoint(const Address &addr, bool internal, in CreateBreakpoint() function in Target
479 return CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, false); in CreateBreakpoint()
490 return CreateBreakpoint(filter_sp, resolver_sp, internal, request_hardware, in CreateAddressInModuleBreakpoint()
494 BreakpointSP Target::CreateBreakpoint( in CreateBreakpoint() function in Target
[all …]
H A DThreadPlanStepThrough.cpp54 .CreateBreakpoint(m_backstop_addr, true, false) in ThreadPlanStepThrough()
H A DThreadPlanRunToAddress.cpp67 GetTarget().CreateBreakpoint(m_addresses[i], true, false).get(); in SetInitialBreakpoints()
H A DLanguageRuntime.cpp248 target.CreateBreakpoint(filter_sp, resolver_sp, is_internal, hardware, in CreateExceptionBreakpoint()
H A DThreadPlanStepOut.cpp142 GetTarget().CreateBreakpoint(m_return_addr, true, false).get(); in ThreadPlanStepOut()
H A DThreadPlanStepRange.cpp354 GetTarget().CreateBreakpoint(run_to_address, is_internal, false); in SetNextBranchBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedProcessPythonInterface.h
H A DScriptedProcessPythonInterface.cpp
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptedProcessInterface.h
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp241 m_process->GetTarget().CreateBreakpoint(entry, true, false).get(); in ProbeEntry()
328 dyld_break = target.CreateBreakpoint(break_addr, true, false); in SetRendezvousBreakpoint()
348 dyld_break = target.CreateBreakpoint( in SetRendezvousBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp732 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByLocation()
760 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByLocation()
785 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByName()
789 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByName()
836 sb_bp = target_sp->CreateBreakpoint(module_list.get(), comp_unit_list.get(), in BreakpointCreateByName()
882 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByNames()
944 sb_bp = target_sp->CreateBreakpoint(address, false, hardware); in BreakpointCreateByAddress()
962 sb_bp = target_sp->CreateBreakpoint(sb_address.ref(), false, hardware); in BreakpointCreateBySBAddress()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedProcessPythonInterface.cpp101 bool ScriptedProcessPythonInterface::CreateBreakpoint(lldb::addr_t addr, in CreateBreakpoint() function in ScriptedProcessPythonInterface
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp249 .CreateBreakpoint(symbol_address, internal, hardware) in SetupBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp215 .CreateBreakpoint(symbol_address, /*internal=*/true, in Activate()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp260 m_msgSend_bkpts.push_back(GetTarget().CreateBreakpoint(addr, in AppleThreadPlanStepThroughDirectDispatch()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp275 .CreateBreakpoint(symbol_address, /*internal=*/true, in Activate()
/freebsd/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp210 m_process->GetTarget().CreateBreakpoint(jit_addr, true, false).get(); in SetJITBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp277 GetInterface().CreateBreakpoint(bp_site->GetLoadAddress(), error); in DoGetMemoryRegionInfo()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp120 BreakpointSP bp_sp = target_sp->CreateBreakpoint( in SetupVariableWatchpointDisabler()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp283 target.CreateBreakpoint(break_addr, true, false).get(); in SetRendezvousBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp602 bp_sp = target.CreateBreakpoint( in DoExecute()
621 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal, in DoExecute()
637 bp_sp = target.CreateBreakpoint( in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp556 return target.CreateBreakpoint(filter_sp, exception_resolver_sp, is_internal, in CreateExceptionBreakpoint()

12