| /llvm-project-15.0.7/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 | 58 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 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()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBFileSpec.i | 30 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 D | SBModuleSpec.i | 38 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 D | SBPlatform.i | 184 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 D | SBFileSpecList.i | 30 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 D | SBCompileUnit.i | 61 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 D | SBHostOS.i | 18 static lldb::SBFileSpec 21 static lldb::SBFileSpec 24 static lldb::SBFileSpec 27 static lldb::SBFileSpec
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBFileSpec.h | 16 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 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 | SBPlatform.h | 142 SBError Put(SBFileSpec &src, SBFileSpec &dst); 144 SBError Get(SBFileSpec &src, SBFileSpec &dst); 146 SBError Install(SBFileSpec &src, SBFileSpec &dst);
|
| 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 | 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 | 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 | SBTarget.h | 280 lldb::SBFileSpec GetExecutable(); 304 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec); 317 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec); 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, 635 const SBFileSpec &source_file, 694 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file, 712 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file, 723 lldb::SBError BreakpointsWriteToFile(SBFileSpec &dest_file); [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/load_using_paths/ |
| H A D | TestLoadUsingPaths.py | 54 lldb.SBFileSpec("main.cpp")) 56 lib_spec = lldb.SBFileSpec(self.lib_name) 61 out_spec = lldb.SBFileSpec() 77 self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library") 102 relative_spec = lldb.SBFileSpec(os.path.join("hidden", self.lib_name)) 104 out_spec = lldb.SBFileSpec() 108 …self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library with rela… 117 relative_spec = lldb.SBFileSpec(os.path.join("hidden", self.lib_name)) 119 out_spec = lldb.SBFileSpec() 129 abs_spec = lldb.SBFileSpec(os.path.join(self.hidden_dir, self.lib_name)) [all …]
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/break_in_loaded_dylib/ |
| H A D | TestBreakInLoadedDylib.py | 15 self.main_spec = lldb.SBFileSpec("main.cpp") 16 self.b_spec = lldb.SBFileSpec("b.cpp") 19 self.lib_spec = lldb.SBFileSpec(self.lib_fullname) 45 files_list.Append(lldb.SBFileSpec("I_bet_nobody_has_this_file.cpp")) 49 modules_list.Append(lldb.SBFileSpec("libI_bet_not_this_one_either.dylib"))
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/const_this/ |
| H A D | TestConstThis.py | 22 self, "// break in function in class.", lldb.SBFileSpec("main.cpp") 31 lldb.SBFileSpec("main.cpp"), 49 lldb.SBFileSpec("main.cpp"), 58 lldb.SBFileSpec("main.cpp"),
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/ |
| H A D | TestRequireHWBreakpoints.py | 36 self, lldb.SBFileSpec("main.c"), 1) 57 self, lldb.SBFileSpec("main.c"), 1) 77 self, lldb.SBFileSpec("main.c"), 7) 95 self, lldb.SBFileSpec("main.c"), 7) 102 error = thread.StepOverUntil(lldb.SBFrame(), lldb.SBFileSpec(), 5)
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/scripted_bkpt/ |
| H A D | TestScriptedResolver.py | 90 file_list.Append(lldb.SBFileSpec("main.c")) 96 module_list.Append(lldb.SBFileSpec("a.out")) 114 module_list.Append(lldb.SBFileSpec("noSuchModule")) 120 file_list.Append(lldb.SBFileSpec("noFileOfThisName.xxx")) 126 file_list.Append(lldb.SBFileSpec("no_such_file.xxx")) 132 module_list.Append(lldb.SBFileSpec("NoSuchModule.dylib")) 138 file_list.Append(lldb.SBFileSpec("no_such_file.xxx")) 144 module_list.Append(lldb.SBFileSpec("NoSuchModule.dylib")) 173 module_list.Append(lldb.SBFileSpec("a.out"))
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/static_members/ |
| H A D | TestCPPStaticMembers.py | 20 lldbutil.run_to_source_breakpoint(self, "// stop in main", lldb.SBFileSpec("main.cpp")) 30 … lldbutil.run_to_source_breakpoint(self, "// stop in member function", lldb.SBFileSpec("main.cpp")) 52 lldbutil.run_to_source_breakpoint(self, "// stop in main", lldb.SBFileSpec("main.cpp")) 75 lldbutil.run_to_source_breakpoint(self, "// stop in main", lldb.SBFileSpec("main.cpp"))
|