Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/API/
H A DSBHostOS.cpp49 FileSpec fspec; in GetLLDBPath() local
52 fspec = HostInfo::GetShlibDir(); in GetLLDBPath()
55 fspec = HostInfo::GetSupportExeDir(); in GetLLDBPath()
58 fspec = HostInfo::GetHeaderDir(); in GetLLDBPath()
62 fspec = ScriptInterpreterPython::GetPythonDir(); in GetLLDBPath()
66 fspec = HostInfo::GetSystemPluginDir(); in GetLLDBPath()
69 fspec = HostInfo::GetUserPluginDir(); in GetLLDBPath()
72 fspec = HostInfo::GetProcessTempDir(); in GetLLDBPath()
75 fspec = HostInfo::GetGlobalTempDir(); in GetLLDBPath()
78 fspec = GetClangResourceDir(); in GetLLDBPath()
[all …]
H A DSBFileSpec.cpp36 SBFileSpec::SBFileSpec(const lldb_private::FileSpec &fspec) in SBFileSpec() argument
37 : m_opaque_up(new lldb_private::FileSpec(fspec)) {} in SBFileSpec()
/llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/
H A DSymbolFilePDBTests.cpp150 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
166 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
185 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
207 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
235 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
256 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
306 FileSpec fspec(m_pdb_test_exe); in TEST_F() local
358 FileSpec fspec(m_types_test_exe); in TEST_F() local
379 FileSpec fspec(m_types_test_exe); in TEST_F() local
433 FileSpec fspec(m_types_test_exe); in TEST_F() local
[all …]
/llvm-project-15.0.7/lldb/test/API/macosx/lc-note/firmware-corefile/
H A DTestFirmwareCorefiles.py52 fspec = target.GetModuleAtIndex(0).GetFileSpec()
53 self.assertEqual(fspec.GetFilename(), aout_exe_basename)
67 fspec = target.GetModuleAtIndex(0).GetFileSpec()
68 self.assertEqual(fspec.GetFilename(), aout_exe_basename)
115 fspec = target.GetModuleAtIndex(0).GetFileSpec()
116 self.assertEqual(fspec.GetFilename(), aout_exe_basename)
129 fspec = target.GetModuleAtIndex(0).GetFileSpec()
130 self.assertEqual(fspec.GetFilename(), aout_exe_basename)
147 fspec = target.GetModuleAtIndex(0).GetFileSpec()
148 self.assertEqual(fspec.GetFilename(), aout_exe_basename)
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformMacOSX.cpp115 if (FileSpec fspec = HostInfo::GetXcodeContentsDirectory()) { in GetSDKDirectory() local
119 fspec.GetPath().c_str(), version.getMajor(), in GetSDKDirectory()
121 if (FileSystem::Instance().Exists(fspec)) in GetSDKDirectory()
126 FileSpec fspec( in GetSDKDirectory() local
128 if (fspec) { in GetSDKDirectory()
129 if (FileSystem::Instance().Exists(fspec)) in GetSDKDirectory()
130 return ConstString(fspec.GetPath()); in GetSDKDirectory()
H A DPlatformDarwinDevice.cpp223 if (FileSpec fspec = HostInfo::GetXcodeDeveloperDirectory()) { in GetDeviceSupportDirectory() local
224 m_device_support_directory = fspec.GetPath(); in GetDeviceSupportDirectory()
H A DPlatformDarwin.cpp1286 if (FileSpec fspec = HostInfo::GetShlibDir()) in GetCurrentToolchainDirectory() local
1287 return FileSpec(FindComponentInPath(fspec.GetPath(), ".xctoolchain")); in GetCurrentToolchainDirectory()
1292 if (FileSpec fspec = HostInfo::GetShlibDir()) in GetCurrentCommandLineToolsDirectory() local
1293 return FileSpec(FindComponentInPath(fspec.GetPath(), "CommandLineTools")); in GetCurrentCommandLineToolsDirectory()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.cpp74 FileSpec fspec = module_sp->GetSymbolFileFileSpec(); in CreateInstance() local
76 if (!fspec) in CreateInstance()
77 fspec = obj_file->GetDebugLink().value_or(FileSpec()); in CreateInstance()
86 module_spec.GetSymbolFileSpec() = fspec; in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp74 FileSpec fspec = module_sp->GetSymbolFileFileSpec(); in CreateInstance() local
76 if (!fspec) in CreateInstance()
77 fspec = obj_file->GetDebugLink().value_or(FileSpec()); in CreateInstance()
86 module_spec.GetSymbolFileSpec() = fspec; in CreateInstance()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBModuleSpec.i42 SetFileSpec (const lldb::SBFileSpec &fspec);
62 SetPlatformFileSpec (const lldb::SBFileSpec &fspec);
68 SetSymbolFileSpec (const lldb::SBFileSpec &fspec);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBModuleSpec.h43 void SetFileSpec(const lldb::SBFileSpec &fspec);
60 void SetPlatformFileSpec(const lldb::SBFileSpec &fspec);
64 void SetSymbolFileSpec(const lldb::SBFileSpec &fspec);
H A DSBFileSpec.h79 SBFileSpec(const lldb_private::FileSpec &fspec);
81 void SetFileSpec(const lldb_private::FileSpec &fspec);
/llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/
H A DHostInfoMacOSX.mm308 FileSpec fspec(developer_dir_env_var);
309 if (FileSystem::Instance().Exists(fspec))
310 g_env_developer_dir = fspec.GetPath();
320 if (FileSpec fspec = HostInfo::GetShlibDir()) {
321 if (FileSystem::Instance().Exists(fspec)) {
343 if (fspec) {
344 if (FileSystem::Instance().Exists(fspec)) {
362 fspec.AppendPathComponent("Developer");
363 if (FileSystem::Instance().Exists(fspec))
364 g_developer_directory = fspec;
[all …]
/llvm-project-15.0.7/lldb/test/API/macosx/lc-note/kern-ver-str/
H A DTestKernVerStrLCNOTE.py95 fspec = self.target.GetModuleAtIndex(0).GetFileSpec()
96 filepath = fspec.GetDirectory() + "/" + fspec.GetFilename()
/llvm-project-15.0.7/lldb/test/API/functionalities/paths/
H A DTestPaths.py72 fspec = lldb.SBFileSpec("C:\\dummy1\\dummy2//unknown_file", True)
75 fspec.GetDirectory()),
77 self.assertEqual(fspec.GetFilename(), "unknown_file")
/llvm-project-15.0.7/lldb/source/Symbol/
H A 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()
H A DSymbol.cpp159 bool Symbol::SetReExportedSymbolSharedLibrary(const FileSpec &fspec) { in SetReExportedSymbolSharedLibrary() argument
164 (uintptr_t)ConstString(fspec.GetPath().c_str()).GetCString()); in SetReExportedSymbolSharedLibrary()
/llvm-project-15.0.7/lldb/unittests/SymbolFile/DWARF/
H A DSymbolFileDWARFTests.cpp60 FileSpec fspec(m_dwarf_test_exe); in TEST_F() local
62 lldb::ModuleSP module = std::make_shared<Module>(fspec, aspec); in TEST_F()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymbol.h137 bool SetReExportedSymbolSharedLibrary(const FileSpec &fspec);
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1946 auto fspec = GetFileSpec().CopyByAppendingPathComponent( in GetGnuDebugDataObjectFile() local
1949 GetModule(), gdd_data_buf, 0, &fspec, 0, gdd_data_buf->GetByteSize())); in GetGnuDebugDataObjectFile()