Searched refs:GetFileSpec (Results 1 - 25 of 92) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBDeclaration.i30 GetFileSpec () const;
60 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
H A DSBLineEntry.i16 print('line entry: %s:%d' % (str(lineEntry.GetFileSpec()),
61 GetFileSpec () const;
91 file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
H A DSBCompileUnit.i23 print('line entry: %s:%d' % (str(lineEntry.GetFileSpec()),
62 GetFileSpec () const;
132 file = property(GetFileSpec, None, doc='''A read only property that returns the same result an lldb object that represents the source file (lldb.SBFileSpec) for the compile unit.''')
H A DSBModuleSpec.i37 A const reference to the file specification object.") GetFileSpec;
39 GetFileSpec ();
49 debugging this is always the same as Module::GetFileSpec(). But
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileAction.h44 const FileSpec &GetFileSpec() const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp87 module_sp->GetFileSpec().GetPath().c_str());
91 module_spec.GetFileSpec() = obj_file->GetFileSpec();
92 FileSystem::Instance().Resolve(module_spec.GetFileSpec());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp229 module_spec_dir, module_spec.GetFileSpec().GetFilename().AsCString());
241 module_spec.GetFileSpec(),
250 cached_module_spec.GetFileSpec() = module_file_path;
251 cached_module_spec.GetPlatformFileSpec() = module_spec.GetFileSpec();
258 FileSpec symfile_spec = GetSymbolFileSpec(cached_module_sp->GetFileSpec());
302 tmp_download_file_spec, module_spec.GetFileSpec());
325 GetSymbolFileSpec(module_spec.GetFileSpec()));
332 FileSpec symfile_spec = GetSymbolFileSpec(cached_module_sp->GetFileSpec());
H A DSectionLoadList.cpp71 section.get(), module_sp->GetFileSpec(), section->GetName(),
110 load_addr, module_sp->GetFileSpec().GetFilename().GetCString(),
112 curr_module_sp->GetFileSpec().GetFilename().GetCString(),
146 section_sp->GetModule()->GetFileSpec());
180 const FileSpec &module_file_spec(section_sp->GetModule()->GetFileSpec());
H A DInstrumentationRuntime.cpp53 const FileSpec &file_spec = module_sp->GetFileSpec();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp80 if (!FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec())) {
81 resolved_module_spec.GetFileSpec().GetPath(exe_path, sizeof(exe_path));
82 resolved_module_spec.GetFileSpec().SetFile(exe_path,
84 FileSystem::Instance().Resolve(resolved_module_spec.GetFileSpec());
87 if (!FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec()))
89 resolved_module_spec.GetFileSpec());
92 Host::ResolveExecutableInBundle(resolved_module_spec.GetFileSpec());
94 if (FileSystem::Instance().Exists(resolved_module_spec.GetFileSpec()))
98 resolved_module_spec.GetFileSpec());
102 resolved_module_spec.GetFileSpec()
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp155 ModuleSpec equivalent_module_spec(module_sp->GetFileSpec(),
586 const FileSpec &module_file_spec = module->GetFileSpec();
732 const FileSpec &module_file_spec = module_spec.GetFileSpec();
758 module_sp->GetFileSpec().GetFilename().GetCString());
810 module_spec.GetFileSpec().GetFilename().AsCString());
815 resolved_module_spec.GetFileSpec() = search_path_spec;
851 if (located_binary_modulespec.GetFileSpec() != module_file_spec) {
853 located_binary_modulespec.GetFileSpec())) {
854 located_binary_modulespec.GetFileSpec().GetPath(path, sizeof(path));
860 located_binary_modulespec.GetFileSpec())) {
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCompileUnit.h31 lldb::SBFileSpec GetFileSpec() const;
H A DSBDeclaration.h32 lldb::SBFileSpec GetFileSpec() const;
H A DSBLineEntry.h36 lldb::SBFileSpec GetFileSpec() const;
H A DSBModuleSpec.h41 lldb::SBFileSpec GetFileSpec();
49 /// debugging this is always the same as Module::GetFileSpec(). But
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFileAction.cpp31 const FileSpec &FileAction::GetFileSpec() const { return m_file_spec; } function in class:FileAction
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DDebugMacros.cpp25 const FileSpec &DebugMacroEntry::GetFileSpec(CompileUnit *comp_unit) const { function in class:DebugMacroEntry
H A DSymbolVendor.cpp45 if (sym_spec && sym_spec != module_sp->GetObjectFile()->GetFileSpec()) {
H A DLocateSymbolFile.cpp155 const FileSpec &exec_fspec = module_spec.GetFileSpec();
233 const FileSpec &exec_fspec = module_spec.GetFileSpec();
247 result.GetFileSpec() = exec_fspec;
267 FileSpec module_file_spec = module_spec.GetFileSpec();
388 // Fill in the module_spec.GetFileSpec() for the object file and/or the
H A DLocateSymbolFileMacOSX.cpp53 return_module_spec.GetFileSpec().Clear();
158 return_module_spec.GetFileSpec() = exec_filespec;
202 return_module_spec.GetFileSpec() = bundle_exe_file_spec;
232 return_module_spec.GetFileSpec() = file_spec;
319 module_spec.GetFileSpec().SetFile(str.c_str(), FileSpec::Style::native);
320 FileSystem::Instance().Resolve(module_spec.GetFileSpec());
335 FileSystem::Instance().Resolve(module_spec.GetFileSpec());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DDebugMacros.h53 const FileSpec &GetFileSpec(CompileUnit *comp_unit) const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBModuleSpec.cpp59 SBFileSpec SBModuleSpec::GetFileSpec() { function in class:SBModuleSpec
60 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBModuleSpec, GetFileSpec);
62 SBFileSpec sb_spec(m_opaque_up->GetFileSpec());
70 m_opaque_up->GetFileSpec() = *sb_spec;
259 LLDB_REGISTER_METHOD(lldb::SBFileSpec, SBModuleSpec, GetFileSpec, ());
H A DSBCompileUnit.cpp47 SBFileSpec SBCompileUnit::GetFileSpec() const { function in class:SBCompileUnit
49 GetFileSpec);
250 LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBCompileUnit, GetFileSpec,
H A DSBLineEntry.cpp85 SBFileSpec SBLineEntry::GetFileSpec() const { function in class:SBLineEntry
86 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFileSpec, SBLineEntry, GetFileSpec);
206 LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBLineEntry, GetFileSpec, ());
H A DSBDeclaration.cpp65 SBFileSpec SBDeclaration::GetFileSpec() const { function in class:SBDeclaration
67 GetFileSpec);
191 LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBDeclaration, GetFileSpec,

Completed in 274 milliseconds

1234