Home
last modified time | relevance | path

Searched refs:m_sdk_sysroot (Results 1 – 5 of 5) sorted by relevance

/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPlatform.cpp53 if (!m_sdk_sysroot.empty()) in CreatePlatformWithOptions()
54 platform_sp->SetSDKRootDirectory(m_sdk_sysroot); in CreatePlatformWithOptions()
66 m_sdk_sysroot.clear(); in OptionParsingStarting()
120 m_sdk_sysroot.assign(option_arg.str()); in SetOptionValue()
140 if (!m_sdk_sysroot.empty() && in PlatformMatches()
141 platform_sp->GetSDKRootDirectory() != m_sdk_sysroot) in PlatformMatches()
/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupPlatform.h50 const std::string &GetSDKRootDirectory() const { return m_sdk_sysroot; } in GetSDKRootDirectory()
53 m_sdk_sysroot = std::move(sdk_root_directory); in SetSDKRootDirectory()
66 std::string m_sdk_sysroot; variable
/llvm-project/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinDevice.cpp37 if (!m_sdk_sysroot.empty()) { in UpdateSDKDirectoryInfosIfNeeded()
38 FileSpec sdk_sysroot_fspec(m_sdk_sysroot.c_str()); in UpdateSDKDirectoryInfosIfNeeded()
46 m_sdk_sysroot.c_str()); in UpdateSDKDirectoryInfosIfNeeded()
251 if (!m_sdk_sysroot.empty()) in GetDeviceSupportDirectoryForOSVersion()
252 return m_sdk_sysroot.c_str(); in GetDeviceSupportDirectoryForOSVersion()
/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h532 const std::string &GetSDKRootDirectory() const { return m_sdk_sysroot; }
534 void SetSDKRootDirectory(std::string dir) { m_sdk_sysroot = std::move(dir); }
1000 m_sdk_sysroot; // the root location of where the SDK files are all located
939 m_sdk_sysroot; // the root location of where the SDK files are all located global() variable
/llvm-project/lldb/source/Target/
H A DPlatform.cpp178 if (!m_sdk_sysroot.empty()) { in GetSharedModule()
181 resolved_spec.GetFileSpec().PrependPathComponent(m_sdk_sysroot); in GetSharedModule()