Searched refs:SBFunction (Results 1 - 22 of 22) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBFunction.cpp1 //===-- SBFunction.cpp ----------------------------------------------------===//
9 #include "lldb/API/SBFunction.h"
25 SBFunction::SBFunction() : m_opaque_ptr(nullptr) { function in class:SBFunction
26 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFunction);
29 SBFunction::SBFunction(lldb_private::Function *lldb_object_ptr) function in class:SBFunction
32 SBFunction::SBFunction(const lldb::SBFunction function in class:SBFunction
[all...]
H A DSBSymbolContext.cpp90 SBFunction SBSymbolContext::GetFunction() {
91 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFunction, SBSymbolContext, GetFunction);
98 SBFunction sb_function(function);
147 void SBSymbolContext::SetFunction(lldb::SBFunction function) {
148 LLDB_RECORD_METHOD(void, SBSymbolContext, SetFunction, (lldb::SBFunction),
250 LLDB_REGISTER_METHOD(lldb::SBFunction, SBSymbolContext, GetFunction, ());
258 (lldb::SBFunction));
H A DSBAddress.cpp248 SBFunction SBAddress::GetFunction() {
249 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFunction, SBAddress, GetFunction);
251 SBFunction sb_function;
318 LLDB_REGISTER_METHOD(lldb::SBFunction, SBAddress, GetFunction, ());
H A DSBReproducer.cpp61 RegisterMethods<SBFunction>(R);
H A DSBFrame.cpp187 SBFunction SBFrame::GetFunction() const {
188 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFunction, SBFrame, GetFunction);
190 SBFunction sb_function;
1308 LLDB_REGISTER_METHOD_CONST(lldb::SBFunction, SBFrame, GetFunction, ());
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFunction.h1 //===-- SBFunction.h --------------------------------------------*- C++ -*-===//
18 class LLDB_API SBFunction { class in namespace:lldb
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
[all...]
H A DSBSymbolContext.h15 #include "lldb/API/SBFunction.h"
40 lldb::SBFunction GetFunction();
47 void SetFunction(lldb::SBFunction function);
H A DSBInstructionList.h58 friend class SBFunction;
H A DSBAddress.h80 lldb::SBFunction GetFunction();
93 friend class SBFunction;
H A DSBBlock.h78 friend class SBFunction;
H A DSBFrame.h53 lldb::SBFunction GetFunction() const;
64 /// just looking at the SBFunction or SBSymbol for a frame isn't enough.
H A DSBStream.h72 friend class SBFunction;
H A DSBDefines.h49 class LLDB_API SBFunction; member in namespace:lldb
H A DSBProcess.h405 friend class SBFunction;
H A DSBType.h218 friend class SBFunction;
H A DSBTarget.h842 friend class SBFunction;
/freebsd-13-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBFunction.i1 //===-- SWIG Interface for SBFunction ---------------------------*- C++ -*-===//
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)
[all...]
H A DSBSymbolContext.i64 lldb::SBFunction GetFunction ();
71 void SetFunction (lldb::SBFunction function);
90 function = property(GetFunction, SetFunction, doc='''A read/write property that allows the getting/setting of the function (lldb.SBFunction) in this symbol context.''')
H A DSBAddress.i42 See docstring of SBFunction for example usage of SBAddress."
131 lldb::SBFunction
180 function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) that this address resides within.''')
H A DSBFrame.i100 lldb::SBFunction
116 just looking at the SBFunction or SBSymbol for a frame isn't enough.
137 Returns the language of the frame's SBFunction, or if there.
138 is no SBFunction, guess the language from the mangled name.
340 function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) for this stack frame.''')
/freebsd-13-stable/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3171 #include "lldb/API/SBFunction.h"
3381 SWIGINTERN std::string lldb_SBFunction___str__(lldb::SBFunction *self){
4476 lldb::SBFunction result;
4487 lldb::SBFunction * resultptr = new lldb::SBFunction((const lldb::SBFunction &) result);
26660 lldb::SBFunction result;
26671 lldb::SBFunction * resultptr = new lldb::SBFunction((const lldb::SBFunction
[all...]
H A DMakefile44 SRCS+= API/SBFunction.cpp

Completed in 326 milliseconds