Home
last modified time | relevance | path

Searched refs:dsym_fspec (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/source/Symbol/
H A DLocateSymbolFile.cpp97 dsym_fspec = dsym_directory; in LookForDsymNextToExecutablePath()
98 dsym_fspec.AppendPathComponent(filename.AsCString()); in LookForDsymNextToExecutablePath()
99 if (FileSystem::Instance().Exists(dsym_fspec) && in LookForDsymNextToExecutablePath()
113 dsym_fspec = dsym_directory; in LookForDsymNextToExecutablePath()
114 dsym_fspec.AppendPathComponent(binary_name); in LookForDsymNextToExecutablePath()
115 if (FileSystem::Instance().Exists(dsym_fspec) && in LookForDsymNextToExecutablePath()
116 FileAtPathContainsArchAndUUID(dsym_fspec, in LookForDsymNextToExecutablePath()
136 dsym_fspec = mutable_mod_spec.GetSymbolFileSpec(); in LookForDsymNextToExecutablePath()
165 dsym_fspec.GetPath().c_str()); in LocateDSYMInVincinityOfExecutable()
197 dsym_fspec.GetPath().c_str()); in LocateDSYMInVincinityOfExecutable()
[all …]
H A DLocateSymbolFileMacOSX.cpp309 FileSpec dsym_fspec(Iter->path()); in FindSymbolFileInBundle() local
311 if (ObjectFile::GetModuleSpecifications(dsym_fspec, 0, 0, module_specs)) { in FindSymbolFileInBundle()
322 return dsym_fspec; in FindSymbolFileInBundle()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp120 FileSpec dsym_fspec(module_sp->GetSymbolFileFileSpec()); in CreateInstance() local
123 if (!dsym_fspec) { in CreateInstance()
133 dsym_fspec = in CreateInstance()
140 if (dsym_fspec) { in CreateInstance()
142 std::string dsym_root = dsym_fspec.GetPath(); in CreateInstance()
149 ObjectFile::FindPlugin(module_sp, &dsym_fspec, 0, in CreateInstance()
150 FileSystem::Instance().GetByteSize(dsym_fspec), in CreateInstance()
156 module_sp->SetSymbolFileFileSpec(dsym_fspec); in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/PECOFF/
H A DSymbolVendorPECOFF.cpp89 FileSpec dsym_fspec = in CreateInstance() local
91 if (!dsym_fspec) in CreateInstance()
97 module_sp, &dsym_fspec, 0, FileSystem::Instance().GetByteSize(dsym_fspec), in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp89 FileSpec dsym_fspec = in CreateInstance() local
91 if (!dsym_fspec) in CreateInstance()
97 module_sp, &dsym_fspec, 0, FileSystem::Instance().GetByteSize(dsym_fspec), in CreateInstance()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinKernel.cpp615 FileSpec dsym_fspec = kext_bundle_filepath; in KextHasdSYMSibling() local
616 std::string filename = dsym_fspec.GetFilename().AsCString(); in KextHasdSYMSibling()
618 dsym_fspec.GetFilename() = ConstString(filename); in KextHasdSYMSibling()
619 if (FileSystem::Instance().IsDirectory(dsym_fspec)) { in KextHasdSYMSibling()
632 dsym_fspec.SetFile(deep_bundle_str, FileSpec::Style::native); in KextHasdSYMSibling()
633 FileSystem::Instance().Resolve(dsym_fspec); in KextHasdSYMSibling()
634 if (FileSystem::Instance().IsDirectory(dsym_fspec)) { in KextHasdSYMSibling()
643 dsym_fspec.SetFile(shallow_bundle_str, FileSpec::Style::native); in KextHasdSYMSibling()
644 FileSystem::Instance().Resolve(dsym_fspec); in KextHasdSYMSibling()
645 return FileSystem::Instance().IsDirectory(dsym_fspec); in KextHasdSYMSibling()