Home
last modified time | relevance | path

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

1234

/openbsd-src/gnu/llvm/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 DSBModuleSpec.cpp58 SBFileSpec SBModuleSpec::GetFileSpec() { in GetFileSpec()
61 SBFileSpec sb_spec(m_opaque_up->GetFileSpec()); in GetFileSpec()
65 void SBModuleSpec::SetFileSpec(const lldb::SBFileSpec &sb_spec) { in SetFileSpec()
71 lldb::SBFileSpec SBModuleSpec::GetPlatformFileSpec() { in GetPlatformFileSpec()
74 return SBFileSpec(m_opaque_up->GetPlatformFileSpec()); in GetPlatformFileSpec()
77 void SBModuleSpec::SetPlatformFileSpec(const lldb::SBFileSpec &sb_spec) { in SetPlatformFileSpec()
83 lldb::SBFileSpec SBModuleSpec::GetSymbolFileSpec() { in GetSymbolFileSpec()
86 return SBFileSpec(m_opaque_up->GetSymbolFileSpec()); in GetSymbolFileSpec()
89 void SBModuleSpec::SetSymbolFileSpec(const lldb::SBFileSpec &sb_spec) { in SetSymbolFileSpec()
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 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()
630 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()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBFileSpec.i30 the filename and the directory matches what we expect.") SBFileSpec;
31 class SBFileSpec
34 SBFileSpec ();
36 SBFileSpec (const lldb::SBFileSpec &rhs);
38 SBFileSpec (const char *path);// Deprecated, use SBFileSpec (const char *path, bool resolve)
40 SBFileSpec (const char *path, bool resolve);
42 ~SBFileSpec ();
44 bool operator==(const SBFileSpec &rhs) const;
46 bool operator!=(const SBFileSpec &rhs) const;
83 STRING_EXTENSION(SBFileSpec)
H A DSBModuleSpec.i38 lldb::SBFileSpec
42 SetFileSpec (const lldb::SBFileSpec &fspec);
58 lldb::SBFileSpec
62 SetPlatformFileSpec (const lldb::SBFileSpec &fspec);
64 lldb::SBFileSpec
68 SetSymbolFileSpec (const lldb::SBFileSpec &fspec);
H A DSBPlatform.i184 Get (lldb::SBFileSpec &src, lldb::SBFileSpec &dst);
187 Put (lldb::SBFileSpec &src, lldb::SBFileSpec &dst);
190 Install (lldb::SBFileSpec &src, lldb::SBFileSpec &dst);
H A DSBFileSpecList.i30 Append (const SBFileSpec &sb_file);
33 AppendIfUnique (const SBFileSpec &sb_file);
39 FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full);
41 const SBFileSpec
H A DSBCompileUnit.i61 lldb::SBFileSpec
89 lldb::SBFileSpec *inline_file_spec) const;
94 lldb::SBFileSpec *inline_file_spec,
97 SBFileSpec
104 FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full);
H A DSBHostOS.i18 static lldb::SBFileSpec
21 static lldb::SBFileSpec
24 static lldb::SBFileSpec
27 static lldb::SBFileSpec
H A DSBTarget.i335 lldb::SBFileSpec
375 FindModule (const lldb::SBFileSpec &file_spec);
386 FindCompileUnits (const lldb::SBFileSpec &sb_file_spec);
556 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line);
559 …BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line, lldb::addr_t offset);
562 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line,
566 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line,
571 BreakpointCreateByLocation (const lldb::SBFileSpec &file_spec, uint32_t line,
655 …BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpec &source_file, cons…
787 BreakpointsCreateFromFile(SBFileSpec &source_file,
[all …]
H A DSBModule.i159 lldb::SBFileSpec
176 lldb::SBFileSpec
180 SetPlatformFileSpec (const lldb::SBFileSpec &platform_file);
182 lldb::SBFileSpec
186 SetRemoteInstallFileSpec (lldb::SBFileSpec &file);
228 FindCompileUnits (const lldb::SBFileSpec &sb_file_spec);
348 lldb::SBFileSpec
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBFileSpec.h16 class LLDB_API SBFileSpec {
18 SBFileSpec();
20 SBFileSpec(const lldb::SBFileSpec &rhs);
22 SBFileSpec(const char *path); // Deprecated, use SBFileSpec (const char *path,
25 SBFileSpec(const char *path, bool resolve);
27 ~SBFileSpec();
29 const SBFileSpec &operator=(const lldb::SBFileSpec &rhs);
33 bool operator==(const SBFileSpec &rhs) const;
35 bool operator!=(const SBFileSpec &rhs) const;
79 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 DSBPlatform.h142 SBError Put(SBFileSpec &src, SBFileSpec &dst);
144 SBError Get(SBFileSpec &src, SBFileSpec &dst);
146 SBError Install(SBFileSpec &src, SBFileSpec &dst);
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 DSBTarget.h280 lldb::SBFileSpec GetExecutable();
304 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec);
317 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec);
555 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line);
558 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
562 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
566 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
571 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line,
635 const SBFileSpec &source_file,
694 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file,
[all …]
H A DSBTrace.h27 const SBFileSpec &trace_description_file);
62 SBFileSpec SaveToDisk(SBError &error, const SBFileSpec &bundle_dir,
H A DSBProcess.h244 uint32_t LoadImage(lldb::SBFileSpec &remote_image_spec, lldb::SBError &error);
270 uint32_t LoadImage(const lldb::SBFileSpec &local_image_spec,
271 const lldb::SBFileSpec &remote_image_spec,
301 uint32_t LoadImageUsingPaths(const lldb::SBFileSpec &image_spec,
303 lldb::SBFileSpec &loaded_path,

1234