/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Declaration.cpp | 15 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()
|
H A D | Module.cpp | 206 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/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Declaration.h | 44 : 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;
|
H A D | ModuleSpec.h | 36 : 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 …]
|
H A D | Module.h | 151 module_sp->m_file = module_sp->m_objfile_sp->GetFileSpec(); in CreateModuleFromObjectFile() 452 const FileSpec &GetFileSpec() const { return m_file; } 469 return m_file; 538 /// will find the best ObjectFile plug-in that can parse Module::m_file. in GetObjectModificationTime() 541 /// If Module::m_file does not exist, or no plug-in was found 1000 FileSpec m_file; ///< The file representation on disk for this module (if 1012 /// by \a m_file. 1046 FileSpec m_file; ///< The file representation on disk for this module (if global() variable
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_scrub/ |
H A D | zpool_error_scrub_002_pos.ksh | 52 rm -f /$TESTPOOL/10m_file 59 log_must fio --rw=write --name=job --size=10M --filename=/$TESTPOOL/10m_file 63 log_must zinject -t data -e checksum -f 100 -am /$TESTPOOL/10m_file 66 dd if=/$TESTPOOL/10m_file bs=1M count=1 || true 84 dd if=/$TESTPOOL/10m_file bs=1M count=1 || true
|
H A D | zpool_error_scrub_001_pos.ksh | 48 rm -f /$TESTPOOL/10m_file 55 log_must fio --rw=write --name=job --size=10M --filename=/$TESTPOOL/10m_file 59 log_must zinject -t data -e checksum -f 100 -am /$TESTPOOL/10m_file 62 dd if=/$TESTPOOL/10m_file bs=1M count=1 || true
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | OptionGroupOutputFile.h | 32 const OptionValueFileSpec &GetFile() { return m_file; } in GetFile() 37 return m_file.OptionWasSet() || m_append.OptionWasSet(); in AnyOptionWasSet() 41 OptionValueFileSpec m_file;
|
H A D | OptionGroupFile.h | 38 OptionValueFileSpec &GetOptionValue() { return m_file; } in GetOptionValue() 40 const OptionValueFileSpec &GetOptionValue() const { return m_file; } in GetOptionValue() 43 OptionValueFileSpec m_file;
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | SaveCoreOptions.cpp | 34 void SaveCoreOptions::SetOutputFile(FileSpec file) { m_file = file; } in SetOutputFile() 46 return m_file; in GetOutputFile() 50 m_file = std::nullopt; in Clear()
|
H A D | ObjectContainer.cpp | 25 m_file(), // This file can be different than the module's file spec in ObjectContainer() 28 m_file = *file; in ObjectContainer()
|
H A D | ObjectFile.cpp | 255 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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_status/ |
H A D | zpool_status_003_pos.ksh | 57 log_must fio --rw=write --name=job --size=10M --filename=/$TESTPOOL2/10m_file 58 log_must zinject -t data -e checksum -f 100 -am /$TESTPOOL2/10m_file 61 dd if=/$TESTPOOL2/10m_file bs=1M || true
|
H A D | zpool_status_004_pos.ksh | 61 log_must fio --rw=write --name=job --size=10M --filename=/$TESTPOOL2/10m_file 62 log_must zinject -t data -e checksum -f 100 -am /$TESTPOOL2/10m_file 65 dd if=/$TESTPOOL2/10m_file bs=1M || true
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TraceExporter/ctf/ |
H A D | CommandObjectThreadTraceExportCTF.cpp | 35 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()
|
H A D | CommandObjectThreadTraceExportCTF.h | 34 std::string m_file; variable
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | OptionGroupOutputFile.cpp | 42 error = m_file.SetValueFromString(option_arg); in SetOptionValue() 58 m_file.Clear(); in OptionParsingStarting()
|
H A D | OptionGroupFile.cpp | 36 Status error(m_file.SetValueFromString(option_arg)); in SetOptionValue() 42 m_file.Clear(); in OptionParsingStarting()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbIndex.h | 50 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()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
H A D | MinidumpParser.h | 97 llvm::object::MinidumpFile &GetMinidumpFile() { return *m_file; } in GetMinidumpFile() 107 std::unique_ptr<llvm::object::MinidumpFile> m_file; variable
|
H A D | MinidumpParser.cpp | 41 : 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/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | ObjectFile.h | 275 virtual FileSpec &GetFileSpec() { return m_file; } in GetFileSpec() 282 virtual const FileSpec &GetFileSpec() const { return m_file; } in GetFileSpec() 748 FileSpec m_file;
|
H A D | SaveCoreOptions.h | 39 std::optional<lldb_private::FileSpec> m_file; variable
|
H A D | ObjectContainer.h | 134 FileSpec m_file;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
H A D | ObjectFileWasm.cpp | 392 if (m_file) { in ReadImageData() 395 auto buffer_sp = MapFileData(m_file, size, offset); in ReadImageData() 445 m_file.Dump(ostream); in Dump()
|