Home
last modified time | relevance | path

Searched refs:GetFilename (Results 1 – 25 of 67) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolLocator/Default/
H A DSymbolLocatorDefault.cpp76 exec_fspec ? exec_fspec.GetFilename().AsCString("<NULL>") : "<NULL>", in LocateExecutableObjectFile()
103 module_spec.GetFileSpec().GetFilename().AsCString("<Unknown>")); in LocateExecutableSymbolFile()
172 if (symbol_file_spec.GetFilename()) { in LocateExecutableSymbolFile()
174 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile()
176 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile()
182 symbol_file_spec.GetFilename().GetCString()); in LocateExecutableSymbolFile()
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DAddressResolverFileLine.cpp59 m_src_location_spec.GetFileSpec().GetFilename().AsCString( in SearchCallback()
74 m_src_location_spec.GetFileSpec().GetFilename().AsCString("<Unknown>"), in GetDescription()
H A DDeclaration.cpp20 *s << m_file.GetFilename(); in Dump()
40 m_file.GetFilename().Dump(s); in DumpStopContext()
H A DSearchFilter.cpp442 s->PutCString(m_module_spec.GetFilename().AsCString("<Unknown>")); in GetDescription()
560 m_module_spec_list.GetFileSpecAtIndex(0).GetFilename().AsCString( in GetDescription()
568 m_module_spec_list.GetFileSpecAtIndex(i).GetFilename().AsCString( in GetDescription()
778 m_module_spec_list.GetFileSpecAtIndex(0).GetFilename().AsCString( in GetDescription()
784 m_module_spec_list.GetFileSpecAtIndex(i).GetFilename().AsCString( in GetDescription()
H A DAddressRange.cpp186 s->Printf("%s", module_sp->GetFileSpec().GetFilename().AsCString( in Dump()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp108 const char *SBFileSpec::GetFilename() const { in GetFilename() function in SBFileSpec
111 return m_opaque_up->GetFilename().AsCString(); in GetFilename()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp46 return m_executable.GetFilename().GetCString(); in GetName()
50 return m_executable.GetFilename().GetStringRef(); in GetNameAsStringRef()
128 s.Printf(" name = %s\n", m_executable.GetFilename().GetCString()); in Dump()
H A DFileSpecList.cpp81 if (ConstString::Equals(ith.GetFilename(), file_spec.GetFilename(), in FindFileIndex()
H A DFileSpec.cpp304 if (pattern.GetFilename()) in Match()
543 StringRef file = F.GetFilename().GetStringRef(); in format()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.cpp81 file->GetFilename().GetStringRef()}; in CreateInstance()
114 file.GetFilename().GetStringRef()}; in GetModuleSpecifications()
120 file.GetFilename()); in GetModuleSpecifications()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DAssertFrameRecognizer.cpp102 location.module_spec.GetFilename(), location.symbols, in RegisterAssertFrameRecognizer()
107 for (char c : location.module_spec.GetFilename().GetStringRef()) { in RegisterAssertFrameRecognizer()
H A DInstrumentationRuntime.cpp58 if (runtime_regex.Execute(file_spec.GetFilename().GetCString()) || in ModulesDidLoad()
H A DPlatform.cpp433 if (!dst_dir.GetFilename()) in RecurseCopy_Callback()
434 dst_dir.SetFilename(src.GetFilename()); in RecurseCopy_Callback()
465 if (!dst_file.GetFilename()) in RecurseCopy_Callback()
466 dst_file.SetFilename(src.GetFilename()); in RecurseCopy_Callback()
487 if (!dst_file.GetFilename()) in RecurseCopy_Callback()
488 dst_file.SetFilename(src.GetFilename()); in RecurseCopy_Callback()
514 if (!fixed_dst.GetFilename()) in Install()
515 fixed_dst.SetFilename(src.GetFilename()); in Install()
1862 target_file.AppendPathComponent(local_file.GetFilename().AsCString()); in LoadImage()
1897 file_to_use = FileSpec(remote_filename.GetFilename().GetStringRef(), in LoadImageUsingPaths()
H A DSectionLoadList.cpp111 load_addr, module_sp->GetFileSpec().GetFilename().GetCString(), in SetSectionLoadAddress()
113 curr_module_sp->GetFileSpec().GetFilename().GetCString(), in SetSectionLoadAddress()
H A DModuleCache.cpp197 JoinPath(module_spec_dir, target_file.GetFilename().AsCString()); in Put()
230 module_spec_dir, module_spec.GetFileSpec().GetFilename().AsCString()); in Get()
H A DStackFrameRecognizer.cpp115 ConstString module_name = module_sp->GetFileSpec().GetFilename(); in GetRecognizerForFrame()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBFileSpecExtensions.i12 …basename = property(GetFilename, None, doc='''A read only property that returns the path basename …
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp171 ConstString module_file_name = module->GetFileSpec().GetFilename(); in DumpLinesInSymbolContexts()
205 assert(file_spec.GetFilename().AsCString()); in DumpFileLinesInCompUnit()
216 ConstString file_spec_name = file_spec.GetFilename(); in DumpFileLinesInCompUnit()
217 ConstString module_file_name = module->GetFileSpec().GetFilename(); in DumpFileLinesInCompUnit()
248 << cu->GetPrimaryFile().GetFilename() << " in `" in DumpFileLinesInCompUnit()
766 if (line_entry.file.GetFilename().GetCString() < in operator <()
767 rhs.line_entry.file.GetFilename().GetCString()) in operator <()
H A DCommandCompletions.cpp140 m_file_name = partial_spec.GetFilename().GetCString(); in SourceFileCompleter()
151 context.comp_unit->GetPrimaryFile().GetFilename().GetCString(); in SearchCallback()
176 m_matching_files.GetFileSpecAtIndex(i).GetFilename().GetCString()); in DoCompletion()
266 m_file_name = partial_spec.GetFilename().GetCString(); in ModuleCompleter()
277 context.module_sp->GetFileSpec().GetFilename().GetCString(); in SearchCallback()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFileSpec.h46 const char *GetFilename() const;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp202 item.second.GetName(), item.first->GetFileSpec().GetFilename()); in FindCompleteType()
667 module_sp->GetFileSpec().GetFilename()); in FillNamespaceMap()
703 image->GetFileSpec().GetFilename()); in FillNamespaceMap()
1392 i->second.GetName(), i->first->GetFileSpec().GetFilename()); in LookupInNamespace()
1643 module_sp->GetFileSpec().GetFilename()); in CompleteNamespaceMap()
1668 image->GetFileSpec().GetFilename()); in CompleteNamespaceMap()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h240 const ConstString &GetFilename() const { return m_filename; } in GetFilename() function
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp258 if (file_spec.GetFilename().IsEmpty()) in Resolve()
325 ConstString filename = file_spec.GetFilename(); in ResolveExecutableLocation()
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp78 process_info.GetExecutableFile().GetFilename().GetCString(), in GetOpenBSDProcessArgs()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp47 llvm::StringRef filename = module_file_spec.GetFilename().GetStringRef(); in CanModuleBeGNUstepObjCLibrary()

123