| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBTarget.cpp | 104 SBTarget::SBTarget(const TargetSP &target_sp) : m_opaque_sp(target_sp) { in SBTarget() 169 if (TargetSP target_sp = GetSP()) { in GetProcess() local 180 if (TargetSP target_sp = GetSP()) { in GetPlatform() local 192 if (TargetSP target_sp = GetSP()) in GetDebugger() local 207 if (TargetSP target_sp = GetSP()) { in GetStatistics() local 222 if (TargetSP target_sp = GetSP()) in ResetStatistics() local 229 if (TargetSP target_sp = GetSP()) in SetCollectingStats() local 236 if (TargetSP target_sp = GetSP()) in GetCollectingStats() local 252 if (TargetSP target_sp = GetSP()) { in LoadCore() local 274 TargetSP target_sp = GetSP(); in LaunchSimple() local [all …]
|
| H A D | SBInstruction.cpp | 117 TargetSP target_sp(target.GetSP()); in GetMnemonic() local 136 TargetSP target_sp(target.GetSP()); in GetOperands() local 155 TargetSP target_sp(target.GetSP()); in GetComment() local 172 TargetSP target_sp(target.GetSP()); in GetControlFlowKind() local
|
| H A D | SBSourceManager.cpp | 28 SourceManagerImpl(const lldb::TargetSP &target_sp) : m_target_wp(target_sp) {} in SourceManagerImpl() 46 lldb::TargetSP target_sp(m_target_wp.lock()); in DisplaySourceLinesWithLineNumbers() local
|
| H A D | SBValue.cpp | 99 TargetSP target_sp = m_valobj_sp->GetTargetSP(); in IsValid() local 657 lldb::TargetSP target_sp = m_opaque_sp->GetTargetSP(); in CreateBoolValue() local 670 TargetSP target_sp; in GetChildAtIndex() local 721 TargetSP target_sp; in GetChildMemberWithName() local 1046 TargetSP target_sp; in GetTarget() local 1118 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP() local 1133 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP() local 1146 lldb::TargetSP target_sp(sp->GetTargetSP()); in SetSP() local 1201 lldb::TargetSP target_sp = value_sp->GetTargetSP(); in EvaluateExpression() local 1237 lldb::TargetSP target_sp = value_sp->GetTargetSP(); in EvaluateExpression() local [all …]
|
| H A D | SBDebugger.cpp | 527 TargetSP target_sp(m_opaque_sp->GetSelectedTarget()); in HandleCommand() local 593 TargetSP target_sp(process.GetTarget().GetSP()); in HandleProcessEvent() local 791 TargetSP target_sp; in CreateTarget() local 826 TargetSP target_sp; in CreateTargetWithFileAndTargetTriple() local 853 TargetSP target_sp; in CreateTargetWithFileAndArch() local 895 TargetSP target_sp; in CreateTarget() local 945 TargetSP target_sp(target.GetSP()); in DeleteTarget() local 976 lldb::TargetSP target_sp = target.GetSP(); in GetIndexOfTarget() local 1006 TargetSP target_sp( in FindTargetWithFileAndArch() local 1040 TargetSP target_sp; in GetSelectedTarget() local [all …]
|
| H A D | SBMutex.cpp | 34 SBMutex::SBMutex(lldb::TargetSP target_sp) in SBMutex()
|
| H A D | SBBreakpoint.cpp | 801 SBBreakpointListImpl(lldb::TargetSP target_sp) { in SBBreakpointListImpl() 813 TargetSP target_sp = m_target_wp.lock(); in GetBreakpointAtIndex() local 821 TargetSP target_sp = m_target_wp.lock(); in FindBreakpointByID() local 833 TargetSP target_sp = m_target_wp.lock(); in Append() local 843 TargetSP target_sp = m_target_wp.lock(); in AppendIfUnique() local 857 TargetSP target_sp = m_target_wp.lock(); in AppendByID() local
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | TargetList.cpp | 50 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() 416 TargetSP target_sp; in FindTargetWithProcess() local 432 TargetSP target_sp; in GetTargetSP() local 450 TargetSP target_sp(FindTargetWithProcessID(pid)); in SendAsyncInterrupt() local 473 for (const auto &target_sp : m_target_list) { in SignalIfRunning() local 482 TargetSP target_sp(FindTargetWithProcessID(pid)); in SignalIfRunning() local [all …]
|
| H A D | ExecutionContext.cpp | 24 ExecutionContext::ExecutionContext(const lldb::TargetSP &target_sp, in ExecutionContext() 52 lldb::TargetSP target_sp(target_wp.lock()); in ExecutionContext() local 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() local 563 lldb::TargetSP target_sp(m_target_wp.lock()); in GetTargetSP() local
|
| H A D | ProcessTrace.cpp | 33 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 D | ThreadPlanTracer.cpp | 49 TargetSP target_sp(GetThread().CalculateTarget()); in GetLogStreamSP() local 106 if (auto target_sp = m_process.CalculateTarget()) { in GetIntPointerType() local
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | SearchFilter.cpp | 72 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 D | DumpDataExtractor.cpp | 127 TargetSP target_sp; in DumpInstructions() local 250 TargetSP target_sp = exe_scope->CalculateTarget(); in GetMemoryTags() local 320 static const llvm::fltSemantics &GetFloatSemantics(const TargetSP &target_sp, in GetFloatSemantics() 657 TargetSP target_sp; in DumpDataExtractor() local 707 TargetSP target_sp(exe_scope->CalculateTarget()); in DumpDataExtractor() local
|
| H A D | SourceManager.cpp | 71 SourceManager::SourceManager(const TargetSP &target_sp) in SourceManager() 94 TargetSP target_sp(m_target_wp.lock()); in GetFile() local 413 TargetSP target_sp(m_target_wp.lock()); in GetDefaultFileAndLine() local 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() local
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/ |
| H A D | ProcessFreeBSDKernel.cpp | 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/source/Expression/ |
| H A D | IRMemoryMap.cpp | 23 IRMemoryMap::IRMemoryMap(lldb::TargetSP target_sp) : m_target_wp(target_sp) { in IRMemoryMap() 59 lldb::TargetSP target_sp = m_target_wp.lock(); in FindSpace() local 267 lldb::TargetSP target_sp = m_target_wp.lock(); in GetByteOrder() local 281 lldb::TargetSP target_sp = m_target_wp.lock(); in GetAddressByteSize() local 295 lldb::TargetSP target_sp = m_target_wp.lock(); in GetBestExecutionContextScope() local 662 lldb::TargetSP target_sp = m_target_wp.lock(); in ReadMemory() local
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | GenericBitset.cpp | 68 if (auto target_sp = m_backend.GetTargetSP()) { in GenericBitsetFrontEnd() local 91 TargetSP target_sp = m_backend.GetTargetSP(); in Update() local
|
| H A D | Coroutines.cpp | 43 static Function *ExtractDestroyFunction(lldb::TargetSP target_sp, in ExtractDestroyFunction() 132 lldb::TargetSP target_sp = m_backend.GetTargetSP(); in Update() local
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | SearchFilter.h | 276 void SetTarget(lldb::TargetSP &target_sp) { m_target_sp = target_sp; } in SetTarget() 291 SearchFilterForUnconstrainedSearches(const lldb::TargetSP &target_sp) in SearchFilterForUnconstrainedSearches()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | PostMortemProcess.h | 27 PostMortemProcess(lldb::TargetSP target_sp, lldb::ListenerSP listener_sp, in PostMortemProcess()
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | TypeFormat.cpp | 77 TargetSP target_sp(valobj->GetTargetSP()); in FormatObject() local 153 TargetSP target_sp; in FormatObject() local
|
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectMemory.cpp | 62 TargetSP target_sp(GetTargetSP()); in ValueObjectMemory() local 89 TargetSP target_sp(GetTargetSP()); in ValueObjectMemory() local
|
| H A D | ValueObjectVTable.cpp | 70 TargetSP target_sp = GetTargetSP(); in UpdateValue() local 226 TargetSP target_sp = GetTargetSP(); in UpdateValue() local
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPTBundleLoader.h | 24 lldb::TargetSP target_sp; member
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ |
| H A D | ScriptedStopHookPythonInterface.cpp | 36 lldb::TargetSP target_sp, in CreatePluginObject()
|