Home
last modified time | relevance | path

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

/freebsd/contrib/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()
/freebsd/contrib/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
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h471 const std::string &GetSDKRootDirectory() const { return m_sdk_sysroot; } in GetSDKRootDirectory()
473 void SetSDKRootDirectory(std::string dir) { m_sdk_sysroot = std::move(dir); } in SetSDKRootDirectory()
939 m_sdk_sysroot; // the root location of where the SDK files are all located variable
/freebsd/contrib/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()