Home
last modified time | relevance | path

Searched refs:platform_sp (Results 1 – 25 of 33) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp345 if (platform_sp) in GetName()
360 if (platform_sp) in GetWorkingDirectory()
369 if (platform_sp) { in SetWorkingDirectory()
398 if (platform_sp) in DisconnectRemote()
406 if (platform_sp) in IsConnected()
415 if (platform_sp) { in GetTriple()
430 if (platform_sp) { in GetOSBuild()
445 if (platform_sp) { in GetOSDescription()
460 if (platform_sp) in GetHostname()
503 if (platform_sp) { in Get()
[all …]
H A DSBUnixSignals.cpp30 SBUnixSignals::SBUnixSignals(PlatformSP &platform_sp) in SBUnixSignals() argument
31 : m_opaque_wp(platform_sp ? platform_sp->GetUnixSignals() : nullptr) {} in SBUnixSignals()
H A DSBProcess.cpp962 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform(); in GetExtendedCrashInformation() local
964 if (!platform_sp) in GetExtendedCrashInformation()
968 platform_sp->FetchExtendedCrashInformation(*process_sp.get()); in GetExtendedCrashInformation()
1017 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform(); in LoadImage() local
1018 return platform_sp->LoadImage(process_sp.get(), *sb_local_image_spec, in LoadImage()
1041 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform(); in LoadImageUsingPaths() local
1049 uint32_t token = platform_sp->LoadImageUsingPaths( in LoadImageUsingPaths()
1074 PlatformSP platform_sp = process_sp->GetTarget().GetPlatform(); in UnloadImage() local
1076 platform_sp->UnloadImage(process_sp.get(), image_token)); in UnloadImage()
H A DSBDebugger.cpp904 PlatformSP platform_sp = in CreateTargetWithFileAndArch() local
907 Platform::GetAugmentedArchSpec(platform_sp.get(), arch_cstr); in CreateTargetWithFileAndArch()
910 *m_opaque_sp, filename, arch, eLoadDependentsYes, platform_sp, in CreateTargetWithFileAndArch()
1518 if (PlatformSP platform_sp = platforms.GetOrCreate(platform_name_cstr)) in SetCurrentPlatform() local
1519 platforms.SetSelectedPlatform(platform_sp); in SetCurrentPlatform()
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPlatform.cpp23 PlatformSP platform_sp; in CreatePlatformWithOptions() local
27 if (!platform_sp) { in CreatePlatformWithOptions()
32 if (platform_sp) { in CreatePlatformWithOptions()
34 !platform_sp->IsCompatibleArchitecture( in CreatePlatformWithOptions()
39 platform_sp.reset(); in CreatePlatformWithOptions()
40 return platform_sp; in CreatePlatformWithOptions()
47 if (platform_sp) { in CreatePlatformWithOptions()
51 platform_sp->SetOSVersion(m_os_version); in CreatePlatformWithOptions()
57 platform_sp->SetSDKBuild(m_sdk_build); in CreatePlatformWithOptions()
60 return platform_sp; in CreatePlatformWithOptions()
[all …]
H A DOptions.cpp1259 lldb::PlatformSP platform_sp, in Parse() argument
1313 if (!platform_sp) { in Parse()
1318 platform_sp = target_sp ? target_sp->GetPlatform() : PlatformSP(); in Parse()
1322 if (!platform_sp && require_validation) { in Parse()
1331 if (platform_sp) { in Parse()
1336 if (validator && !validator->IsValid(*platform_sp, *exe_ctx_p)) { in Parse()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp259 if (!platform_sp) { in DoExecute()
262 if (platform_sp) { in DoExecute()
291 if (platform_sp) { in DoExecute()
313 if (platform_sp) { in GetOptions()
336 if (platform_sp) { in DoExecute()
395 if (platform_sp) { in DoExecute()
430 if (platform_sp) { in DoExecute()
488 if (platform_sp) { in DoExecute()
542 if (platform_sp) { in DoExecute()
585 if (platform_sp) { in DoExecute()
[all …]
H A DCommandCompletions.cpp506 lldb::PlatformSP platform_sp = in RemoteDiskFiles() local
508 if (platform_sp) in RemoteDiskFiles()
515 lldb::PlatformSP platform_sp = in RemoteDiskDirectories() local
517 if (platform_sp) in RemoteDiskDirectories()
518 platform_sp->AutoCompleteDiskFileOrDirectory(request, true); in RemoteDiskDirectories()
692 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessIDs() local
693 if (!platform_sp) in ProcessIDs()
697 platform_sp->FindProcesses(match_info, process_infos); in ProcessIDs()
706 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessNames() local
707 if (!platform_sp) in ProcessNames()
[all …]
H A DCommandOptionsProcessLaunch.cpp96 PlatformSP platform_sp = in SetOptionValue() local
99 Platform::GetAugmentedArchSpec(platform_sp.get(), option_arg); in SetOptionValue()
H A DCommandObjectProcess.cpp325 PlatformSP platform_sp( in DoExecute() local
915 PlatformSP platform_sp = m_interpreter.GetPlatform(true); in DoExecute() local
918 ? platform_sp->ConnectProcess( in DoExecute()
921 : platform_sp->ConnectProcessSynchronous( in DoExecute()
1468 PlatformSP platform_sp = process->GetTarget().GetPlatform(); in DoExecute() local
1469 if (!platform_sp) { in DoExecute()
1475 platform_sp->FetchExtendedCrashInformation(*process); in DoExecute()
H A DCommandObjectTarget.cpp104 PlatformSP platform_sp(target->GetPlatform()); in DumpTargetInfo() local
105 if (platform_sp) in DumpTargetInfo()
107 platform_sp->GetName()); in DumpTargetInfo()
344 if (platform_sp && platform_sp->IsHost() && in DoExecute()
350 if (platform_sp) { in DoExecute()
383 if (platform_sp->IsHost()) { in DoExecute()
388 if (platform_sp->IsConnected() && !platform_sp->GetFileExists(remote_file)) { in DoExecute()
3697 PlatformSP platform_sp(target->GetPlatform()); in DoExecute() local
3698 if (platform_sp) { in DoExecute()
4724 if (platform_sp) { in DoExecute()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp69 platform_sp, target_sp); in CreateTarget()
106 if (!platform_sp) in CreateTargetInternal()
127 if (platform_sp->IsHost() && in CreateTargetInternal()
189 platform_sp = platform_for_archs_sp; in CreateTargetInternal()
222 if (platform_sp) in CreateTargetInternal()
231 platform_sp = in CreateTargetInternal()
233 if (platform_sp) in CreateTargetInternal()
261 if (!platform_sp || !platform_sp->IsCompatibleArchitecture( in CreateTargetInternal()
263 platform_sp = in CreateTargetInternal()
267 if (!platform_sp) in CreateTargetInternal()
[all …]
H A DPlatform.cpp148 GetHostPlatformSP() = platform_sp; in SetHostPlatform()
251 lldb::PlatformSP platform_sp; in Create() local
2146 return platform_sp; in GetOrCreate()
2160 return platform_sp; in GetOrCreate()
2168 return platform_sp; in GetOrCreate()
2178 if (platform_sp && in GetOrCreate()
2182 return platform_sp; in GetOrCreate()
2190 if (platform_sp && platform_sp->IsCompatibleArchitecture( in GetOrCreate()
2194 return platform_sp; in GetOrCreate()
2267 return platform_sp; in Create()
[all …]
H A DTarget.cpp1550 auto platform_sp = GetPlatform(); in SetArchitecture() local
1551 if (!platform_sp || !platform_sp->IsCompatibleArchitecture( in SetArchitecture()
3070 PlatformSP platform_sp(GetPlatform()); in Install() local
3071 if (platform_sp) { in Install()
3072 if (platform_sp->IsRemote()) { in Install()
3073 if (platform_sp->IsConnected()) { in Install()
3441 const auto platform_sp = in Attach() local
3454 SetPlatform(platform_sp); in Attach()
3510 bool(platform_sp), in FinalizeFileActions()
3511 platform_sp ? (platform_sp->IsHost() ? "true" : "false") : "n/a", in FinalizeFileActions()
[all …]
H A DProcess.cpp1762 PlatformSP platform_sp(GetTarget().GetPlatform()); in GetSoftwareBreakpointTrapOpcode() local
1763 if (platform_sp) in GetSoftwareBreakpointTrapOpcode()
2859 if (platform_sp) { in Attach()
2953 PlatformSP platform_sp(GetTarget().GetPlatform()); in CompleteAttach() local
2954 assert(platform_sp); in CompleteAttach()
2956 if (platform_sp) { in CompleteAttach()
2964 if (platform_sp) { in CompleteAttach()
2965 GetTarget().SetPlatform(platform_sp); in CompleteAttach()
5881 PlatformSP platform_sp = GetTarget().GetPlatform(); in GetProcessInfo() local
5882 if (!platform_sp) in GetProcessInfo()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h100 static void SetHostPlatform(const lldb::PlatformSP &platform_sp);
1030 void Append(const lldb::PlatformSP &platform_sp, bool set_selected) { in Append() argument
1032 m_platforms.push_back(platform_sp); in Append()
1043 lldb::PlatformSP platform_sp; in GetAtIndex() local
1047 platform_sp = m_platforms[idx]; in GetAtIndex()
1049 return platform_sp; in GetAtIndex()
1066 void SetSelectedPlatform(const lldb::PlatformSP &platform_sp) { in SetSelectedPlatform() argument
1067 if (platform_sp) { in SetSelectedPlatform()
1071 if (m_platforms[idx].get() == platform_sp.get()) { in SetSelectedPlatform()
1076 m_platforms.push_back(platform_sp); in SetSelectedPlatform()
H A DTargetList.h100 lldb::PlatformSP &platform_sp, lldb::TargetSP &target_sp);
213 lldb::PlatformSP &platform_sp,
H A DTarget.h1433 void SetPlatform(const lldb::PlatformSP &platform_sp) { in SetPlatform() argument
1434 m_platform_sp = platform_sp; in SetPlatform()
1615 const lldb::PlatformSP &platform_sp, bool is_dummy_target);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBUnixSignals.h59 SBUnixSignals(lldb::PlatformSP &platform_sp);
H A DSBPlatform.h199 void SetSP(const lldb::PlatformSP &platform_sp);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupPlatform.h62 bool PlatformMatches(const lldb::PlatformSP &platform_sp) const;
H A DOptions.h127 lldb::PlatformSP platform_sp,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp680 PlatformSP platform_sp(GetTarget().GetPlatform()); in DoLaunch() local
692 } else if (platform_sp && platform_sp->IsHost()) { in DoLaunch()
869 PlatformSP platform_sp = GetTarget().GetPlatform(); in ConnectToDebugserver() local
870 if (platform_sp) { in ConnectToDebugserver()
977 PlatformSP platform_sp = GetTarget().GetPlatform(); in DidLaunchOrAttach() local
978 if (platform_sp && platform_sp->IsConnected()) in DidLaunchOrAttach()
979 SetUnixSignals(platform_sp->GetUnixSignals()); in DidLaunchOrAttach()
2444 if (platform_sp && platform_sp->IsHost()) { in DoDestroy()
3317 PlatformSP platform_sp(GetTarget().GetPlatform()); in EstablishConnectionIfNeeded() local
3318 if (platform_sp && !platform_sp->IsHost()) in EstablishConnectionIfNeeded()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionSourceCode.cpp360 if (lldb::PlatformSP platform_sp = target->GetPlatform()) { in GetText() local
361 if (platform_sp->GetPluginName() == "ios-simulator") { in GetText()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp808 const auto platform_sp = target.GetPlatform(); in ResolveExecutableModule() local
830 auto error = platform_sp->ResolveExecutable( in ResolveExecutableModule()

12