Home
last modified time | relevance | path

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

1234567

/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTargetList.h46 typedef std::vector<lldb::TargetSP> collection;
90 lldb::TargetSP &target_sp);
99 lldb::PlatformSP &platform_sp, lldb::TargetSP &target_sp);
115 bool DeleteTarget(lldb::TargetSP &target_sp);
119 lldb::TargetSP GetTargetAtIndex(uint32_t index) const;
121 uint32_t GetIndexOfTarget(lldb::TargetSP target_sp) const;
144 lldb::TargetSP FindTargetWithExecutableAndArchitecture(
158 lldb::TargetSP FindTargetWithProcessID(lldb::pid_t pid) const;
160 lldb::TargetSP FindTargetWithProcess(lldb_private::Process *process) const;
162 lldb::TargetSP GetTargetSP(Target *target) 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,
74 static lldb::ProcessSP CreateInstance(lldb::TargetSP target_sp,
H A DTarget.h553 TargetEventData(const lldb::TargetSP &target_sp);
555 TargetEventData(const lldb::TargetSP &target_sp,
570 static lldb::TargetSP GetTargetFromEvent(const Event *event_ptr);
574 const lldb::TargetSP &GetTarget() const { return m_target_sp; } in GetTarget()
579 lldb::TargetSP m_target_sp;
1187 lldb::TargetSP CalculateTarget() override;
1345 lldb::TargetSP &GetTarget() { return m_target_sp; } in GetTarget()
1389 lldb::TargetSP m_target_sp;
1396 StopHook(lldb::TargetSP target_sp, lldb::user_id_t uid);
1417 StopHookCommandLine(lldb::TargetSP target_sp, lldb::user_id_t uid) in StopHookCommandLine()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp104 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget()
169 if (TargetSP target_sp = GetSP()) { in GetProcess()
180 if (TargetSP target_sp = GetSP()) { in GetPlatform()
192 if (TargetSP target_sp = GetSP()) in GetDebugger()
207 if (TargetSP target_sp = GetSP()) { in GetStatistics()
222 if (TargetSP target_sp = GetSP()) in ResetStatistics()
229 if (TargetSP target_sp = GetSP()) in SetCollectingStats()
236 if (TargetSP target_sp = GetSP()) in GetCollectingStats()
252 if (TargetSP target_sp = GetSP()) { in LoadCore()
274 TargetSP target_sp = GetSP(); in LaunchSimple()
[all …]
H A DSBValue.cpp99 TargetSP target_sp = m_valobj_sp->GetTargetSP(); in IsValid()
169 TargetSP GetTargetSP() { in GetTargetSP()
173 return TargetSP(); in GetTargetSP()
657 lldb::TargetSP target_sp = m_opaque_sp->GetTargetSP(); in CreateBoolValue()
670 TargetSP target_sp; in GetChildAtIndex()
721 TargetSP target_sp; in GetChildMemberWithName()
1046 TargetSP target_sp; in GetTarget()
1118 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1133 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
1146 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP()
[all …]
H A DSBInstruction.cpp117 TargetSP target_sp(target.GetSP()); in GetMnemonic()
136 TargetSP target_sp(target.GetSP()); in GetOperands()
155 TargetSP target_sp(target.GetSP()); in GetComment()
172 TargetSP target_sp(target.GetSP()); in GetControlFlowKind()
H A DSBSourceManager.cpp28 SourceManagerImpl(const lldb::TargetSP &target_sp) : m_target_wp(target_sp) {} in SourceManagerImpl()
46 lldb::TargetSP target_sp(m_target_wp.lock()); in DisplaySourceLinesWithLineNumbers()
/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()
252 lldb::TargetSP &target_sp) { in CreateTargetInternal()
372 bool TargetList::DeleteTarget(TargetSP &target_sp) { in DeleteTarget()
382 TargetSP TargetList::FindTargetWithExecutableAndArchitecture( in FindTargetWithExecutableAndArchitecture()
386 m_target_list, [&exe_file_spec, exe_arch_ptr](const TargetSP &item) { in FindTargetWithExecutableAndArchitecture()
399 return TargetSP(); in FindTargetWithExecutableAndArchitecture()
402 TargetSP TargetList::FindTargetWithProcessID(lldb::pid_t pid) const { in FindTargetWithProcessID()
404 auto it = llvm::find_if(m_target_list, [pid](const TargetSP &item) { in FindTargetWithProcessID()
[all …]
H A DProcessTrace.cpp33 ProcessSP ProcessTrace::CreateInstance(TargetSP target_sp, in CreateInstance()
43 bool ProcessTrace::CanDebug(TargetSP target_sp, bool plugin_specified_by_name) { in CanDebug()
47 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.h41 File(lldb::SupportFileSP support_file_sp, lldb::TargetSP target_sp);
111 lldb::TargetSP target_sp);
152 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()
312 ProcessFreeBSDKernelKVM::ProcessFreeBSDKernelKVM(lldb::TargetSP target_sp, in ProcessFreeBSDKernelKVM()
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DDILEval.h36 lldb::TargetSP target_sp,
41 Interpreter(lldb::TargetSP target, llvm::StringRef expr,
59 lldb::TargetSP m_target;
/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/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()
168 lldb::SearchFilterSP SearchFilter::CreateCopy(lldb::TargetSP& target_sp) { in CreateCopy()
360 const lldb::TargetSP& target_sp, in CreateFromStructuredData()
395 SearchFilterByModule::SearchFilterByModule(const lldb::TargetSP &target_sp, in SearchFilterByModule()
460 const lldb::TargetSP& target_sp, in CreateFromStructuredData()
504 const lldb::TargetSP &target_sp, const FileSpecList &module_list) in SearchFilterByModuleList()
509 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleList()
592 const lldb::TargetSP& target_sp, in CreateFromStructuredData()
633 const lldb::TargetSP &target_sp, const FileSpecList &module_list, in SearchFilterByModuleListAndCU()
[all …]
H A DSourceManager.cpp71 SourceManager::SourceManager(const TargetSP &target_sp) in SourceManager()
94 TargetSP target_sp(m_target_wp.lock()); in GetFile()
413 TargetSP target_sp(m_target_wp.lock()); in GetDefaultFileAndLine()
465 m_mod_time(), m_debugger_wp(debugger_sp), m_target_wp(TargetSP()) { in File()
469 SourceManager::File::File(SupportFileSP support_file_sp, TargetSP target_sp) in File()
479 TargetSP target_sp) { in CommonInitializer()
641 if (TargetSP target_sp = m_target_wp.lock()) in PathRemappingIsStale()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolContext.h72 explicit SymbolContext(const lldb::TargetSP &target_sp,
317 lldb::TargetSP target_sp; ///< The Target for a given query
342 SymbolContextSpecifier(const lldb::TargetSP &target_sp);
359 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.h87 static PythonObject ToSWIGWrapper(lldb::TargetSP target_sp);
221 lldb::TargetSP target);
250 const lldb::TargetSP &target, std::string &output);
263 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()

1234567