Home
last modified time | relevance | path

Searched refs:SBFileSpec (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBFileSpec.cpp26 SBFileSpec::SBFileSpec() : m_opaque_ap(new lldb_private::FileSpec()) {} in SBFileSpec() function in SBFileSpec
28 SBFileSpec::SBFileSpec(const SBFileSpec &rhs) in SBFileSpec() function in SBFileSpec
31 SBFileSpec::SBFileSpec(const lldb_private::FileSpec &fspec) in SBFileSpec() function in SBFileSpec
35 SBFileSpec::SBFileSpec(const char *path) : m_opaque_ap(new FileSpec(path)) { in SBFileSpec() function in SBFileSpec
39 SBFileSpec::SBFileSpec(const char *path, bool resolve) in SBFileSpec() function in SBFileSpec
45 SBFileSpec::~SBFileSpec() {} in ~SBFileSpec()
47 const SBFileSpec &SBFileSpec::operator=(const SBFileSpec &rhs) { in operator =()
55 bool SBFileSpec::Exists() const { in Exists()
68 bool SBFileSpec::ResolveExecutableLocation() { in ResolveExecutableLocation()
80 const char *SBFileSpec::GetFilename() const { in GetFilename()
[all …]
H A DSBModuleSpec.cpp38 SBFileSpec SBModuleSpec::GetFileSpec() { in GetFileSpec()
39 SBFileSpec sb_spec(m_opaque_ap->GetFileSpec()); in GetFileSpec()
43 void SBModuleSpec::SetFileSpec(const lldb::SBFileSpec &sb_spec) { in SetFileSpec()
47 lldb::SBFileSpec SBModuleSpec::GetPlatformFileSpec() { in GetPlatformFileSpec()
48 return SBFileSpec(m_opaque_ap->GetPlatformFileSpec()); in GetPlatformFileSpec()
51 void SBModuleSpec::SetPlatformFileSpec(const lldb::SBFileSpec &sb_spec) { in SetPlatformFileSpec()
55 lldb::SBFileSpec SBModuleSpec::GetSymbolFileSpec() { in GetSymbolFileSpec()
56 return SBFileSpec(m_opaque_ap->GetSymbolFileSpec()); in GetSymbolFileSpec()
59 void SBModuleSpec::SetSymbolFileSpec(const lldb::SBFileSpec &sb_spec) { in SetSymbolFileSpec()
H A DSBHostOS.cpp36 SBFileSpec SBHostOS::GetProgramFileSpec() { in GetProgramFileSpec()
37 SBFileSpec sb_filespec; in GetProgramFileSpec()
42 SBFileSpec SBHostOS::GetLLDBPythonPath() { in GetLLDBPythonPath()
46 SBFileSpec SBHostOS::GetLLDBPath(lldb::PathType path_type) { in GetLLDBPath()
80 SBFileSpec sb_fspec; in GetLLDBPath()
85 SBFileSpec SBHostOS::GetUserHomeDirectory() { in GetUserHomeDirectory()
86 SBFileSpec sb_fspec; in GetUserHomeDirectory()
H A DSBCompileUnit.cpp39 SBFileSpec SBCompileUnit::GetFileSpec() const { in GetFileSpec()
40 SBFileSpec file_spec; in GetFileSpec()
81 SBFileSpec *inline_file_spec) const { in FindLineEntryIndex()
87 SBFileSpec *inline_file_spec, in FindLineEntryIndex()
156 SBFileSpec SBCompileUnit::GetSupportFileAtIndex(uint32_t idx) const { in GetSupportFileAtIndex()
159 SBFileSpec sb_file_spec; in GetSupportFileAtIndex()
179 const SBFileSpec &sb_file, in FindSupportFileIndex()
H A DSBFileSpecList.cpp51 void SBFileSpecList::Append(const SBFileSpec &sb_file) { in Append()
55 bool SBFileSpecList::AppendIfUnique(const SBFileSpec &sb_file) { in AppendIfUnique()
61 uint32_t SBFileSpecList::FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, in FindFileIndex()
66 const SBFileSpec SBFileSpecList::GetFileSpecAtIndex(uint32_t idx) const { in GetFileSpecAtIndex()
67 SBFileSpec new_spec; in GetFileSpecAtIndex()
H A DSBModule.cpp74 SBFileSpec SBModule::GetFileSpec() const { in GetFileSpec()
77 SBFileSpec file_spec; in GetFileSpec()
90 lldb::SBFileSpec SBModule::GetPlatformFileSpec() const { in GetPlatformFileSpec()
93 SBFileSpec file_spec; in GetPlatformFileSpec()
106 bool SBModule::SetPlatformFileSpec(const lldb::SBFileSpec &platform_file) { in SetPlatformFileSpec()
124 lldb::SBFileSpec SBModule::GetRemoteInstallFileSpec() { in GetRemoteInstallFileSpec()
125 SBFileSpec sb_file_spec; in GetRemoteInstallFileSpec()
132 bool SBModule::SetRemoteInstallFileSpec(lldb::SBFileSpec &file) { in SetRemoteInstallFileSpec()
257 SBModule::FindCompileUnits(const SBFileSpec &sb_file_spec) { in FindCompileUnits()
572 lldb::SBFileSpec SBModule::GetSymbolFileSpec() const { in GetSymbolFileSpec()
[all …]
H A DSBPlatform.cpp353 SBError SBPlatform::Get(SBFileSpec &src, SBFileSpec &dst) { in Get()
364 SBError SBPlatform::Put(SBFileSpec &src, SBFileSpec &dst) { in Put()
385 SBError SBPlatform::Install(SBFileSpec &src, SBFileSpec &dst) { in Install()
H A DSBDeclaration.cpp56 SBFileSpec SBDeclaration::GetFileSpec() const { in GetFileSpec()
59 SBFileSpec sb_file_spec; in GetFileSpec()
94 void SBDeclaration::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec()
H A DSBLaunchInfo.cpp68 SBFileSpec SBLaunchInfo::GetExecutableFile() { in GetExecutableFile()
69 return SBFileSpec(m_opaque_sp->GetExecutableFile()); in GetExecutableFile()
72 void SBLaunchInfo::SetExecutableFile(SBFileSpec exe_file, in SetExecutableFile()
H A DSBLineEntry.cpp95 SBFileSpec SBLineEntry::GetFileSpec() const { in GetFileSpec()
98 SBFileSpec sb_file_spec; in GetFileSpec()
133 void SBLineEntry::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec()
H A DSBSourceManager.cpp98 const SBFileSpec &file, uint32_t line, uint32_t context_before, in DisplaySourceLinesWithLineNumbers()
107 const SBFileSpec &file, uint32_t line, uint32_t column, in DisplaySourceLinesWithLineNumbersAndColumn()
H A DSBProcessInfo.cpp59 SBFileSpec SBProcessInfo::GetExecutableFile() { in GetExecutableFile()
60 SBFileSpec file_spec; in GetExecutableFile()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBFileSpec.h17 class LLDB_API SBFileSpec {
19 SBFileSpec();
21 SBFileSpec(const lldb::SBFileSpec &rhs);
23 SBFileSpec(const char *path); // Deprecated, use SBFileSpec (const char *path,
26 SBFileSpec(const char *path, bool resolve);
28 ~SBFileSpec();
30 const SBFileSpec &operator=(const lldb::SBFileSpec &rhs);
74 SBFileSpec(const lldb_private::FileSpec &fspec);
H A DSBModuleSpec.h42 lldb::SBFileSpec GetFileSpec();
44 void SetFileSpec(const lldb::SBFileSpec &fspec);
61 lldb::SBFileSpec GetPlatformFileSpec();
63 void SetPlatformFileSpec(const lldb::SBFileSpec &fspec);
65 lldb::SBFileSpec GetSymbolFileSpec();
67 void SetSymbolFileSpec(const lldb::SBFileSpec &fspec);
H A DSBModule.h49 lldb::SBFileSpec GetFileSpec() const;
66 lldb::SBFileSpec GetPlatformFileSpec() const;
68 bool SetPlatformFileSpec(const lldb::SBFileSpec &platform_file);
82 lldb::SBFileSpec GetRemoteInstallFileSpec();
102 bool SetRemoteInstallFileSpec(lldb::SBFileSpec &file);
145 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec);
309 lldb::SBFileSpec GetSymbolFileSpec() const;
H A DSBPlatform.h128 SBError Put(SBFileSpec &src, SBFileSpec &dst);
130 SBError Get(SBFileSpec &src, SBFileSpec &dst);
132 SBError Install(SBFileSpec &src, SBFileSpec &dst);
H A DSBCompileUnit.h30 lldb::SBFileSpec GetFileSpec() const;
37 lldb::SBFileSpec *inline_file_spec) const;
40 lldb::SBFileSpec *inline_file_spec,
43 SBFileSpec GetSupportFileAtIndex(uint32_t idx) const;
47 uint32_t FindSupportFileIndex(uint32_t start_idx, const SBFileSpec &sb_file,
H A DSBHostOS.h20 static lldb::SBFileSpec GetProgramFileSpec();
22 static lldb::SBFileSpec GetLLDBPythonPath();
24 static lldb::SBFileSpec GetLLDBPath(lldb::PathType path_type);
26 static lldb::SBFileSpec GetUserHomeDirectory();
H A DSBFileSpecList.h32 void Append(const SBFileSpec &sb_file);
34 bool AppendIfUnique(const SBFileSpec &sb_file);
38 uint32_t FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, bool full);
40 const SBFileSpec GetFileSpecAtIndex(uint32_t idx) const;
H A DSBTarget.h294 lldb::SBFileSpec GetExecutable();
318 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec);
333 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec);
597 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
601 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
605 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
668 const SBFileSpec &source_file,
731 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
751 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
764 lldb::SBError BreakpointsWriteToFile(SBFileSpec &dest_file);
[all …]
H A DSBProcess.h284 uint32_t LoadImage(lldb::SBFileSpec &remote_image_spec, lldb::SBError &error);
312 uint32_t LoadImage(const lldb::SBFileSpec &local_image_spec,
313 const lldb::SBFileSpec &remote_image_spec,
345 uint32_t LoadImageUsingPaths(const lldb::SBFileSpec &image_spec,
347 lldb::SBFileSpec &loaded_path,
H A DSBSourceManager.h30 const lldb::SBFileSpec &file, uint32_t line, uint32_t context_before,
34 const lldb::SBFileSpec &file, uint32_t line, uint32_t column,
H A DSBDeclaration.h31 lldb::SBFileSpec GetFileSpec() const;
37 void SetFileSpec(lldb::SBFileSpec filespec);
H A DSBLineEntry.h35 lldb::SBFileSpec GetFileSpec() const;
41 void SetFileSpec(lldb::SBFileSpec filespec);
H A DSBLaunchInfo.h44 SBFileSpec GetExecutableFile();
69 void SetExecutableFile(SBFileSpec exe_file, bool add_as_first_arg);

12