Home
last modified time | relevance | path

Searched refs:file_spec_ptr (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DCompileUnit.cpp227 const FileSpec *file_spec_ptr, bool exact, in FindLineEntry() argument
229 if (!file_spec_ptr) in FindLineEntry()
230 file_spec_ptr = &GetPrimaryFile(); in FindLineEntry()
232 *file_spec_ptr); in FindLineEntry()
237 SourceLocationSpec location_spec(*file_spec_ptr, line, in FindLineEntry()
H A DObjectFile.cpp242 const FileSpec *file_spec_ptr, in ObjectFile() argument
251 if (file_spec_ptr) in ObjectFile()
252 m_file = *file_spec_ptr; in ObjectFile()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/
H A DSymbolLocatorDebugSymbols.cpp1026 const FileSpec *file_spec_ptr = module_spec.GetFileSpecPtr(); in DownloadObjectAndSymbolFile() local
1040 (!file_spec_ptr || !FileSystem::Instance().Exists(*file_spec_ptr))) in DownloadObjectAndSymbolFile()
1051 file_spec_ptr ? file_spec_ptr->GetPath() : ""; in DownloadObjectAndSymbolFile()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompileUnit.h226 const FileSpec *file_spec_ptr, bool exact,
H A DObjectFile.h99 ObjectFile(const lldb::ModuleSP &module_sp, const FileSpec *file_spec_ptr,
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1346 static void DumpFullpath(Stream &strm, const FileSpec *file_spec_ptr, in DumpFullpath() argument
1348 if (file_spec_ptr) { in DumpFullpath()
1350 std::string fullpath = file_spec_ptr->GetPath(); in DumpFullpath()
1354 file_spec_ptr->Dump(strm.AsRawOstream()); in DumpFullpath()
1363 static void DumpDirectory(Stream &strm, const FileSpec *file_spec_ptr, in DumpDirectory() argument
1365 if (file_spec_ptr) { in DumpDirectory()
1369 file_spec_ptr->GetDirectory().Dump(&strm); in DumpDirectory()
1377 static void DumpBasename(Stream &strm, const FileSpec *file_spec_ptr, in DumpBasename() argument
1379 if (file_spec_ptr) { in DumpBasename()
1381 strm.Printf("%-*s", width, file_spec_ptr->GetFilename().AsCString("")); in DumpBasename()
[all …]