Home
last modified time | relevance | path

Searched refs:m_file (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
HDDeclaration.cpp15 if (m_file) { in Dump()
18 *s << m_file; in Dump()
20 *s << m_file.GetFilename(); in Dump()
36 if (m_file) { in DumpStopContext()
38 *s << m_file; in DumpStopContext()
40 m_file.GetFilename().Dump(s); in DumpStopContext()
59 int result = FileSpec::Compare(a.m_file, b.m_file, true); in Compare()
74 int file_compare = FileSpec::Compare(this->m_file, declaration.m_file, true); in FileAndLineEqual()
HDModule.cpp206 m_file = module_spec.GetFileSpec(); in Module()
208 m_file = matching_module_spec.GetFileSpec(); in Module()
239 m_arch(arch), m_file(file_spec), m_object_name(object_name), in Module()
253 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in Module()
281 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in ~Module()
950 SearchFilterByModule filter(target_sp, m_file); in FindAddressesForLine()
1030 m_file = file; in SetFileSpecAndObjectName()
1055 const char *filename = m_file.GetFilename().GetCString(); in GetDescription()
1060 if (m_file.GetPath(path, sizeof(path))) in GetDescription()
1076 (FileSystem::Instance().GetModificationTime(m_file) != m_mod_time); in FileHasChanged()
[all …]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDDeclaration.h44 : m_file(file_spec), m_line(line), m_column(column) {} in m_file() function
58 m_file.Clear(); in Clear()
107 FileSpec &GetFile() { return m_file; } in GetFile()
113 const FileSpec &GetFile() const { return m_file; } in GetFile()
146 return m_file && m_line != 0 && m_line != LLDB_INVALID_LINE_NUMBER; in IsValid()
161 void SetFile(const FileSpec &file_spec) { m_file = file_spec; } in SetFile()
180 FileSpec m_file;
HDModuleSpec.h36 : m_file(file_spec), m_uuid(uuid), m_object_offset(0), m_data(data) { in m_file() function
39 else if (m_file) in m_file()
44 : m_file(file_spec), m_arch(arch), m_object_offset(0), in ModuleSpec()
47 FileSpec *GetFileSpecPtr() { return (m_file ? &m_file : nullptr); } in GetFileSpecPtr()
50 return (m_file ? &m_file : nullptr); in GetFileSpecPtr()
53 FileSpec &GetFileSpec() { return m_file; } in GetFileSpec()
55 const FileSpec &GetFileSpec() const { return m_file; } in GetFileSpec()
130 m_file.Clear(); in Clear()
143 if (m_file)
164 if (m_file) { in Dump()
[all …]
HDModule.h151 module_sp->m_file = module_sp->m_objfile_sp->GetFileSpec(); in CreateModuleFromObjectFile()
452 const FileSpec &GetFileSpec() const { return m_file; } in GetFileSpec()
469 return m_file; in GetPlatformFileSpec()
1000 FileSpec m_file; ///< The file representation on disk for this module (if variable
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
HDOptionGroupOutputFile.h32 const OptionValueFileSpec &GetFile() { return m_file; } in GetFile()
37 return m_file.OptionWasSet() || m_append.OptionWasSet(); in AnyOptionWasSet()
41 OptionValueFileSpec m_file;
HDOptionGroupFile.h38 OptionValueFileSpec &GetOptionValue() { return m_file; } in GetOptionValue()
40 const OptionValueFileSpec &GetOptionValue() const { return m_file; } in GetOptionValue()
43 OptionValueFileSpec m_file;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
HDSaveCoreOptions.cpp34 void SaveCoreOptions::SetOutputFile(FileSpec file) { m_file = file; } in SetOutputFile()
46 return m_file; in GetOutputFile()
50 m_file = std::nullopt; in Clear()
HDObjectContainer.cpp25 m_file(), // This file can be different than the module's file spec in ObjectContainer()
28 m_file = *file; in ObjectContainer()
HDObjectFile.cpp255 m_file(), // This file could be different from the original module's file in ObjectFile()
261 m_file = *file_spec_ptr; in ObjectFile()
270 m_file ? m_file.GetPath().c_str() : "<NULL>", m_file_offset, in ObjectFile()
277 : ModuleChild(module_sp), m_file(), m_type(eTypeInvalid), in ObjectFile()
771 strm.Format("{0}-{1}-{2}", m_file, GetType(), GetStrata()); in GetCacheHash()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/
HDCommandObjectThreadTraceExportCTF.cpp35 m_file.assign(std::string(option_arg)); in SetOptionValue()
56 m_file.clear(); in OptionParsingStarting()
88 return htr.Export(m_options.m_file); in DoExecute()
HDCommandObjectThreadTraceExportCTF.h34 std::string m_file; variable
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
HDOptionGroupOutputFile.cpp42 error = m_file.SetValueFromString(option_arg); in SetOptionValue()
58 m_file.Clear(); in OptionParsingStarting()
HDOptionGroupFile.cpp36 Status error(m_file.SetValueFromString(option_arg)); in SetOptionValue()
42 m_file.Clear(); in OptionParsingStarting()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
HDPdbIndex.h50 llvm::pdb::PDBFile *m_file = nullptr; variable
118 llvm::pdb::PDBFile &pdb() { return *m_file; } in pdb()
119 const llvm::pdb::PDBFile &pdb() const { return *m_file; } in pdb()
HDPdbIndex.cpp57 result->m_file = file; in create()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
HDMinidumpParser.h97 llvm::object::MinidumpFile &GetMinidumpFile() { return *m_file; } in GetMinidumpFile()
107 std::unique_ptr<llvm::object::MinidumpFile> m_file; variable
HDMinidumpParser.cpp41 : m_data_sp(std::move(data_sp)), m_file(std::move(file)) {} in MinidumpParser()
49 return m_file->getRawStream(stream_type).value_or(llvm::ArrayRef<uint8_t>()); in GetStream()
141 llvm::Expected<const SystemInfo &> system_info = m_file->getSystemInfo(); in GetArchitecture()
200 auto ExpectedCSD = m_file->getString(system_info->CSDVersionRVA); in GetArchitecture()
369 auto ExpectedName = m_file->getString(module.ModuleNameRVA); in GetFilteredModuleList()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDObjectFile.h275 virtual FileSpec &GetFileSpec() { return m_file; } in GetFileSpec()
282 virtual const FileSpec &GetFileSpec() const { return m_file; } in GetFileSpec()
748 FileSpec m_file;
HDSaveCoreOptions.h39 std::optional<lldb_private::FileSpec> m_file; variable
HDObjectContainer.h134 FileSpec m_file;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
HDObjectFileWasm.cpp392 if (m_file) { in ReadImageData()
395 auto buffer_sp = MapFileData(m_file, size, offset); in ReadImageData()
445 m_file.Dump(ostream); in Dump()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
HDObjectFilePDB.cpp77 m_file_up = loadPDBFile(m_file.GetPath(), m_allocator); in initPDBFile()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
HDObjectContainerBSDArchive.cpp373 m_file, module_sp->GetArchitecture(), in ParseHeader()
407 object->ar_name.GetStringRef(), m_file); in GetObjectFile()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
HDObjectFileCOFF.cpp154 *stream << ", file = '" << m_file in Dump()

12