/external/llvm-project/lldb/source/API/ |
D | SBSymbol.cpp | 173 uint32_t SBSymbol::GetPrologueByteSize() { in GetPrologueByteSize() function in SBSymbol 174 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBSymbol, GetPrologueByteSize); in GetPrologueByteSize() 177 return m_opaque_ptr->GetPrologueByteSize(); in GetPrologueByteSize() 230 LLDB_REGISTER_METHOD(uint32_t, SBSymbol, GetPrologueByteSize, ()); in RegisterMethods()
|
D | SBFunction.cpp | 192 uint32_t SBFunction::GetPrologueByteSize() { in GetPrologueByteSize() function in SBFunction 193 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBFunction, GetPrologueByteSize); in GetPrologueByteSize() 196 return m_opaque_ptr->GetPrologueByteSize(); in GetPrologueByteSize() 267 LLDB_REGISTER_METHOD(uint32_t, SBFunction, GetPrologueByteSize, ()); in RegisterMethods()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBSymbol.i | 55 GetPrologueByteSize (); 87 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
|
D | SBFunction.i | 84 GetPrologueByteSize (); 127 …prologue_size = property(GetPrologueByteSize, None, doc='''A read only property that returns the s…
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_symbol.py | 14 obj.GetPrologueByteSize()
|
D | sb_function.py | 18 obj.GetPrologueByteSize
|
/external/llvm-project/lldb/source/Core/ |
D | AddressResolverName.cpp | 147 sc.function->GetPrologueByteSize(); in SearchCallback() 170 const uint32_t prologue_byte_size = sc.symbol->GetPrologueByteSize(); in SearchCallback()
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBSymbol.h | 48 uint32_t GetPrologueByteSize();
|
D | SBFunction.h | 49 uint32_t GetPrologueByteSize();
|
/external/llvm-project/lldb/source/Plugins/Architecture/PPC64/ |
D | ArchitecturePPC64.cpp | 58 return func.GetPrologueByteSize(); in GetBytesToSkip()
|
/external/llvm-project/lldb/source/Target/ |
D | ThreadPlanStepInRange.cpp | 253 bytes_to_skip = sc.function->GetPrologueByteSize(); in ShouldStop() 257 bytes_to_skip = sc.symbol->GetPrologueByteSize(); in ShouldStop()
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointResolverName.cpp | 349 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize(); in SearchCallback() 366 const uint32_t prologue_byte_size = sc.symbol->GetPrologueByteSize(); in SearchCallback()
|
D | BreakpointResolver.cpp | 317 const uint32_t prologue_byte_size = sc.function->GetPrologueByteSize(); in AddLocation()
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Symbol.h | 189 uint32_t GetPrologueByteSize();
|
D | Function.h | 572 uint32_t GetPrologueByteSize();
|
/external/llvm-project/lldb/source/Symbol/ |
D | Symbol.cpp | 260 uint32_t Symbol::GetPrologueByteSize() { in GetPrologueByteSize() function in Symbol 271 m_type_data = function->GetPrologueByteSize(); in GetPrologueByteSize()
|
D | Function.cpp | 530 uint32_t Function::GetPrologueByteSize() { in GetPrologueByteSize() function in Function
|
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
D | RenderScriptRuntime.cpp | 475 const uint32_t offset = sc.function->GetPrologueByteSize(); in SkipPrologue()
|