Home
last modified time | relevance | path

Searched refs:fspec (Results 1 – 21 of 21) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBHostOS.cpp52 FileSpec fspec; in GetLLDBPath() local
55 fspec = HostInfo::GetShlibDir(); in GetLLDBPath()
58 fspec = HostInfo::GetSupportExeDir(); in GetLLDBPath()
61 fspec = HostInfo::GetHeaderDir(); in GetLLDBPath()
65 fspec = ScriptInterpreterPython::GetPythonDir(); in GetLLDBPath()
69 fspec = HostInfo::GetSystemPluginDir(); in GetLLDBPath()
72 fspec = HostInfo::GetUserPluginDir(); in GetLLDBPath()
75 fspec = HostInfo::GetProcessTempDir(); in GetLLDBPath()
78 fspec = HostInfo::GetGlobalTempDir(); in GetLLDBPath()
81 fspec = GetClangResourceDir(); in GetLLDBPath()
[all …]
DSBFileSpec.cpp36 SBFileSpec::SBFileSpec(const lldb_private::FileSpec &fspec) in SBFileSpec() argument
37 : m_opaque_up(new lldb_private::FileSpec(fspec)) {} in SBFileSpec()
/external/llvm-project/lldb/unittests/SymbolFile/PDB/
DSymbolFilePDBTests.cpp150 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
152 lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); in TEST_F()
166 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
168 lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); in TEST_F()
184 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
186 lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); in TEST_F()
205 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
207 lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); in TEST_F()
231 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
233 lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); in TEST_F()
[all …]
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformMacOSX.cpp120 if (FileSpec fspec = HostInfo::GetXcodeContentsDirectory()) { in GetSDKDirectory() local
124 fspec.GetPath().c_str(), version.getMajor(), in GetSDKDirectory()
126 if (FileSystem::Instance().Exists(fspec)) in GetSDKDirectory()
131 FileSpec fspec( in GetSDKDirectory() local
133 if (fspec) { in GetSDKDirectory()
134 if (FileSystem::Instance().Exists(fspec)) in GetSDKDirectory()
135 return ConstString(fspec.GetPath()); in GetSDKDirectory()
DPlatformRemoteDarwinDevice.cpp341 if (FileSpec fspec = HostInfo::GetXcodeDeveloperDirectory()) { in GetDeviceSupportDirectory() local
342 m_device_support_directory = fspec.GetPath(); in GetDeviceSupportDirectory()
DPlatformDarwin.cpp1819 if (FileSpec fspec = HostInfo::GetShlibDir()) in GetCurrentToolchainDirectory() local
1820 return FileSpec(FindComponentInPath(fspec.GetPath(), ".xctoolchain")); in GetCurrentToolchainDirectory()
1825 if (FileSpec fspec = HostInfo::GetShlibDir()) in GetCurrentCommandLineToolsDirectory() local
1826 return FileSpec(FindComponentInPath(fspec.GetPath(), "CommandLineTools")); in GetCurrentCommandLineToolsDirectory()
/external/llvm-project/lldb/test/API/macosx/lc-note/firmware-corefile/
DTestFirmwareCorefiles.py119 fspec = self.target.GetModuleAtIndex(0).GetFileSpec()
120 filepath = fspec.GetDirectory() + "/" + fspec.GetFilename()
131 fspec = self.target.GetModuleAtIndex(0).GetFileSpec()
132 filepath = fspec.GetDirectory() + "/" + fspec.GetFilename()
/external/selinux/gui/
DfcontextPage.py174 fspec = store.get_value(iter, SPEC_COL)
177 …tatusoutput("semanage fcontext -d -f '%s' '%s'" % (seobject.file_type_str_to_option[ftype], fspec))
188 fspec = self.fcontextEntry.get_text().strip()
195 …context -a -t %s -r %s -f '%s' '%s'" % (type, mls, seobject.file_type_str_to_option[ftype], fspec))
202 self.store.set_value(iter, SPEC_COL, fspec)
207 fspec = self.fcontextEntry.get_text().strip()
214 …context -m -t %s -r %s -f '%s' '%s'" % (type, mls, seobject.file_type_str_to_option[ftype], fspec))
221 self.store.set_value(iter, SPEC_COL, fspec)
/external/llvm-project/lldb/test/API/functionalities/paths/
DTestPaths.py45 fspec = lldb.SBFileSpec("C:\\dummy1\\dummy2//unknown_file", True)
48 fspec.GetDirectory()),
50 self.assertEqual(fspec.GetFilename(), "unknown_file")
/external/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
DSymbolVendorELF.cpp79 FileSpec fspec = module_sp->GetSymbolFileFileSpec(); in CreateInstance() local
81 if (!fspec) in CreateInstance()
82 fspec = obj_file->GetDebugLink().getValueOr(FileSpec()); in CreateInstance()
92 module_spec.GetSymbolFileSpec() = fspec; in CreateInstance()
/external/llvm-project/lldb/bindings/interface/
DSBModuleSpec.i42 SetFileSpec (const lldb::SBFileSpec &fspec);
62 SetPlatformFileSpec (const lldb::SBFileSpec &fspec);
68 SetSymbolFileSpec (const lldb::SBFileSpec &fspec);
/external/llvm-project/lldb/source/Host/macosx/objcxx/
DHostInfoMacOSX.mm311 FileSpec fspec(developer_dir_env_var);
312 if (FileSystem::Instance().Exists(fspec))
313 g_env_developer_dir = fspec.GetPath();
323 if (FileSpec fspec = HostInfo::GetShlibDir()) {
324 if (FileSystem::Instance().Exists(fspec)) {
326 XcodeSDK::FindXcodeContentsDirectoryInPath(fspec.GetPath());
345 FileSpec fspec(HostInfo::GetXcodeSDKPath(XcodeSDK::GetAnyMacOS()));
346 if (fspec) {
347 if (FileSystem::Instance().Exists(fspec)) {
349 XcodeSDK::FindXcodeContentsDirectoryInPath(fspec.GetPath());
[all …]
/external/llvm-project/lldb/include/lldb/API/
DSBModuleSpec.h43 void SetFileSpec(const lldb::SBFileSpec &fspec);
60 void SetPlatformFileSpec(const lldb::SBFileSpec &fspec);
64 void SetSymbolFileSpec(const lldb::SBFileSpec &fspec);
DSBFileSpec.h78 SBFileSpec(const lldb_private::FileSpec &fspec);
80 void SetFileSpec(const lldb_private::FileSpec &fspec);
/external/llvm-project/lldb/test/API/macosx/lc-note/kern-ver-str/
DTestKernVerStrLCNOTE.py97 fspec = self.target.GetModuleAtIndex(0).GetFileSpec()
98 filepath = fspec.GetDirectory() + "/" + fspec.GetFilename()
/external/llvm-project/lldb/source/Symbol/
DCompileUnit.cpp28 const FileSpec &fspec, const lldb::user_id_t cu_sym_id, in CompileUnit() argument
32 m_language(language), m_flags(0), m_file_spec(fspec), in CompileUnit()
DSymbol.cpp159 bool Symbol::SetReExportedSymbolSharedLibrary(const FileSpec &fspec) { in SetReExportedSymbolSharedLibrary() argument
164 (uintptr_t)ConstString(fspec.GetPath().c_str()).GetCString()); in SetReExportedSymbolSharedLibrary()
/external/llvm-project/lldb/unittests/SymbolFile/DWARF/
DSymbolFileDWARFTests.cpp59 FileSpec fspec(m_dwarf_test_exe); in TEST_F() local
61 lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); in TEST_F()
/external/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/
Dmod.rs93 pub fspec: *mut ::c_char,
98 pub fspec: *mut ::c_char,
106 pub fspec: *mut ::c_char,
138 pub fspec: *mut ::c_char,
147 pub fspec: *mut ::c_char,
156 pub fspec: *mut ::c_char,
/external/llvm-project/lldb/include/lldb/Symbol/
DSymbol.h131 bool SetReExportedSymbolSharedLibrary(const FileSpec &fspec);
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1903 auto fspec = GetFileSpec().CopyByAppendingPathComponent( in GetGnuDebugDataObjectFile() local
1906 GetModule(), gdd_data_buf, 0, &fspec, 0, gdd_data_buf->GetByteSize())); in GetGnuDebugDataObjectFile()