Home
last modified time | relevance | path

Searched refs:SBFunction (Results 1 – 25 of 28) sorted by relevance

12

/external/llvm-project/lldb/source/API/
DSBFunction.cpp25 SBFunction::SBFunction() : m_opaque_ptr(nullptr) { in SBFunction() function in SBFunction
26 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFunction); in SBFunction()
29 SBFunction::SBFunction(lldb_private::Function *lldb_object_ptr) in SBFunction() function in SBFunction
32 SBFunction::SBFunction(const lldb::SBFunction &rhs) in SBFunction() function in SBFunction
34 LLDB_RECORD_CONSTRUCTOR(SBFunction, (const lldb::SBFunction &), rhs); in SBFunction()
37 const SBFunction &SBFunction::operator=(const SBFunction &rhs) { in operator =()
38 LLDB_RECORD_METHOD(const lldb::SBFunction &, in operator =()
39 SBFunction, operator=,(const lldb::SBFunction &), rhs); in operator =()
45 SBFunction::~SBFunction() { m_opaque_ptr = nullptr; } in ~SBFunction()
47 bool SBFunction::IsValid() const { in IsValid()
[all …]
DSBSymbolContext.cpp90 SBFunction SBSymbolContext::GetFunction() { in GetFunction()
91 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFunction, SBSymbolContext, GetFunction); in GetFunction()
98 SBFunction sb_function(function); in GetFunction()
147 void SBSymbolContext::SetFunction(lldb::SBFunction function) { in SetFunction()
148 LLDB_RECORD_METHOD(void, SBSymbolContext, SetFunction, (lldb::SBFunction), in SetFunction()
250 LLDB_REGISTER_METHOD(lldb::SBFunction, SBSymbolContext, GetFunction, ()); in RegisterMethods()
258 (lldb::SBFunction)); in RegisterMethods()
DSBAddress.cpp240 SBFunction SBAddress::GetFunction() { in GetFunction()
241 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFunction, SBAddress, GetFunction); in GetFunction()
243 SBFunction sb_function; in GetFunction()
310 LLDB_REGISTER_METHOD(lldb::SBFunction, SBAddress, GetFunction, ()); in RegisterMethods()
DSBFrame.cpp187 SBFunction SBFrame::GetFunction() const { in GetFunction()
188 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFunction, SBFrame, GetFunction); in GetFunction()
190 SBFunction sb_function; in GetFunction()
1308 LLDB_REGISTER_METHOD_CONST(lldb::SBFunction, SBFrame, GetFunction, ()); in RegisterMethods()
DCMakeLists.txt48 SBFunction.cpp
DSBReproducer.cpp87 RegisterMethods<SBFunction>(R); in SBRegistry()
/external/llvm-project/lldb/include/lldb/API/
DSBFunction.h18 class LLDB_API SBFunction {
20 SBFunction();
22 SBFunction(const lldb::SBFunction &rhs);
24 const lldb::SBFunction &operator=(const lldb::SBFunction &rhs);
26 ~SBFunction();
59 bool operator==(const lldb::SBFunction &rhs) const;
61 bool operator!=(const lldb::SBFunction &rhs) const;
75 SBFunction(lldb_private::Function *lldb_object_ptr);
DSBSymbolContext.h40 lldb::SBFunction GetFunction();
47 void SetFunction(lldb::SBFunction function);
DSBAddress.h80 lldb::SBFunction GetFunction();
93 friend class SBFunction; variable
DSBInstructionList.h58 friend class SBFunction;
DSBBlock.h78 friend class SBFunction; variable
DSBStream.h72 friend class SBFunction; variable
DSBFrame.h53 lldb::SBFunction GetFunction() const;
DSBDefines.h49 class LLDB_API SBFunction; variable
DSBType.h220 friend class SBFunction; variable
DSBProcess.h405 friend class SBFunction; variable
/external/llvm-project/lldb/bindings/interface/
DSBFunction.i43 ...") SBFunction;
44 class SBFunction
48 SBFunction ();
50 SBFunction (const lldb::SBFunction &rhs);
52 ~SBFunction ();
109 operator == (const lldb::SBFunction &rhs) const;
112 operator != (const lldb::SBFunction &rhs) const;
114 STRING_EXTENSION(SBFunction)
DSBSymbolContext.i64 lldb::SBFunction GetFunction ();
71 void SetFunction (lldb::SBFunction function);
DSBAddress.i131 lldb::SBFunction
DSBFrame.i100 lldb::SBFunction
/external/llvm-project/lldb/bindings/python/
Dpython.swig28 o SBFunction: Represents a generic function, which can be inlined or not.
29 o SBBlock: Represents a lexical block. SBFunction contains SBBlock(s).
/external/llvm-project/lldb/bindings/
Dheaders.swig34 #include "lldb/API/SBFunction.h"
Dinterfaces.swig41 %include "./interface/SBFunction.i"
/external/llvm-project/lldb/examples/functions/
Dmain.cpp215 SBFunction function(sc.GetFunction()); in main()
/external/llvm-project/lldb/test/API/python_api/default-constructor/
DTestDefaultConstructorForAPIObjects.py175 obj = lldb.SBFunction()

12