Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h661 lldb::BreakpointSP CreateBreakpoint(const FileSpecList *containingModules,
680 lldb::BreakpointSP CreateBreakpoint(lldb::addr_t load_addr, bool internal,
690 lldb::BreakpointSP CreateBreakpoint(const Address &addr, bool internal,
708 lldb::BreakpointSP CreateBreakpoint(
732 lldb::BreakpointSP CreateBreakpoint(
740 CreateBreakpoint(const FileSpecList *containingModules,
749 lldb::BreakpointSP CreateBreakpoint(lldb::SearchFilterSP &filter_sp,
/freebsd-14.2/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.cpp360 BreakpointSP bp_sp = CreateBreakpoint( in CreateBreakpointAtUserEntry()
391 return CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, true); in CreateSourceRegexBreakpoint()
394 BreakpointSP Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint() function in Target
452 BreakpointSP Target::CreateBreakpoint(lldb::addr_t addr, bool internal, in CreateBreakpoint() function in Target
468 BreakpointSP bp_sp(CreateBreakpoint(so_addr, internal, hardware)); in CreateBreakpoint()
472 BreakpointSP Target::CreateBreakpoint(const Address &addr, bool internal, in CreateBreakpoint() function in Target
493 BreakpointSP Target::CreateBreakpoint( in CreateBreakpoint() function in Target
517 Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint() function in Target
543 Target::CreateBreakpoint(const FileSpecList *containingModules, in CreateBreakpoint() function in Target
689 return CreateBreakpoint(filter_sp, resolver_sp, internal, false, true); in CreateScriptedBreakpoint()
[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 DThreadPlanStepRange.cpp353 GetTarget().CreateBreakpoint(run_to_address, is_internal, false); in SetNextBranchBreakpoint()
H A DThreadPlanStepOut.cpp142 GetTarget().CreateBreakpoint(m_return_addr, true, false).get(); in ThreadPlanStepOut()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
H A DScriptedProcessInterface.h47 virtual bool CreateBreakpoint(lldb::addr_t addr, Status &error) { in CreateBreakpoint() function
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedProcessPythonInterface.h51 bool CreateBreakpoint(lldb::addr_t addr, Status &error) override;
H A DScriptedProcessPythonInterface.cpp99 bool ScriptedProcessPythonInterface::CreateBreakpoint(lldb::addr_t addr, in CreateBreakpoint() function in ScriptedProcessPythonInterface
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp725 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByLocation()
753 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByLocation()
778 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByName()
782 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByName()
829 sb_bp = target_sp->CreateBreakpoint(module_list.get(), comp_unit_list.get(), in BreakpointCreateByName()
875 sb_bp = target_sp->CreateBreakpoint( in BreakpointCreateByNames()
937 sb_bp = target_sp->CreateBreakpoint(address, false, hardware); in BreakpointCreateByAddress()
955 sb_bp = target_sp->CreateBreakpoint(sb_address.ref(), false, hardware); in BreakpointCreateBySBAddress()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp248 .CreateBreakpoint(symbol_address, internal, hardware) in SetupBreakpoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp215 .CreateBreakpoint(symbol_address, /*internal=*/true, in Activate()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.cpp260 m_msgSend_bkpts.push_back(GetTarget().CreateBreakpoint(addr, in AppleThreadPlanStepThroughDirectDispatch()
H A DAppleObjCTrampolineHandler.cpp388 target.CreateBreakpoint(changed_addr, true, false); in InitializeVTableSymbols()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp275 .CreateBreakpoint(symbol_address, /*internal=*/true, in Activate()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.cpp210 m_process->GetTarget().CreateBreakpoint(jit_addr, true, false).get(); in SetJITBreakpoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp277 GetInterface().CreateBreakpoint(bp_site->GetLoadAddress(), error); in EnableBreakpointSite()
/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpoint.cpp116 BreakpointSP bp_sp = target_sp->CreateBreakpoint( in SetupVariableWatchpointDisabler()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp283 target.CreateBreakpoint(break_addr, true, false).get(); in SetRendezvousBreakpoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp592 bp_sp = target.CreateBreakpoint( in DoExecute()
611 bp_sp = target.CreateBreakpoint(m_options.m_load_addr, internal, in DoExecute()
627 bp_sp = target.CreateBreakpoint( in DoExecute()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp568 return target.CreateBreakpoint(filter_sp, exception_resolver_sp, is_internal, in CreateExceptionBreakpoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp921 .CreateBreakpoint(symbol_address, internal, hardware) in Activate()

12