Home
last modified time | relevance | path

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

12345678910>>...14

/external/llvm-project/lldb/source/API/
DSBFileSpec.cpp26 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 …]
DSBHostOS.cpp32 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 …]
DSBFileSpecList.cpp53 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 …]
DSBModuleSpec.cpp59 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 …]
DSBCompileUnit.cpp47 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 …]
DSBModule.cpp96 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 …]
DSBDeclaration.cpp65 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()
DSBPlatform.cpp527 SBError SBPlatform::Get(SBFileSpec &src, SBFileSpec &dst) { in Get()
529 (lldb::SBFileSpec &, lldb::SBFileSpec &), src, dst); in Get()
541 SBError SBPlatform::Put(SBFileSpec &src, SBFileSpec &dst) { in Put()
543 (lldb::SBFileSpec &, lldb::SBFileSpec &), src, dst); in Put()
566 SBError SBPlatform::Install(SBFileSpec &src, SBFileSpec &dst) { in Install()
568 (lldb::SBFileSpec &, lldb::SBFileSpec &), src, dst); in Install()
779 (lldb::SBFileSpec &, lldb::SBFileSpec &)); in RegisterMethods()
781 (lldb::SBFileSpec &, lldb::SBFileSpec &)); in RegisterMethods()
783 (lldb::SBFileSpec &, lldb::SBFileSpec &)); in RegisterMethods()
/external/llvm-project/lldb/bindings/interface/
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)
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);
DSBPlatform.i175 Get (lldb::SBFileSpec &src, lldb::SBFileSpec &dst);
178 Put (lldb::SBFileSpec &src, lldb::SBFileSpec &dst);
181 Install (lldb::SBFileSpec &src, lldb::SBFileSpec &dst);
DSBCompileUnit.i61 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);
DSBFileSpecList.i27 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
DSBHostOS.i15 static lldb::SBFileSpec
18 static lldb::SBFileSpec
21 static lldb::SBFileSpec
24 static lldb::SBFileSpec
/external/llvm-project/lldb/include/lldb/API/
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;
78 SBFileSpec(const lldb_private::FileSpec &fspec);
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);
DSBModule.h48 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;
DSBPlatform.h140 SBError Put(SBFileSpec &src, SBFileSpec &dst);
142 SBError Get(SBFileSpec &src, SBFileSpec &dst);
144 SBError Install(SBFileSpec &src, SBFileSpec &dst);
DSBCompileUnit.h31 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,
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;
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();
DSBTarget.h280 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/
DTestLoadUsingPaths.py57 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/scripted_bkpt/
DTestScriptedResolver.py93 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"))
/external/llvm-project/lldb/test/API/functionalities/breakpoint/hardware_breakpoints/require_hw_breakpoints/
DTestRequireHWBreakpoints.py36 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)

12345678910>>...14