Home
last modified time | relevance | path

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

123

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp26 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 DSBHostOS.cpp32 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 DSBModuleSpec.cpp63 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 DSBFileSpecList.cpp50 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 DSBCompileUnit.cpp43 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 DSBModule.cpp105 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 &sb_file_spec) { in FindCompileUnits()
624 lldb::SBFileSpec SBModule::GetSymbolFileSpec() const { in GetSymbolFileSpec()
[all …]
H A DSBTrace.cpp32 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 DSBDeclaration.cpp60 SBFileSpec SBDeclaration::GetFileSpec() const { in GetFileSpec()
63 SBFileSpec sb_file_spec; in GetFileSpec()
89 void SBDeclaration::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec()
H A DSBPlatform.cpp498 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()
722 SBFileSpec module_file_spec_sb; in SetLocateModuleCallback()
723 SBFileSpec symbol_file_spec_sb; in SetLocateModuleCallback()
H A DSBLineEntry.cpp80 SBFileSpec SBLineEntry::GetFileSpec() const { in GetFileSpec()
83 SBFileSpec sb_file_spec; in GetFileSpec()
108 void SBLineEntry::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFileSpec.h16 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;
82 SBFileSpec(const lldb_private::FileSpec &fspec);
H A DSBModuleSpec.h41 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 DSBModule.h50 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 DSBCompileUnit.h31 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 DSBFileSpecList.h31 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 DSBHostOS.h19 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 DSBPlatform.h146 SBError Put(SBFileSpec &src, SBFileSpec &dst);
148 SBError Get(SBFileSpec &src, SBFileSpec &dst);
150 SBError Install(SBFileSpec &src, SBFileSpec &dst);
H A DSBTarget.h285 lldb::SBFileSpec GetExecutable();
309 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec);
322 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec);
592 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
596 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
600 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
693 const SBFileSpec &source_file,
752 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
770 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
781 lldb::SBError BreakpointsWriteToFile(SBFileSpec &dest_file);
[all …]
H A DSBTrace.h25 const SBFileSpec &trace_description_file);
60 SBFileSpec SaveToDisk(SBError &error, const SBFileSpec &bundle_dir,
H A DSBProcess.h258 uint32_t LoadImage(lldb::SBFileSpec &remote_image_spec, lldb::SBError &error);
284 uint32_t LoadImage(const lldb::SBFileSpec &local_image_spec,
285 const lldb::SBFileSpec &remote_image_spec,
315 uint32_t LoadImageUsingPaths(const lldb::SBFileSpec &image_spec,
317 lldb::SBFileSpec &loaded_path,
H A DSBSourceManager.h29 const lldb::SBFileSpec &file, uint32_t line, uint32_t context_before,
33 const lldb::SBFileSpec &file, uint32_t line, uint32_t column,
H A DSBDeclaration.h32 lldb::SBFileSpec GetFileSpec() const;
38 void SetFileSpec(lldb::SBFileSpec filespec);
H A DSBLineEntry.h36 lldb::SBFileSpec GetFileSpec() const;
42 void SetFileSpec(lldb::SBFileSpec filespec);
H A DSBDefines.h72 class LLDB_API SBFileSpec; variable
142 void *baton, const SBModuleSpec &module_spec, SBFileSpec &module_file_spec,
143 SBFileSpec &symbol_file_spec);
/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBFileSpecExtensions.i1 STRING_EXTENSION_OUTSIDE(SBFileSpec)
3 %extend lldb::SBFileSpec {

123