Searched refs:file_spec_ptr (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | CompileUnit.cpp | 227 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 D | LocateSymbolFileMacOSX.cpp |
|
H A D | ObjectFile.cpp | 251 const FileSpec *file_spec_ptr, in ObjectFile() argument 260 if (file_spec_ptr) in ObjectFile() 261 m_file = *file_spec_ptr; in ObjectFile()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/DebugSymbols/ |
H A D | SymbolLocatorDebugSymbols.cpp | 1030 const FileSpec *file_spec_ptr = module_spec.GetFileSpecPtr(); in DownloadObjectAndSymbolFile() local 1044 (!file_spec_ptr || !FileSystem::Instance().Exists(*file_spec_ptr))) in DownloadObjectAndSymbolFile() 1058 lookup_arg = file_spec_ptr ? file_spec_ptr->GetPath() : ""; in DownloadObjectAndSymbolFile() 1070 if (uuid_ptr && file_spec_ptr) in DownloadObjectAndSymbolFile() 1072 llvm::formatv("{0} ({1})", file_spec_ptr->GetFilename().GetString(), in DownloadObjectAndSymbolFile() 1076 else if (file_spec_ptr) in DownloadObjectAndSymbolFile() 1077 lookup_desc = file_spec_ptr->GetFilename().GetString(); in DownloadObjectAndSymbolFile()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | CompileUnit.h | 193 /// that matches \a line. If \a file_spec_ptr is NULL, then the search 195 /// If \a file_spec_ptr is not NULL, line entries must match the specified 208 /// \param[in] file_spec_ptr 226 const FileSpec *file_spec_ptr, bool exact,
|
H A D | ObjectFile.h | 99 ObjectFile(const lldb::ModuleSP &module_sp, const FileSpec *file_spec_ptr,
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 1303 static void DumpFullpath(Stream &strm, const FileSpec *file_spec_ptr, in DumpFullpath() argument 1305 if (file_spec_ptr) { in DumpFullpath() 1307 std::string fullpath = file_spec_ptr->GetPath(); in DumpFullpath() 1311 file_spec_ptr->Dump(strm.AsRawOstream()); in DumpFullpath() 1320 static void DumpDirectory(Stream &strm, const FileSpec *file_spec_ptr, in DumpDirectory() argument 1322 if (file_spec_ptr) { in DumpDirectory() 1324 strm.Printf("%-*s", width, file_spec_ptr->GetDirectory().AsCString("")); in DumpDirectory() 1326 file_spec_ptr->GetDirectory().Dump(&strm); in DumpDirectory() 1334 static void DumpBasename(Stream &strm, const FileSpec *file_spec_ptr, in DumpBasename() argument 1336 if (file_spec_ptr) { in DumpBasename() [all …]
|