Home
last modified time | relevance | path

Searched refs:shared_ptr (Results 1 – 25 of 45) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/
Dlldb-forward.h277 typedef std::shared_ptr<lldb_private::ABI> ABISP;
278 typedef std::shared_ptr<lldb_private::Baton> BatonSP;
279 typedef std::shared_ptr<lldb_private::Block> BlockSP;
280 typedef std::shared_ptr<lldb_private::Breakpoint> BreakpointSP;
282 typedef std::shared_ptr<lldb_private::BreakpointSite> BreakpointSiteSP;
284 typedef std::shared_ptr<lldb_private::BreakpointLocation> BreakpointLocationSP;
286 typedef std::shared_ptr<lldb_private::BreakpointResolver> BreakpointResolverSP;
287 typedef std::shared_ptr<lldb_private::Broadcaster> BroadcasterSP;
288 typedef std::shared_ptr<lldb_private::ClangExpressionVariable> ClangExpressionVariableSP;
289 typedef std::shared_ptr<lldb_private::CommandObject> CommandObjectSP;
[all …]
/freebsd-10-stable/contrib/libc++/include/
Dmemory358 class shared_ptr
364 constexpr shared_ptr() noexcept;
365 template<class Y> explicit shared_ptr(Y* p);
366 template<class Y, class D> shared_ptr(Y* p, D d);
367 template<class Y, class D, class A> shared_ptr(Y* p, D d, A a);
368 template <class D> shared_ptr(nullptr_t p, D d);
369 template <class D, class A> shared_ptr(nullptr_t p, D d, A a);
370 template<class Y> shared_ptr(const shared_ptr<Y>& r, T *p) noexcept;
371 shared_ptr(const shared_ptr& r) noexcept;
372 template<class Y> shared_ptr(const shared_ptr<Y>& r) noexcept;
[all …]
Dcondition_variable125 shared_ptr<mutex> __mut_;
190 shared_ptr<mutex> __mut = __mut_;
212 shared_ptr<mutex> __mut = __mut_;
/freebsd-10-stable/contrib/libstdc++/include/tr1/
Dboost_shared_ptr.h461 class shared_ptr; variable
972 class shared_ptr
976 shared_ptr() in shared_ptr() function
981 shared_ptr(_Tp1* __p) in shared_ptr() function
985 shared_ptr(_Tp1* __p, _Deleter __d) in shared_ptr() function
989 shared_ptr(const shared_ptr<_Tp1>& __r) in shared_ptr() function
994 shared_ptr(const weak_ptr<_Tp1>& __r) in shared_ptr() function
999 shared_ptr(std::auto_ptr<_Tp1>& __r) in shared_ptr() function
1003 shared_ptr(const shared_ptr<_Tp1>& __r, __static_cast_tag) in shared_ptr() function
1007 shared_ptr(const shared_ptr<_Tp1>& __r, __const_cast_tag) in shared_ptr() function
[all …]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugLine.h72 typedef std::shared_ptr<Prologue> shared_ptr; typedef
135 typedef std::shared_ptr<LineTable> shared_ptr; typedef
153 Prologue::shared_ptr prologue;
171 State (Prologue::shared_ptr& prologue_sp,
185 Prologue::shared_ptr prologue;
212 LineTable::shared_ptr GetLineTable(const dw_offset_t offset) const;
215 typedef std::map<dw_offset_t, LineTable::shared_ptr> LineTableMap;
DDWARFDebugLine.cpp39 LineTable::shared_ptr line_table_sp(new LineTable); in Parse()
72 DWARFDebugLine::LineTable::shared_ptr
75 DWARFDebugLine::LineTable::shared_ptr line_table_shared_ptr; in GetLineTable()
585 Prologue::shared_ptr prologue(new Prologue()); in ParseStatementTable()
1203 DWARFDebugLine::State::State(Prologue::shared_ptr& p, Log *l, DWARFDebugLine::State::Callback cb, v… in State()
DDWARFDebugInfo.h24 typedef std::shared_ptr<DWARFCompileUnit> DWARFCompileUnitSP;
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/
DObjectContainerBSDArchive.h127 typedef std::shared_ptr<Archive> shared_ptr; typedef
128 typedef std::multimap<lldb_private::FileSpec, shared_ptr> Map;
136 static Archive::shared_ptr
142 static Archive::shared_ptr
224 SetArchive (Archive::shared_ptr &archive_sp);
226 Archive::shared_ptr m_archive_sp;
DObjectContainerBSDArchive.cpp199 ObjectContainerBSDArchive::Archive::shared_ptr
203 shared_ptr archive_sp; in FindCachedArchive()
241 ObjectContainerBSDArchive::Archive::shared_ptr
251 shared_ptr archive_sp(new Archive (arch, time, file_offset, data)); in ParseAndCacheArchiveForFile()
345 Archive::shared_ptr archive_sp (Archive::FindCachedArchive (*file, in CreateInstance()
372 Archive::shared_ptr archive_sp (Archive::FindCachedArchive (*file, in CreateInstance()
422 ObjectContainerBSDArchive::SetArchive (Archive::shared_ptr &archive_sp) in SetArchive()
543 …Archive::shared_ptr archive_sp (Archive::FindCachedArchive (file, ArchSpec(), file_mod_time, file_… in GetModuleSpecifications()
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
DTypeFormat.h135 typedef std::shared_ptr<TypeFormatImpl> SharedPointer;
229 typedef std::shared_ptr<TypeFormatImpl_Format> SharedPointer;
272 typedef std::shared_ptr<TypeFormatImpl_EnumType> SharedPointer;
DTypeSynthetic.h84 typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer;
264 typedef std::shared_ptr<SyntheticChildren> SharedPointer;
432 typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer;
596 typedef std::shared_ptr<SyntheticChildrenFrontEnd> SharedPointer;
DTypeSummary.h333 typedef std::shared_ptr<TypeSummaryImpl> SharedPointer;
463 typedef std::shared_ptr<CXXFunctionSummaryFormat> SharedPointer;
537 typedef std::shared_ptr<ScriptSummaryFormat> SharedPointer;
DFormatClasses.h80 IsMatch (const std::shared_ptr<Formatter>& formatter_sp) const in IsMatch()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
DUnwindLLDB.h81 typedef std::shared_ptr<RegisterContextLLDB> RegisterContextLLDBSP;
126 typedef std::shared_ptr<Cursor> CursorSP;
DRegisterContextDummy.h24 typedef std::shared_ptr<RegisterContextDummy> SharedPtr;
DRegisterContextHistory.h24 typedef std::shared_ptr<RegisterContextHistory> SharedPtr;
DRegisterContextLLDB.h28 typedef std::shared_ptr<RegisterContextLLDB> SharedPtr;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
DClangASTImporter.h159 typedef std::shared_ptr<NamespaceMap> NamespaceMapSP;
289 typedef std::shared_ptr<Minion> MinionSP;
312 typedef std::shared_ptr<ASTContextMetadata> ASTContextMetadataSP;
DDWARFCallFrameInfo.h101 typedef std::shared_ptr<CIE> CIESP;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
DSBQueue.h78 std::shared_ptr<lldb_private::QueueImpl> m_opaque_sp;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Utility/
DPriorityPointerPair.h33 typedef typename std::shared_ptr<T> T_SP;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Target/
DMemory.h173 typedef std::shared_ptr<AllocatedBlock> AllocatedBlockSP;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Expression/
DClangUserExpression.h50 typedef std::shared_ptr<ClangUserExpression> ClangUserExpressionSP;
DMaterializer.h82 typedef std::shared_ptr<Dematerializer> DematerializerSP;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
DSourceManager.h98 typedef std::shared_ptr<File> FileSP;

12