Searched refs:m_file (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDeclaration.h28 : m_file(), m_line(0)
50 : m_file(file_spec), m_line(line)
60 : m_file(), m_line(0)
75 m_file.Clear();
138 FileSpec &GetFile() { return m_file; }
144 const FileSpec &GetFile() const { return m_file; }
153 bool IsValid() const { return m_file && m_line != 0; }
180 void SetFile(const FileSpec &file_spec) { m_file = file_spec; }
191 FileSpec m_file; ///< The file specification that points to the member in class:lldb_private::Declaration
H A DObjectContainer.h41 m_file(), // This file can be different than the module's file spec
44 m_file = *file;
161 FileSpec m_file; ///< The file that represents this container objects (which member in class:lldb_private::ObjectContainer
H A DObjectFile.h279 virtual FileSpec &GetFileSpec() { return m_file; }
286 virtual const FileSpec &GetFileSpec() const { return m_file; }
655 FileSpec m_file; member in class:lldb_private::ObjectFile
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DDeclaration.cpp15 if (m_file) {
18 *s << m_file; local
20 *s << m_file.GetFilename();
43 if (m_file) {
45 *s << m_file; local
47 m_file.GetFilename().Dump(s);
70 int result = FileSpec::Compare(a.m_file, b.m_file, true);
87 int file_compare = FileSpec::Compare(this->m_file, declaration.m_file, tru
[all...]
H A DObjectFile.cpp265 m_file(), // This file could be different from the original module's file
271 m_file = *file_spec_ptr;
280 m_file ? m_file.GetPath().c_str() : "<NULL>", m_file_offset,
287 : ModuleChild(module_sp), m_file(), m_type(eTypeInvalid),
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionGroupOutputFile.h33 const OptionValueFileSpec &GetFile() { return m_file; }
38 return m_file.OptionWasSet() || m_append.OptionWasSet();
42 OptionValueFileSpec m_file; member in class:lldb_private::OptionGroupOutputFile
H A DOptionGroupFile.h39 OptionValueFileSpec &GetOptionValue() { return m_file; }
41 const OptionValueFileSpec &GetOptionValue() const { return m_file; }
44 OptionValueFileSpec m_file; member in class:lldb_private::OptionGroupFile
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupOutputFile.cpp17 : m_file(), m_append(false, false) {}
45 error = m_file.SetValueFromString(option_arg);
61 m_file.Clear();
H A DOptionGroupFile.cpp21 : m_file() {
39 Status error(m_file.SetValueFromString(option_arg));
45 m_file.Clear();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h29 : m_file(), m_platform_file(), m_symbol_file(), m_arch(), m_uuid(),
34 : m_file(file_spec), m_platform_file(), m_symbol_file(), m_arch(),
40 : m_file(file_spec), m_platform_file(), m_symbol_file(), m_arch(arch),
46 : m_file(rhs.m_file), m_platform_file(rhs.m_platform_file),
55 m_file = rhs.m_file;
69 FileSpec *GetFileSpecPtr() { return (m_file ? &m_file : nullptr); }
72 return (m_file
186 strm << m_file; local
282 FileSpec m_file; member in class:lldb_private::ModuleSpec
[all...]
H A DModule.h137 module_sp->m_file = module_sp->m_objfile_sp->GetFileSpec();
463 const FileSpec &GetFileSpec() const { return m_file; }
480 return m_file;
548 /// will find the best ObjectFile plug-in that can parse Module::m_file.
551 /// If Module::m_file does not exist, or no plug-in was found
939 FileSpec m_file; ///< The file representation on disk for this module (if member in class:lldb_private::Module
951 ///by \a m_file.
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbIndex.h51 std::unique_ptr<llvm::pdb::PDBFile> m_file; member in class:lldb_private::npdb::PdbIndex
120 llvm::pdb::PDBFile &pdb() { return *m_file; }
121 const llvm::pdb::PDBFile &pdb() const { return *m_file; }
H A DPdbIndex.cpp56 result->m_file = std::move(file);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.h97 llvm::object::MinidumpFile &GetMinidumpFile() { return *m_file; }
105 std::unique_ptr<llvm::object::MinidumpFile> m_file; member in class:lldb_private::minidump::MinidumpParser
H A DMinidumpParser.cpp39 : m_data_sp(std::move(data_sp)), m_file(std::move(file)) {}
47 return m_file->getRawStream(stream_type)
151 llvm::Expected<const SystemInfo &> system_info = m_file->getSystemInfo();
211 auto ExpectedCSD = m_file->getString(system_info->CSDVersionRVA);
286 auto ExpectedName = m_file->getString(module.ModuleNameRVA);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp190 m_file = module_spec.GetFileSpec();
192 m_file = matching_module_spec.GetFileSpec();
223 m_file(file_spec), m_object_offset(object_offset),
241 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(",
273 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(",
908 SearchFilterByModule filter(target_sp, m_file);
1045 m_file = file;
1072 const char *filename = m_file.GetFilename().GetCString();
1077 if (m_file.GetPath(path, sizeof(path)))
1110 (FileSystem::Instance().GetModificationTime(m_file) !
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp386 m_file, module_sp->GetArchitecture(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp3611 m_file.SetFile(option_arg, FileSpec::Style::native);
3664 m_file.Clear();
3680 FileSpec m_file; // Files for file lookups member in class:CommandObjectTargetModulesLookup::CommandOptions
3790 if (m_options.m_file) {
3793 m_options.m_file, m_options.m_line_number,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp633 m_file = *file;
1967 ConstString file_extension = m_file.GetFileNameExtension();
2945 *s << ", file = '" << m_file

Completed in 248 milliseconds