Home
last modified time | relevance | path

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

123456

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTargetList.h46 typedef std::vector<lldb::TargetSP> collection;
47 typedef LockingAdaptedIterable<collection, lldb::TargetSP, vector_adapter,
91 lldb::TargetSP &target_sp);
100 lldb::PlatformSP &platform_sp, lldb::TargetSP &target_sp);
116 bool DeleteTarget(lldb::TargetSP &target_sp);
120 lldb::TargetSP GetTargetAtIndex(uint32_t index) const;
122 uint32_t GetIndexOfTarget(lldb::TargetSP target_sp) const;
145 lldb::TargetSP FindTargetWithExecutableAndArchitecture(
159 lldb::TargetSP FindTargetWithProcessID(lldb::pid_t pid) const;
161 lldb::TargetSP FindTargetWithProcess(lldb_private::Process *process) const;
[all …]
H A DExecutionContext.h152 void SetTargetSP(const lldb::TargetSP &target_sp);
212 lldb::TargetSP GetTargetSP() const;
304 ExecutionContext(const lldb::TargetSP &target_sp, bool get_process);
454 const lldb::TargetSP &GetTargetSP() const { return m_target_sp; } in GetTargetSP()
472 void SetTargetSP(const lldb::TargetSP &target_sp);
503 void SetContext(const lldb::TargetSP &target_sp, bool get_process);
561 lldb::TargetSP m_target_sp; ///< The target that owns the process/thread/frame
H A DProcessTrace.h30 ProcessTrace(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
35 bool CanDebug(lldb::TargetSP target_sp,
76 static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
H A DTarget.h521 TargetEventData(const lldb::TargetSP &target_sp);
523 TargetEventData(const lldb::TargetSP &target_sp,
538 static lldb::TargetSP GetTargetFromEvent(const Event *event_ptr);
542 const lldb::TargetSP &GetTarget() const { return m_target_sp; } in GetTarget()
547 lldb::TargetSP m_target_sp;
1146 lldb::TargetSP CalculateTarget() override;
1298 lldb::TargetSP &GetTarget() { return m_target_sp; } in GetTarget()
1336 lldb::TargetSP m_target_sp;
1342 StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid);
1363 StopHookCommandLine(lldb::TargetSP target_sp, lldb::user_id_t uid) in StopHookCommandLine()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp103 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget()
168 TargetSP target_sp(GetSP()); in GetProcess()
180 TargetSP target_sp(GetSP()); in GetPlatform()
194 TargetSP target_sp(GetSP()); in GetDebugger()
210 TargetSP target_sp(GetSP()); in GetStatistics()
225 TargetSP target_sp(GetSP()); in SetCollectingStats()
234 TargetSP target_sp(GetSP()); in GetCollectingStats()
251 TargetSP target_sp(GetSP()); in LoadCore()
274 TargetSP target_sp = GetSP(); in LaunchSimple()
298 TargetSP target_sp(GetSP()); in Install()
[all …]
H A DSBValue.cpp99 TargetSP target_sp = m_valobj_sp->GetTargetSP(); in IsValid()
169 TargetSP GetTargetSP() { in GetTargetSP()
173 return TargetSP(); in GetTargetSP()
653 TargetSP target_sp; in GetChildAtIndex()
702 TargetSP target_sp; in GetChildMemberWithName()
1027 TargetSP target_sp; in GetTarget()
1099 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1114 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1127 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1182 lldb::TargetSP target_sp = value_sp->GetTargetSP(); in EvaluateExpression()
[all …]
H A DSBInstruction.cpp118 TargetSP target_sp(target.GetSP()); in GetMnemonic()
137 TargetSP target_sp(target.GetSP()); in GetOperands()
156 TargetSP target_sp(target.GetSP()); in GetComment()
173 TargetSP target_sp(target.GetSP()); in GetControlFlowKind()
H A DSBSourceManager.cpp28 SourceManagerImpl(const lldb::TargetSP &target_sp) : m_target_wp(target_sp) {}
46 lldb::TargetSP target_sp(m_target_wp.lock()); in DisplaySourceLinesWithLineNumbers()
H A DSBBreakpointName.cpp37 SBBreakpointNameImpl(TargetSP target_sp, const char *name) { in SBBreakpointNameImpl()
55 TargetSP GetTarget() const { in GetTarget()
83 TargetSP target_sp = sb_target.GetSP(); in SBBreakpointNameImpl()
101 TargetSP target_sp = GetTarget(); in GetBreakpointName()
222 TargetSP target_sp = m_impl_up->GetTarget(); in UpdateName()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp50 TargetSP &target_sp) { in CreateTarget()
65 PlatformSP &platform_sp, TargetSP &target_sp) { in CreateTarget()
79 const OptionGroupPlatform *platform_options, TargetSP &target_sp) { in CreateTargetInternal()
251 lldb::TargetSP &target_sp) { in CreateTargetInternal()
371 bool TargetList::DeleteTarget(TargetSP &target_sp) { in DeleteTarget()
381 TargetSP TargetList::FindTargetWithExecutableAndArchitecture( in FindTargetWithExecutableAndArchitecture()
385 [&exe_file_spec, exe_arch_ptr](const TargetSP &item) { in FindTargetWithExecutableAndArchitecture()
398 return TargetSP(); in FindTargetWithExecutableAndArchitecture()
401 TargetSP TargetList::FindTargetWithProcessID(lldb::pid_t pid) const { in FindTargetWithProcessID()
404 [pid](const TargetSP &item) { in FindTargetWithProcessID()
[all …]
H A DProcessTrace.cpp33 ProcessSP ProcessTrace::CreateInstance(TargetSP target_sp, in CreateInstance()
42 bool ProcessTrace::CanDebug(TargetSP target_sp, bool plugin_specified_by_name) { in CanDebug()
46 ProcessTrace::ProcessTrace(TargetSP target_sp, ListenerSP listener_sp, in ProcessTrace()
H A DExecutionContext.cpp24 ExecutionContext::ExecutionContext(const lldb::TargetSP &target_sp, in ExecutionContext()
52 lldb::TargetSP target_sp(target_wp.lock()); in ExecutionContext()
245 void ExecutionContext::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
289 void ExecutionContext::SetContext(const lldb::TargetSP &target_sp, in SetContext()
458 void ExecutionContextRef::SetTargetSP(const lldb::TargetSP &target_sp) { in SetTargetSP()
499 lldb::TargetSP target_sp(target->shared_from_this()); in SetTargetPtr()
562 lldb::TargetSP ExecutionContextRef::GetTargetSP() const { in GetTargetSP()
563 lldb::TargetSP target_sp(m_target_wp.lock()); in GetTargetSP()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h89 SearchFilter(const lldb::TargetSP &target_sp);
91 SearchFilter(const lldb::TargetSP &target_sp, unsigned char filterType);
200 lldb::SearchFilterSP CreateCopy(lldb::TargetSP& target_sp);
203 CreateFromStructuredData(const lldb::TargetSP& target_sp,
276 void SetTarget(lldb::TargetSP &target_sp) { m_target_sp = target_sp; } in SetTarget()
278 lldb::TargetSP m_target_sp; // Every filter has to be associated with
291 SearchFilterForUnconstrainedSearches(const lldb::TargetSP &target_sp) in SearchFilterForUnconstrainedSearches()
301 CreateFromStructuredData(const lldb::TargetSP& target_sp,
324 SearchFilterByModule(const lldb::TargetSP &targetSP, const FileSpec &module);
343 CreateFromStructuredData(const lldb::TargetSP& target_sp,
[all …]
H A DSourceManager.h40 File(const FileSpec &file_spec, lldb::TargetSP target_sp);
96 void CommonInitializer(const FileSpec &file_spec, lldb::TargetSP target_sp);
137 SourceManager(const lldb::TargetSP &target_sp);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/
H A DProcessFreeBSDKernel.h16 ProcessFreeBSDKernel(lldb::TargetSP target_sp, lldb::ListenerSP listener,
20 CreateInstance(lldb::TargetSP target_sp, lldb::ListenerSP listener,
38 bool CanDebug(lldb::TargetSP target_sp,
H A DProcessFreeBSDKernel.cpp34 ProcessFreeBSDKernelFVC(lldb::TargetSP target_sp, lldb::ListenerSP listener,
52 ProcessFreeBSDKernelKVM(lldb::TargetSP target_sp, lldb::ListenerSP listener,
69 ProcessFreeBSDKernel::ProcessFreeBSDKernel(lldb::TargetSP target_sp, in ProcessFreeBSDKernel()
74 lldb::ProcessSP ProcessFreeBSDKernel::CreateInstance(lldb::TargetSP target_sp, in CreateInstance()
116 bool ProcessFreeBSDKernel::CanDebug(lldb::TargetSP target_sp, in CanDebug()
283 ProcessFreeBSDKernelFVC::ProcessFreeBSDKernelFVC(lldb::TargetSP target_sp, in ProcessFreeBSDKernelFVC()
311 ProcessFreeBSDKernelKVM::ProcessFreeBSDKernelKVM(lldb::TargetSP target_sp, in ProcessFreeBSDKernelKVM()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp72 SearchFilter::SearchFilter(const TargetSP &target_sp, unsigned char filterType) in SearchFilter()
78 const lldb::TargetSP& target_sp, in CreateFromStructuredData()
164 lldb::SearchFilterSP SearchFilter::CreateCopy(lldb::TargetSP& target_sp) { in CreateCopy()
356 const lldb::TargetSP& target_sp, in CreateFromStructuredData()
391 SearchFilterByModule::SearchFilterByModule(const lldb::TargetSP &target_sp, in SearchFilterByModule()
456 const lldb::TargetSP& target_sp, in CreateFromStructuredData()
498 const lldb::TargetSP &target_sp, const FileSpecList &module_list) in SearchFilterByModuleList()
503 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleList()
586 const lldb::TargetSP& target_sp, in CreateFromStructuredData()
627 const lldb::TargetSP in SearchFilterByModuleListAndCU()
[all...]
H A DSourceManager.cpp65 SourceManager::SourceManager(const TargetSP &target_sp) in SourceManager()
84 TargetSP target_sp(m_target_wp.lock()); in GetFile()
396 TargetSP target_sp(m_target_wp.lock()); in GetDefaultFileAndLine()
450 m_debugger_wp(debugger_sp), m_target_wp(TargetSP()) { in File()
454 SourceManager::File::File(const FileSpec &file_spec, TargetSP target_sp) in File()
463 TargetSP target_sp) { in CommonInitializer()
612 if (TargetSP target_sp = m_target_wp.lock()) in PathRemappingIsStale()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.h31 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/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolContext.h72 explicit SymbolContext(const lldb::TargetSP &target_sp,
313 lldb::TargetSP target_sp; ///< The Target for a given query
338 SymbolContextSpecifier(const lldb::TargetSP &target_sp);
355 lldb::TargetSP m_target_sp;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.h25 static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
40 bool CanDebug(lldb::TargetSP target_sp,
106 ScriptedProcess(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DStringPrinter.h112 void SetTargetSP(lldb::TargetSP t) { m_target_sp = std::move(t); } in SetTargetSP()
114 lldb::TargetSP GetTargetSP() const { return m_target_sp; } in GetTargetSP()
122 lldb::TargetSP m_target_sp;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.h34 CreateInstance(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
47 ProcessElfCore(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp,
53 bool CanDebug(lldb::TargetSP target_sp,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h85 static PythonObject ToSWIGWrapper(lldb::TargetSP target_sp);
161 lldb::TargetSP target_sp, const char *python_class_name,
241 const lldb::TargetSP &target, std::string &output);
254 const lldb::TargetSP &target_sp);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp37 TargetSP target_sp = in SetOptionValue()
38 execution_context ? execution_context->GetTargetSP() : TargetSP(); in SetOptionValue()

123456