/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBFileSpec.cpp | 26 SBFileSpec::SBFileSpec() : m_opaque_up(new lldb_private::FileSpec()) { in SBFileSpec() function in SBFileSpec 30 SBFileSpec::SBFileSpec(const SBFileSpec &rhs) { in SBFileSpec() function in SBFileSpec 36 SBFileSpec::SBFileSpec(const lldb_private::FileSpec &fspec) in SBFileSpec() function in SBFileSpec 40 SBFileSpec::SBFileSpec(const char *path) : m_opaque_up(new FileSpec(path)) { in SBFileSpec() function in SBFileSpec 46 SBFileSpec::SBFileSpec(const char *path, bool resolve) in SBFileSpec() function in SBFileSpec 54 SBFileSpec::~SBFileSpec() = default; 56 const SBFileSpec &SBFileSpec::operator=(const SBFileSpec &rhs) { in operator =() 64 bool SBFileSpec::operator==(const SBFileSpec &rhs) const { in operator ==() 70 bool SBFileSpec::operator!=(const SBFileSpec &rhs) const { in operator !=() 76 bool SBFileSpec::IsValid() const { in IsValid() [all …]
|
H A D | SBModuleSpec.cpp | 63 SBFileSpec SBModuleSpec::GetFileSpec() { in GetFileSpec() 66 SBFileSpec sb_spec(m_opaque_up->GetFileSpec()); in GetFileSpec() 70 void SBModuleSpec::SetFileSpec(const lldb::SBFileSpec &sb_spec) { in SetFileSpec() 76 lldb::SBFileSpec SBModuleSpec::GetPlatformFileSpec() { in GetPlatformFileSpec() 79 return SBFileSpec(m_opaque_up->GetPlatformFileSpec()); in GetPlatformFileSpec() 82 void SBModuleSpec::SetPlatformFileSpec(const lldb::SBFileSpec &sb_spec) { in SetPlatformFileSpec() 88 lldb::SBFileSpec SBModuleSpec::GetSymbolFileSpec() { in GetSymbolFileSpec() 91 return SBFileSpec(m_opaque_up->GetSymbolFileSpec()); in GetSymbolFileSpec() 94 void SBModuleSpec::SetSymbolFileSpec(const lldb::SBFileSpec &sb_spec) { in SetSymbolFileSpec()
|
H A D | SBHostOS.cpp | 32 SBFileSpec SBHostOS::GetProgramFileSpec() { in GetProgramFileSpec() 35 SBFileSpec sb_filespec; in GetProgramFileSpec() 40 SBFileSpec SBHostOS::GetLLDBPythonPath() { in GetLLDBPythonPath() 46 SBFileSpec SBHostOS::GetLLDBPath(lldb::PathType path_type) { in GetLLDBPath() 82 SBFileSpec sb_fspec; in GetLLDBPath() 87 SBFileSpec SBHostOS::GetUserHomeDirectory() { in GetUserHomeDirectory() 94 SBFileSpec sb_fspec; in GetUserHomeDirectory()
|
H A D | SBFileSpecList.cpp | 50 void SBFileSpecList::Append(const SBFileSpec &sb_file) { in Append() 56 bool SBFileSpecList::AppendIfUnique(const SBFileSpec &sb_file) { in AppendIfUnique() 68 uint32_t SBFileSpecList::FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, in FindFileIndex() 75 const SBFileSpec SBFileSpecList::GetFileSpecAtIndex(uint32_t idx) const { in GetFileSpecAtIndex() 78 SBFileSpec new_spec; in GetFileSpecAtIndex()
|
H A D | SBCompileUnit.cpp | 43 SBFileSpec SBCompileUnit::GetFileSpec() const { in GetFileSpec() 46 SBFileSpec file_spec; in GetFileSpec() 95 SBFileSpec *inline_file_spec) const { in FindLineEntryIndex() 103 SBFileSpec *inline_file_spec, in FindLineEntryIndex() 156 SBFileSpec SBCompileUnit::GetSupportFileAtIndex(uint32_t idx) const { in GetSupportFileAtIndex() 159 SBFileSpec sb_file_spec; in GetSupportFileAtIndex() 169 const SBFileSpec &sb_file, in FindSupportFileIndex()
|
H A D | SBSaveCoreOptions.cpp | 54 void SBSaveCoreOptions::SetOutputFile(lldb::SBFileSpec file_spec) { in SetOutputFile() 67 SBFileSpec SBSaveCoreOptions::GetOutputFile() const { in GetOutputFile() 71 return SBFileSpec(file_spec.value()); in GetOutputFile() 72 return SBFileSpec(); in GetOutputFile()
|
H A D | SBModule.cpp | 11 #include "lldb/API/SBFileSpec.h" 105 SBFileSpec SBModule::GetFileSpec() const { in GetFileSpec() 108 SBFileSpec file_spec; in GetFileSpec() 116 lldb::SBFileSpec SBModule::GetPlatformFileSpec() const { in GetPlatformFileSpec() 119 SBFileSpec file_spec; in GetPlatformFileSpec() 127 bool SBModule::SetPlatformFileSpec(const lldb::SBFileSpec &platform_file) { in SetPlatformFileSpec() 141 lldb::SBFileSpec SBModule::GetRemoteInstallFileSpec() { in GetRemoteInstallFileSpec() 144 SBFileSpec sb_file_spec; in GetRemoteInstallFileSpec() 151 bool SBModule::SetRemoteInstallFileSpec(lldb::SBFileSpec &file) { in SetRemoteInstallFileSpec() 275 SBSymbolContextList SBModule::FindCompileUnits(const SBFileSpec [all...] |
H A D | SBTrace.cpp | 32 const SBFileSpec &trace_description_file) { in LoadTraceFromFile() 67 SBFileSpec SBTrace::SaveToDisk(SBError &error, const SBFileSpec &bundle_dir, in SaveToDisk() 72 SBFileSpec file_spec; in SaveToDisk()
|
H A D | SBPlatform.cpp | 13 #include "lldb/API/SBFileSpec.h" 498 SBError SBPlatform::Get(SBFileSpec &src, SBFileSpec &dst) { in Get() 511 SBError SBPlatform::Put(SBFileSpec &src, SBFileSpec &dst) { in Put() 533 SBError SBPlatform::Install(SBFileSpec &src, SBFileSpec &dst) { in Install() 714 // because of the SBModuleSpec and SBFileSpec dependencies. Use a lambda to 715 // convert ModuleSpec/FileSpec <--> SBModuleSpec/SBFileSpec for the callback 722 SBFileSpec module_file_spec_s [all...] |
H A D | SBDeclaration.cpp | 60 SBFileSpec SBDeclaration::GetFileSpec() const { in GetFileSpec() 63 SBFileSpec sb_file_spec; in GetFileSpec() 89 void SBDeclaration::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBFileSpec.h | 16 class LLDB_API SBFileSpec { 18 SBFileSpec(); 20 SBFileSpec(const lldb::SBFileSpec &rhs); 26 SBFileSpec(const char *path); 28 SBFileSpec(const char *path, bool resolve); 30 ~SBFileSpec(); 32 const SBFileSpec &operator=(const lldb::SBFileSpec &rhs); 36 bool operator==(const SBFileSpec &rhs) const; 38 bool operator!=(const SBFileSpec &rhs) const; 83 SBFileSpec(const lldb_private::FileSpec &fspec);
|
H A D | SBModuleSpec.h | 41 lldb::SBFileSpec GetFileSpec(); 43 void SetFileSpec(const lldb::SBFileSpec &fspec); 58 lldb::SBFileSpec GetPlatformFileSpec(); 60 void SetPlatformFileSpec(const lldb::SBFileSpec &fspec); 62 lldb::SBFileSpec GetSymbolFileSpec(); 64 void SetSymbolFileSpec(const lldb::SBFileSpec &fspec);
|
H A D | SBModule.h | 50 lldb::SBFileSpec GetFileSpec() const; 65 lldb::SBFileSpec GetPlatformFileSpec() const; 67 bool SetPlatformFileSpec(const lldb::SBFileSpec &platform_file); 79 lldb::SBFileSpec GetRemoteInstallFileSpec(); 97 bool SetRemoteInstallFileSpec(lldb::SBFileSpec &file); 138 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec); 288 lldb::SBFileSpec GetSymbolFileSpec() const;
|
H A D | SBCompileUnit.h | 31 lldb::SBFileSpec GetFileSpec() const; 41 lldb::SBFileSpec *inline_file_spec) const; 44 lldb::SBFileSpec *inline_file_spec, 47 SBFileSpec GetSupportFileAtIndex(uint32_t idx) const; 51 uint32_t FindSupportFileIndex(uint32_t start_idx, const SBFileSpec &sb_file,
|
H A D | SBPlatform.h | 146 SBError Put(SBFileSpec &src, SBFileSpec &dst); 148 SBError Get(SBFileSpec &src, SBFileSpec &dst); 150 SBError Install(SBFileSpec &src, SBFileSpec &dst);
|
H A D | SBFileSpecList.h | 31 void Append(const SBFileSpec &sb_file); 33 bool AppendIfUnique(const SBFileSpec &sb_file); 37 uint32_t FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, bool full); 39 const SBFileSpec GetFileSpecAtIndex(uint32_t idx) const;
|
H A D | SBHostOS.h | 19 static lldb::SBFileSpec GetProgramFileSpec(); 21 static lldb::SBFileSpec GetLLDBPythonPath(); 23 static lldb::SBFileSpec GetLLDBPath(lldb::PathType path_type); 25 static lldb::SBFileSpec GetUserHomeDirectory();
|
H A D | SBTarget.h | 296 lldb::SBFileSpec GetExecutable(); 320 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec); 333 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec); 600 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line); 603 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line, 607 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line, 611 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line, 616 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line, 704 const SBFileSpec &source_file, 763 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file, [all …]
|
H A D | SBTrace.h | 25 const SBFileSpec &trace_description_file); 59 /// A \a SBFileSpec pointing to the bundle description file. 60 SBFileSpec SaveToDisk(SBError &error, const SBFileSpec &bundle_dir,
|
H A D | SBProcess.h | 268 uint32_t LoadImage(lldb::SBFileSpec &remote_image_spec, lldb::SBError &error); 294 uint32_t LoadImage(const lldb::SBFileSpec &local_image_spec, 295 const lldb::SBFileSpec &remote_image_spec, 325 uint32_t LoadImageUsingPaths(const lldb::SBFileSpec &image_spec, 327 lldb::SBFileSpec &loaded_path, 424 lldb::SBFileSpec GetCoreFile();
|
H A D | SBSaveCoreOptions.h | 49 void SetOutputFile(SBFileSpec output_file); 54 SBFileSpec GetOutputFile() const;
|
H A D | SBSourceManager.h | 29 const lldb::SBFileSpec &file, uint32_t line, uint32_t context_before, 33 const lldb::SBFileSpec &file, uint32_t line, uint32_t column,
|
H A D | SBDeclaration.h | 32 lldb::SBFileSpec GetFileSpec() const; 38 void SetFileSpec(lldb::SBFileSpec filespec);
|
H A D | SBLineEntry.h | 39 lldb::SBFileSpec GetFileSpec() const; 45 void SetFileSpec(lldb::SBFileSpec filespec);
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBFileSpecExtensions.i | 1 STRING_EXTENSION_OUTSIDE(SBFileSpec) 3 %extend lldb::SBFileSpec {
|