Searched refs:weak_count (Results 1 – 3 of 3) sorted by relevance
59 class weak_count;71 friend class weak_count;331 explicit shared_count(weak_count const & r); // throws bad_weak_ptr when r.use_count() == 0332 …shared_count( weak_count const & r, sp_nothrow_tag ); // constructs an empty *this when r.use_coun…387 class weak_count class401 weak_count(): pi_(0) // nothrow in weak_count() function in boost::detail::weak_count408 weak_count(shared_count const & r): pi_(r.pi_) // nothrow in weak_count() function in boost::detail::weak_count416 weak_count(weak_count const & r): pi_(r.pi_) // nothrow in weak_count() function in boost::detail::weak_count428 weak_count(weak_count && r): pi_(r.pi_) // nothrow in weak_count() function in boost::detail::weak_count438 ~weak_count() // nothrow in ~weak_count()[all …]
24 int weak_count; member26 SymbolLookupState() : found_addr(NULL), weak_addr(NULL), weak_count(0) {} in SymbolLookupState()43 if (++weak_count == 1) in CheckSymbol()121 if (lookup_state.weak_count >= 1) { in FindSymbolFrom()
87 class weak_count;