/external/llvm-project/lldb/source/API/ |
D | SBFunction.cpp | 25 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 …]
|
D | SBSymbolContext.cpp | 90 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()
|
D | SBAddress.cpp | 240 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()
|
D | SBFrame.cpp | 187 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()
|
D | SBReproducer.cpp | 87 RegisterMethods<SBFunction>(R); in SBRegistry()
|
D | CMakeLists.txt | 48 SBFunction.cpp
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBFunction.h | 18 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);
|
D | SBSymbolContext.h | 40 lldb::SBFunction GetFunction(); 47 void SetFunction(lldb::SBFunction function);
|
D | SBAddress.h | 80 lldb::SBFunction GetFunction(); 93 friend class SBFunction; variable
|
D | SBInstructionList.h | 58 friend class SBFunction;
|
D | SBBlock.h | 78 friend class SBFunction; variable
|
D | SBStream.h | 72 friend class SBFunction; variable
|
D | SBFrame.h | 53 lldb::SBFunction GetFunction() const;
|
D | SBDefines.h | 49 class LLDB_API SBFunction; variable
|
D | SBType.h | 220 friend class SBFunction; variable
|
D | SBProcess.h | 405 friend class SBFunction; variable
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBFunction.i | 43 ...") 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)
|
D | SBSymbolContext.i | 64 lldb::SBFunction GetFunction (); 71 void SetFunction (lldb::SBFunction function);
|
D | SBAddress.i | 131 lldb::SBFunction
|
D | SBFrame.i | 100 lldb::SBFunction
|
/external/llvm-project/lldb/bindings/python/ |
D | python.swig | 28 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/ |
D | headers.swig | 34 #include "lldb/API/SBFunction.h"
|
D | interfaces.swig | 41 %include "./interface/SBFunction.i"
|
/external/llvm-project/lldb/examples/functions/ |
D | main.cpp | 215 SBFunction function(sc.GetFunction()); in main()
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | TestDefaultConstructorForAPIObjects.py | 175 obj = lldb.SBFunction()
|