Searched defs:lldb_object_ptr (Results 1 - 8 of 8) sorted by relevance

/external/lldb/source/API/
H A DSBDeclaration.cpp34 SBDeclaration::SBDeclaration (const lldb_private::Declaration *lldb_object_ptr) : argument
37 if (lldb_object_ptr)
38 ref() = *lldb_object_ptr;
H A DSBFunction.cpp30 SBFunction::SBFunction (lldb_private::Function *lldb_object_ptr) : argument
31 m_opaque_ptr (lldb_object_ptr)
163 SBFunction::reset (lldb_private::Function *lldb_object_ptr) argument
165 m_opaque_ptr = lldb_object_ptr;
H A DSBLineEntry.cpp34 SBLineEntry::SBLineEntry (const lldb_private::LineEntry *lldb_object_ptr) : argument
37 if (lldb_object_ptr)
38 ref() = *lldb_object_ptr;
H A DSBSymbol.cpp27 SBSymbol::SBSymbol (lldb_private::Symbol *lldb_object_ptr) : argument
28 m_opaque_ptr (lldb_object_ptr)
50 SBSymbol::SetSymbol (lldb_private::Symbol *lldb_object_ptr) argument
52 m_opaque_ptr = lldb_object_ptr;
H A DSBValueList.cpp107 SBValueList::SBValueList (const ValueListImpl *lldb_object_ptr) : argument
112 if (lldb_object_ptr)
113 m_opaque_ap.reset (new ValueListImpl (*lldb_object_ptr));
117 log->Printf ("SBValueList::SBValueList (lldb_object_ptr=%p) => this.ap = %p",
118 lldb_object_ptr,
H A DSBAddress.cpp30 SBAddress::SBAddress (const Address *lldb_object_ptr) : argument
33 if (lldb_object_ptr)
34 ref() = *lldb_object_ptr;
98 SBAddress::SetAddress (const Address *lldb_object_ptr) argument
100 if (lldb_object_ptr)
101 ref() = *lldb_object_ptr;
H A DSBBlock.cpp35 SBBlock::SBBlock (lldb_private::Block *lldb_object_ptr) : argument
36 m_opaque_ptr (lldb_object_ptr)
H A DSBCompileUnit.cpp30 SBCompileUnit::SBCompileUnit (lldb_private::CompileUnit *lldb_object_ptr) : argument
31 m_opaque_ptr (lldb_object_ptr)
259 SBCompileUnit::reset (lldb_private::CompileUnit *lldb_object_ptr) argument
261 m_opaque_ptr = lldb_object_ptr;

Completed in 143 milliseconds