Searched refs:file_spec_ptr (Results 1 – 6 of 6) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompileUnit.cpp | 219 const FileSpec *file_spec_ptr, bool exact, in FindLineEntry() argument 221 if (!file_spec_ptr) in FindLineEntry() 222 file_spec_ptr = &GetPrimaryFile(); in FindLineEntry() 223 std::vector<uint32_t> file_indexes = FindFileIndexes(GetSupportFiles(), *file_spec_ptr); in FindLineEntry() 228 SourceLocationSpec location_spec(*file_spec_ptr, line, /*column=*/llvm::None, in FindLineEntry()
|
| H A D | LocateSymbolFileMacOSX.cpp | 473 const FileSpec *file_spec_ptr = module_spec.GetFileSpecPtr(); in DownloadObjectAndSymbolFile() local 524 (file_spec_ptr && FileSystem::Instance().Exists(*file_spec_ptr))) { in DownloadObjectAndSymbolFile() 586 if (file_spec_ptr) in DownloadObjectAndSymbolFile() 587 file_spec_ptr->GetPath(file_path, sizeof(file_path)); in DownloadObjectAndSymbolFile()
|
| H A D | ObjectFile.cpp | 238 const FileSpec *file_spec_ptr, in ObjectFile() argument 248 if (file_spec_ptr) in ObjectFile() 249 m_file = *file_spec_ptr; in ObjectFile()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompileUnit.h | 223 const FileSpec *file_spec_ptr, bool exact,
|
| H A D | ObjectFile.h | 115 ObjectFile(const lldb::ModuleSP &module_sp, const FileSpec *file_spec_ptr,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 1327 static void DumpFullpath(Stream &strm, const FileSpec *file_spec_ptr, in DumpFullpath() argument 1329 if (file_spec_ptr) { in DumpFullpath() 1331 std::string fullpath = file_spec_ptr->GetPath(); in DumpFullpath() 1335 file_spec_ptr->Dump(strm.AsRawOstream()); in DumpFullpath() 1344 static void DumpDirectory(Stream &strm, const FileSpec *file_spec_ptr, in DumpDirectory() argument 1346 if (file_spec_ptr) { in DumpDirectory() 1350 file_spec_ptr->GetDirectory().Dump(&strm); in DumpDirectory() 1358 static void DumpBasename(Stream &strm, const FileSpec *file_spec_ptr, in DumpBasename() argument 1360 if (file_spec_ptr) { in DumpBasename() 1362 strm.Printf("%-*s", width, file_spec_ptr->GetFilename().AsCString("")); in DumpBasename() [all …]
|