Home
last modified time | relevance | path

Searched refs:GetDirectory (Results 1 – 25 of 38) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DHostInfoBase.cpp232 file_spec.GetDirectory() = lldb_file_spec.GetDirectory(); in ComputeSharedLibraryDirectory()
234 return (bool)file_spec.GetDirectory(); in ComputeSharedLibraryDirectory()
252 file_spec.GetDirectory().SetCString(temp_file_spec.GetCString()); in ComputeProcessTempFileDirectory()
275 file_spec.GetDirectory().SetCString(temp_file_spec.GetCString()); in ComputeGlobalTempFileDirectory()
H A DSymbols.cpp268 const ConstString &file_dir = module_file_spec.GetDirectory(); in LocateExecutableSymbolFile()
H A DFileSystem.cpp280 const ConstString &directory = file_spec.GetDirectory(); in ResolveExecutableLocation()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DHostInfoPosix.cpp157 file_spec.GetDirectory().SetString(raw_path); in ComputePathRelativeToLibrary()
158 return (bool)file_spec.GetDirectory(); in ComputePathRelativeToLibrary()
167 file_spec.GetDirectory().SetCString(temp_file.GetPath().c_str()); in ComputeHeaderDirectory()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBFileSpec.cpp96 const char *SBFileSpec::GetDirectory() const { in GetDirectory() function in SBFileSpec
121 m_opaque_ap->GetDirectory().SetCString(directory); in SetDirectory()
123 m_opaque_ap->GetDirectory().Clear(); in SetDirectory()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DFileSpec.cpp363 if (!full && (a.GetDirectory().IsEmpty() || b.GetDirectory().IsEmpty())) in Equal()
389 ConstString &FileSpec::GetDirectory() { return m_directory; } in GetDirectory() function in FileSpec
394 const ConstString &FileSpec::GetDirectory() const { return m_directory; } in GetDirectory() function in FileSpec
567 StringRef dir = F.GetDirectory().GetStringRef(); in format()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverFileLine.cpp132 relative_path = m_file_spec.GetDirectory().GetStringRef(); in FilterContexts()
141 auto sc_dir = sc.line_entry.file.GetDirectory().GetStringRef(); in FilterContexts()
231 search_file_spec.GetDirectory().Clear(); in SearchCallback()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMICmdCmdSymbol.cpp114 const char *source_file_directory = source_file_spec.GetDirectory(); in Execute()
129 if (has_path && (line_spec.GetDirectory() != source_file_directory)) in Execute()
H A DMICmdCmdGdbInfo.cpp203 module.GetFileSpec().GetDirectory()); in PrintFnSharedLibrary()
H A DMICmdCmdMiscellanous.cpp340 const char *pDir = sbTrgt.GetExecutable().GetDirectory(); in Acknowledge()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DFileSpec.h275 ConstString &GetDirectory();
283 const ConstString &GetDirectory() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DPlatform.cpp586 recurse_dst.GetDirectory().SetCString(dst_dir.GetPath().c_str()); in RecurseCopy_Callback()
657 if (dst.GetDirectory()) { in Install()
658 const char first_dst_dir_char = dst.GetDirectory().GetCString()[0]; in Install()
660 fixed_dst.GetDirectory() = dst.GetDirectory(); in Install()
665 if (!fixed_dst.GetDirectory()) { in Install()
671 fixed_dst.GetDirectory() = relative_spec.GetDirectory(); in Install()
681 fixed_dst.GetDirectory().SetCString(working_dir.GetCString()); in Install()
691 fixed_dst.GetDirectory().SetCString(working_dir.GetCString()); in Install()
719 recurse_dst.GetDirectory().SetCString(fixed_dst.GetCString()); in Install()
H A DTargetList.cpp427 if (file.GetDirectory()) { in CreateTargetInternal()
429 file_dir.GetDirectory() = file.GetDirectory(); in CreateTargetInternal()
465 bool full_match = (bool)exe_file_spec.GetDirectory(); in FindTargetWithExecutableAndArchitecture()
H A DModuleCache.cpp144 FileSpec(sysroot_module_path_spec.GetDirectory().AsCString())); in CreateHostSysRootModuleLink()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModuleSpec.h258 !fspec.GetDirectory().IsEmpty())) in Matches()
264 !fspec.GetDirectory().IsEmpty())) in Matches()
271 !fspec.GetDirectory().IsEmpty())) in Matches()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandCompletions.cpp364 m_dir_name = partial_spec.GetDirectory().GetCString(); in SourceFileCompleter()
398 const char *cur_dir_name = context.comp_unit->GetDirectory().GetCString(); in SearchCallback()
504 m_dir_name = partial_spec.GetDirectory().GetCString(); in ModuleCompleter()
518 context.module_sp->GetFileSpec().GetDirectory().GetCString(); in SearchCallback()
H A DCommandObjectSource.cpp167 has_path = (file_spec.GetDirectory().AsCString() != nullptr); in DumpLinesInSymbolContexts()
234 bool has_path = (file_spec.GetDirectory().AsCString() != nullptr); in DumpFileLinesInCompUnit()
806 if (line_entry.file.GetDirectory().GetCString() < in operator <()
807 rhs.line_entry.file.GetDirectory().GetCString()) in operator <()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DFileLineResolver.cpp43 m_file_spec.Compare(*cu, m_file_spec, (bool)m_file_spec.GetDirectory())) { in SearchCallback()
H A DFileSpecList.cpp89 bool compare_filename_only = file_spec.GetDirectory().IsEmpty(); in FindFileIndex()
H A DModule.cpp627 const bool compare_directory = (bool)path.GetDirectory(); in FindCompileUnits()
1606 if (!FileSpec::Equal(file_spec, m_file, (bool)file_spec.GetDirectory()) && in MatchesModuleSpec()
1608 (bool)file_spec.GetDirectory())) in MatchesModuleSpec()
1615 (bool)platform_file_spec.GetDirectory())) in MatchesModuleSpec()
H A DSearchFilter.cpp435 const bool full_match = (bool)spec.GetDirectory(); in ModulePasses()
470 const bool full_match = (bool)m_module_spec.GetDirectory(); in Search()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBFileSpec.h40 const char *GetDirectory() const;
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/
H A Dlldb-platform.cpp100 FileSpec temp_file_spec(file_spec.GetDirectory().AsCString()); in save_socket_id_to_file()
/freebsd-12.1/contrib/llvm/tools/lldb/tools/driver/
H A DDriver.cpp124 if (local_lldbinit.Exists() && strcmp(local_lldbinit.GetDirectory(), in AddLocalLLDBInit()
125 homedir_dot_lldb.GetDirectory()) != 0) { in AddLocalLLDBInit()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompileUnit.cpp281 const bool full_match = (bool)file_spec.GetDirectory(); in ResolveSymbolContext()

12