Home
last modified time | relevance | path

Searched refs:TargetSP (Results 1 – 25 of 129) sorted by relevance

123456

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DTargetList.h94 lldb::TargetSP &target_sp);
123 bool DeleteTarget(lldb::TargetSP &target_sp);
127 lldb::TargetSP GetTargetAtIndex(uint32_t index) const;
129 uint32_t GetIndexOfTarget(lldb::TargetSP target_sp) const;
154 lldb::TargetSP FindTargetWithExecutableAndArchitecture(
170 lldb::TargetSP FindTargetWithProcessID(lldb::pid_t pid) const;
174 lldb::TargetSP GetTargetSP(Target *target) const;
197 lldb::TargetSP GetSelectedTarget();
200 typedef std::vector<lldb::TargetSP> collection;
205 lldb::TargetSP m_dummy_target_sp;
[all …]
H A DExecutionContext.h177 void SetTargetSP(const lldb::TargetSP &target_sp);
245 lldb::TargetSP GetTargetSP() const;
360 ExecutionContext(const lldb::TargetSP &target_sp, bool get_process);
536 const lldb::TargetSP &GetTargetSP() const { return m_target_sp; } in GetTargetSP()
562 void SetTargetSP(const lldb::TargetSP &target_sp);
609 void SetContext(const lldb::TargetSP &target_sp, bool get_process);
683 lldb::TargetSP m_target_sp; ///< The target that owns the process/thread/frame
H A DTarget.h459 TargetEventData(const lldb::TargetSP &target_sp);
461 TargetEventData(const lldb::TargetSP &target_sp,
476 static lldb::TargetSP GetTargetFromEvent(const Event *event_ptr);
480 const lldb::TargetSP &GetTarget() const { return m_target_sp; } in GetTarget()
485 lldb::TargetSP m_target_sp;
1021 lldb::TargetSP CalculateTarget() override;
1135 lldb::TargetSP &GetTarget() { return m_target_sp; } in GetTarget()
1158 lldb::TargetSP m_target_sp;
1167 StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBTarget.cpp152 TargetSP target_sp(GetSP()); in GetProcess()
168 TargetSP target_sp(GetSP()); in GetPlatform()
180 TargetSP target_sp(GetSP()); in GetDebugger()
188 TargetSP target_sp(GetSP()); in GetStatistics()
206 TargetSP target_sp(GetSP()); in SetCollectingStats()
213 TargetSP target_sp(GetSP()); in GetCollectingStats()
227 TargetSP target_sp(GetSP()); in LoadCore()
261 TargetSP target_sp(GetSP()); in Install()
279 TargetSP target_sp(GetSP()); in Launch()
365 TargetSP target_sp(GetSP()); in Launch()
[all …]
H A DSBDebugger.cpp359 TargetSP target_sp(m_opaque_sp->GetSelectedTarget()); in HandleCommand()
412 TargetSP target_sp(process.GetTarget().GetSP()); in HandleProcessEvent()
560 TargetSP target_sp; in CreateTarget()
593 TargetSP target_sp; in CreateTargetWithFileAndTargetTriple()
618 TargetSP target_sp; in CreateTargetWithFileAndArch()
645 TargetSP target_sp; in CreateTarget()
685 TargetSP target_sp(target.GetSP()); in DeleteTarget()
716 lldb::TargetSP target_sp = target.GetSP(); in GetIndexOfTarget()
742 TargetSP target_sp( in FindTargetWithFileAndArch()
772 TargetSP target_sp; in GetSelectedTarget()
[all …]
H A DSBValue.cpp170 TargetSP GetTargetSP() { in GetTargetSP()
174 return TargetSP(); in GetTargetSP()
803 TargetSP target_sp; in GetChildAtIndex()
861 TargetSP target_sp; in GetChildMemberWithName()
1132 TargetSP target_sp; in GetTarget()
1227 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1242 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1255 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1349 TargetSP target_sp(value_sp->GetTargetSP()); in GetLoadAddress()
1381 TargetSP target_sp(value_sp->GetTargetSP()); in GetAddress()
[all …]
H A DSBSourceManager.cpp29 SourceManagerImpl(const lldb::TargetSP &target_sp) in SourceManagerImpl()
48 lldb::TargetSP target_sp(m_target_wp.lock()); in DisplaySourceLinesWithLineNumbers()
H A DSBInstruction.cpp98 TargetSP target_sp(target.GetSP()); in GetMnemonic()
115 TargetSP target_sp(target.GetSP()); in GetOperands()
132 TargetSP target_sp(target.GetSP()); in GetComment()
H A DSBBreakpoint.cpp703 SBBreakpointListImpl(lldb::TargetSP target_sp) : m_target_wp() { in SBBreakpointListImpl()
715 TargetSP target_sp = m_target_wp.lock(); in GetBreakpointAtIndex()
723 TargetSP target_sp = m_target_wp.lock(); in FindBreakpointByID()
735 TargetSP target_sp = m_target_wp.lock(); in Append()
745 TargetSP target_sp = m_target_wp.lock(); in AppendIfUnique()
760 TargetSP target_sp = m_target_wp.lock(); in AppendByID()
777 TargetSP GetTarget() { return m_target_wp.lock(); } in GetTarget()
H A DSBBreakpointName.cpp36 SBBreakpointNameImpl(TargetSP target_sp, const char *name) { in SBBreakpointNameImpl()
54 TargetSP GetTarget() const { in GetTarget()
82 TargetSP target_sp = sb_target.GetSP(); in SBBreakpointNameImpl()
100 TargetSP target_sp = GetTarget(); in GetBreakpointName()
204 TargetSP target_sp = m_impl_up->GetTarget(); in UpdateName()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTargetList.cpp61 TargetSP &target_sp) { in CreateTarget()
448 bool TargetList::DeleteTarget(TargetSP &target_sp) { in DeleteTarget()
464 TargetSP target_sp; in FindTargetWithExecutableAndArchitecture()
488 TargetSP target_sp; in FindTargetWithProcessID()
501 TargetSP target_sp; in FindTargetWithProcess()
515 TargetSP TargetList::GetTargetSP(Target *target) const { in GetTargetSP()
516 TargetSP target_sp; in GetTargetSP()
534 TargetSP target_sp(FindTargetWithProcessID(pid)); in SendAsyncInterrupt()
569 TargetSP target_sp(FindTargetWithProcessID(pid)); in SignalIfRunning()
589 TargetSP target_sp; in GetTargetAtIndex()
[all …]
H A DExecutionContext.cpp27 ExecutionContext::ExecutionContext(const lldb::TargetSP &target_sp, in ExecutionContext()
55 lldb::TargetSP target_sp(target_wp.lock()); in ExecutionContext()
255 void ExecutionContext::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
299 void ExecutionContext::SetContext(const lldb::TargetSP &target_sp, in SetContext()
473 void ExecutionContextRef::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
514 lldb::TargetSP target_sp(target->shared_from_this()); in SetTargetPtr()
576 lldb::TargetSP ExecutionContextRef::GetTargetSP() const { in GetTargetSP()
577 lldb::TargetSP target_sp(m_target_wp.lock()); in GetTargetSP()
H A DThreadPlanStepUntil.cpp40 TargetSP target_sp(m_thread.CalculateTarget()); in ThreadPlanStepUntil()
86 TargetSP target_sp(m_thread.CalculateTarget()); in Clear()
286 TargetSP target_sp(m_thread.CalculateTarget()); in DoWillResume()
310 TargetSP target_sp(m_thread.CalculateTarget()); in WillStop()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DSearchFilter.h120 SearchFilter(const lldb::TargetSP &target_sp);
124 SearchFilter(const lldb::TargetSP &target_sp, unsigned char filterType);
323 void SetTarget(lldb::TargetSP &target_sp) { m_target_sp = target_sp; } in SetTarget()
325 lldb::TargetSP
340 SearchFilterForUnconstrainedSearches(const lldb::TargetSP &target_sp) in SearchFilterForUnconstrainedSearches()
377 SearchFilterByModule(const lldb::TargetSP &targetSP, const FileSpec &module);
429 SearchFilterByModuleList(const lldb::TargetSP &targetSP,
432 SearchFilterByModuleList(const lldb::TargetSP &targetSP,
488 SearchFilterByModuleListAndCU(const lldb::TargetSP &targetSP,
H A DDebugger.h92 static lldb::TargetSP FindTargetWithProcessID(lldb::pid_t pid);
94 static lldb::TargetSP FindTargetWithProcess(Process *process);
160 lldb::TargetSP GetSelectedTarget() { in GetSelectedTarget()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h32 static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
44 ProcessMinidump(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
49 bool CanDebug(lldb::TargetSP target_sp,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DSymbolContext.h80 explicit SymbolContext(const lldb::TargetSP &target_sp,
379 lldb::TargetSP target_sp; ///< The Target for a given query
403 SymbolContextSpecifier(const lldb::TargetSP &target_sp);
420 lldb::TargetSP m_target_sp;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.h38 CreateInstance(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
52 ProcessElfCore(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
60 bool CanDebug(lldb::TargetSP target_sp,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessFreeBSD.h31 CreateInstance(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
45 ProcessFreeBSD(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
65 bool CanDebug(lldb::TargetSP target_sp,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.h187 ResultDelegate(lldb::TargetSP target) : m_target_sp(target) {} in ResultDelegate()
197 lldb::TargetSP m_target_sp;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DIRMemoryMap.h39 IRMemoryMap(lldb::TargetSP target_sp);
83 lldb::TargetSP GetTarget() { return m_target_wp.lock(); } in GetTarget()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.h360 lldb::TargetSP target, Stream &messages, const char *name,
364 lldb::TargetSP target, Stream &messages, const char *reduce_name,
368 bool PlaceBreakpointOnScriptGroup(lldb::TargetSP target, Stream &strm,
371 void SetBreakAllKernels(bool do_break, lldb::TargetSP target);
418 void InitSearchFilter(lldb::TargetSP target) { in InitSearchFilter()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DIRMemoryMap.cpp23 IRMemoryMap::IRMemoryMap(lldb::TargetSP target_sp) : m_target_wp(target_sp) { in IRMemoryMap()
59 lldb::TargetSP target_sp = m_target_wp.lock(); in FindSpace()
234 lldb::TargetSP target_sp = m_target_wp.lock(); in GetByteOrder()
248 lldb::TargetSP target_sp = m_target_wp.lock(); in GetAddressByteSize()
262 lldb::TargetSP target_sp = m_target_wp.lock(); in GetBestExecutionContextScope()
636 lldb::TargetSP target_sp = m_target_wp.lock(); in ReadMemory()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBTarget.h50 SBTarget(const lldb::TargetSP &target_sp);
913 lldb::TargetSP GetSP() const;
915 void SetSP(const lldb::TargetSP &target_sp);
918 lldb::TargetSP m_opaque_sp;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp203 TargetSP target_sp = in ParserGDBFormatLetter()
204 execution_context ? execution_context->GetTargetSP() : TargetSP(); in ParserGDBFormatLetter()

123456