/external/llvm-project/lldb/source/API/ |
D | SBFileSpec.cpp | 26 SBFileSpec::SBFileSpec() : m_opaque_up(new lldb_private::FileSpec()) { in SBFileSpec() function in SBFileSpec 27 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFileSpec); in SBFileSpec() 30 SBFileSpec::SBFileSpec(const SBFileSpec &rhs) : m_opaque_up() { in SBFileSpec() function in SBFileSpec 31 LLDB_RECORD_CONSTRUCTOR(SBFileSpec, (const lldb::SBFileSpec &), rhs); 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 41 LLDB_RECORD_CONSTRUCTOR(SBFileSpec, (const char *), path); in SBFileSpec() 46 SBFileSpec::SBFileSpec(const char *path, bool resolve) in SBFileSpec() function in SBFileSpec 48 LLDB_RECORD_CONSTRUCTOR(SBFileSpec, (const char *, bool), path, resolve); in SBFileSpec() 54 SBFileSpec::~SBFileSpec() = default; [all …]
|
D | SBHostOS.cpp | 32 SBFileSpec SBHostOS::GetProgramFileSpec() { in GetProgramFileSpec() 33 LLDB_RECORD_STATIC_METHOD_NO_ARGS(lldb::SBFileSpec, SBHostOS, in GetProgramFileSpec() 36 SBFileSpec sb_filespec; in GetProgramFileSpec() 41 SBFileSpec SBHostOS::GetLLDBPythonPath() { in GetLLDBPythonPath() 42 LLDB_RECORD_STATIC_METHOD_NO_ARGS(lldb::SBFileSpec, SBHostOS, in GetLLDBPythonPath() 48 SBFileSpec SBHostOS::GetLLDBPath(lldb::PathType path_type) { in GetLLDBPath() 49 LLDB_RECORD_STATIC_METHOD(lldb::SBFileSpec, SBHostOS, GetLLDBPath, in GetLLDBPath() 85 SBFileSpec sb_fspec; in GetLLDBPath() 90 SBFileSpec SBHostOS::GetUserHomeDirectory() { in GetUserHomeDirectory() 91 LLDB_RECORD_STATIC_METHOD_NO_ARGS(lldb::SBFileSpec, SBHostOS, in GetUserHomeDirectory() [all …]
|
D | SBFileSpecList.cpp | 53 void SBFileSpecList::Append(const SBFileSpec &sb_file) { in Append() 54 LLDB_RECORD_METHOD(void, SBFileSpecList, Append, (const lldb::SBFileSpec &), in Append() 60 bool SBFileSpecList::AppendIfUnique(const SBFileSpec &sb_file) { in AppendIfUnique() 62 (const lldb::SBFileSpec &), sb_file); in AppendIfUnique() 73 uint32_t SBFileSpecList::FindFileIndex(uint32_t idx, const SBFileSpec &sb_file, in FindFileIndex() 76 (uint32_t, const lldb::SBFileSpec &, bool), idx, sb_file, in FindFileIndex() 82 const SBFileSpec SBFileSpecList::GetFileSpecAtIndex(uint32_t idx) const { in GetFileSpecAtIndex() 83 LLDB_RECORD_METHOD_CONST(const lldb::SBFileSpec, SBFileSpecList, in GetFileSpecAtIndex() 86 SBFileSpec new_spec; in GetFileSpecAtIndex() 139 (const lldb::SBFileSpec &)); in RegisterMethods() [all …]
|
D | SBModuleSpec.cpp | 59 SBFileSpec SBModuleSpec::GetFileSpec() { in GetFileSpec() 60 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBModuleSpec, GetFileSpec); in GetFileSpec() 62 SBFileSpec sb_spec(m_opaque_up->GetFileSpec()); in GetFileSpec() 66 void SBModuleSpec::SetFileSpec(const lldb::SBFileSpec &sb_spec) { in SetFileSpec() 68 (const lldb::SBFileSpec &), sb_spec); in SetFileSpec() 73 lldb::SBFileSpec SBModuleSpec::GetPlatformFileSpec() { in GetPlatformFileSpec() 74 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBModuleSpec, in GetPlatformFileSpec() 77 return LLDB_RECORD_RESULT(SBFileSpec(m_opaque_up->GetPlatformFileSpec())); in GetPlatformFileSpec() 80 void SBModuleSpec::SetPlatformFileSpec(const lldb::SBFileSpec &sb_spec) { in SetPlatformFileSpec() 82 (const lldb::SBFileSpec &), sb_spec); in SetPlatformFileSpec() [all …]
|
D | SBCompileUnit.cpp | 47 SBFileSpec SBCompileUnit::GetFileSpec() const { in GetFileSpec() 48 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFileSpec, SBCompileUnit, in GetFileSpec() 51 SBFileSpec file_spec; in GetFileSpec() 87 SBFileSpec *inline_file_spec) const { in FindLineEntryIndex() 89 (uint32_t, uint32_t, lldb::SBFileSpec *), start_idx, in FindLineEntryIndex() 97 SBFileSpec *inline_file_spec, in FindLineEntryIndex() 100 (uint32_t, uint32_t, lldb::SBFileSpec *, bool), in FindLineEntryIndex() 152 SBFileSpec SBCompileUnit::GetSupportFileAtIndex(uint32_t idx) const { in GetSupportFileAtIndex() 153 LLDB_RECORD_METHOD_CONST(lldb::SBFileSpec, SBCompileUnit, in GetSupportFileAtIndex() 156 SBFileSpec sb_file_spec; in GetSupportFileAtIndex() [all …]
|
D | SBModule.cpp | 96 SBFileSpec SBModule::GetFileSpec() const { in GetFileSpec() 97 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFileSpec, SBModule, GetFileSpec); in GetFileSpec() 99 SBFileSpec file_spec; in GetFileSpec() 107 lldb::SBFileSpec SBModule::GetPlatformFileSpec() const { in GetPlatformFileSpec() 108 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFileSpec, SBModule, in GetPlatformFileSpec() 111 SBFileSpec file_spec; in GetPlatformFileSpec() 119 bool SBModule::SetPlatformFileSpec(const lldb::SBFileSpec &platform_file) { in SetPlatformFileSpec() 121 (const lldb::SBFileSpec &), platform_file); in SetPlatformFileSpec() 134 lldb::SBFileSpec SBModule::GetRemoteInstallFileSpec() { in GetRemoteInstallFileSpec() 135 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFileSpec, SBModule, in GetRemoteInstallFileSpec() [all …]
|
D | SBDeclaration.cpp | 65 SBFileSpec SBDeclaration::GetFileSpec() const { in GetFileSpec() 66 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFileSpec, SBDeclaration, in GetFileSpec() 70 SBFileSpec sb_file_spec; in GetFileSpec() 98 void SBDeclaration::SetFileSpec(lldb::SBFileSpec filespec) { in SetFileSpec() 99 LLDB_RECORD_METHOD(void, SBDeclaration, SetFileSpec, (lldb::SBFileSpec), in SetFileSpec() 191 LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBDeclaration, GetFileSpec, in RegisterMethods() 195 LLDB_REGISTER_METHOD(void, SBDeclaration, SetFileSpec, (lldb::SBFileSpec)); in RegisterMethods()
|
D | SBSourceManager.cpp | 110 const SBFileSpec &file, uint32_t line, uint32_t context_before, in DisplaySourceLinesWithLineNumbers() 113 (const lldb::SBFileSpec &, uint32_t, uint32_t, uint32_t, in DisplaySourceLinesWithLineNumbers() 125 const SBFileSpec &file, uint32_t line, uint32_t column, in DisplaySourceLinesWithLineNumbersAndColumn() 130 (const lldb::SBFileSpec &, uint32_t, uint32_t, uint32_t, uint32_t, in DisplaySourceLinesWithLineNumbersAndColumn() 155 (const lldb::SBFileSpec &, uint32_t, uint32_t, in RegisterMethods() 159 (const lldb::SBFileSpec &, uint32_t, uint32_t, in RegisterMethods()
|
/external/llvm-project/lldb/bindings/interface/ |
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)
|
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);
|
D | SBPlatform.i | 175 Get (lldb::SBFileSpec &src, lldb::SBFileSpec &dst); 178 Put (lldb::SBFileSpec &src, lldb::SBFileSpec &dst); 181 Install (lldb::SBFileSpec &src, lldb::SBFileSpec &dst);
|
D | SBFileSpecList.i | 27 Append (const SBFileSpec &sb_file); 30 AppendIfUnique (const SBFileSpec &sb_file); 36 FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full); 38 const SBFileSpec
|
D | SBCompileUnit.i | 61 lldb::SBFileSpec 73 lldb::SBFileSpec *inline_file_spec) const; 78 lldb::SBFileSpec *inline_file_spec, 81 SBFileSpec 88 FindSupportFileIndex (uint32_t start_idx, const SBFileSpec &sb_file, bool full);
|
D | SBHostOS.i | 15 static lldb::SBFileSpec 18 static lldb::SBFileSpec 21 static lldb::SBFileSpec 24 static lldb::SBFileSpec
|
/external/llvm-project/lldb/include/lldb/API/ |
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; 78 SBFileSpec(const lldb_private::FileSpec &fspec);
|
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);
|
D | SBModule.h | 48 lldb::SBFileSpec GetFileSpec() const; 63 lldb::SBFileSpec GetPlatformFileSpec() const; 65 bool SetPlatformFileSpec(const lldb::SBFileSpec &platform_file); 77 lldb::SBFileSpec GetRemoteInstallFileSpec(); 95 bool SetRemoteInstallFileSpec(lldb::SBFileSpec &file); 136 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec); 286 lldb::SBFileSpec GetSymbolFileSpec() const;
|
D | SBPlatform.h | 140 SBError Put(SBFileSpec &src, SBFileSpec &dst); 142 SBError Get(SBFileSpec &src, SBFileSpec &dst); 144 SBError Install(SBFileSpec &src, SBFileSpec &dst);
|
D | SBCompileUnit.h | 31 lldb::SBFileSpec GetFileSpec() const; 38 lldb::SBFileSpec *inline_file_spec) const; 41 lldb::SBFileSpec *inline_file_spec, 44 SBFileSpec GetSupportFileAtIndex(uint32_t idx) const; 48 uint32_t FindSupportFileIndex(uint32_t start_idx, const SBFileSpec &sb_file,
|
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();
|
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;
|
D | SBTarget.h | 280 lldb::SBFileSpec GetExecutable(); 304 lldb::SBModule FindModule(const lldb::SBFileSpec &file_spec); 317 FindCompileUnits(const lldb::SBFileSpec &sb_file_spec); 548 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line); 551 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line, 555 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line, 559 BreakpointCreateByLocation(const lldb::SBFileSpec &file_spec, uint32_t line, 622 const SBFileSpec &source_file, 681 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file, 699 lldb::SBError BreakpointsCreateFromFile(SBFileSpec &source_file, [all …]
|
/external/llvm-project/lldb/test/API/functionalities/load_using_paths/ |
D | TestLoadUsingPaths.py | 57 lldb.SBFileSpec("main.cpp")) 59 lib_spec = lldb.SBFileSpec(self.lib_name) 64 out_spec = lldb.SBFileSpec() 75 self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library") 100 relative_spec = lldb.SBFileSpec(os.path.join("hidden", self.lib_name)) 102 out_spec = lldb.SBFileSpec() 106 …self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library with rela… 115 relative_spec = lldb.SBFileSpec(os.path.join("hidden", self.lib_name)) 117 out_spec = lldb.SBFileSpec() 121 …self.assertEqual(out_spec, lldb.SBFileSpec(self.hidden_lib), "Found the expected library with incl… [all …]
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/ |
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)
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/scripted_bkpt/ |
D | TestScriptedResolver.py | 93 file_list.Append(lldb.SBFileSpec("main.c")) 99 module_list.Append(lldb.SBFileSpec("a.out")) 117 module_list.Append(lldb.SBFileSpec("noSuchModule")) 123 file_list.Append(lldb.SBFileSpec("noFileOfThisName.xxx")) 129 file_list.Append(lldb.SBFileSpec("no_such_file.xxx")) 135 module_list.Append(lldb.SBFileSpec("NoSuchModule.dylib")) 141 file_list.Append(lldb.SBFileSpec("no_such_file.xxx")) 147 module_list.Append(lldb.SBFileSpec("NoSuchModule.dylib")) 176 module_list.Append(lldb.SBFileSpec("a.out"))
|