HomeSort by relevance Sort by last modified time
    Searched refs:RefCountedThreadSafeBase (Results 1 - 3 of 3) sorted by null

  /external/libchrome/base/memory/
ref_counted.cc 20 bool RefCountedThreadSafeBase::HasOneRef() const {
24 RefCountedThreadSafeBase::~RefCountedThreadSafeBase() {
31 void RefCountedThreadSafeBase::AddRef() const {
42 bool RefCountedThreadSafeBase::Release() const {
raw_scoped_refptr_mismatch_checker.h 34 std::is_convertible<T, subtle::RefCountedThreadSafeBase*>::value))
ref_counted.h 131 class BASE_EXPORT RefCountedThreadSafeBase {
136 explicit RefCountedThreadSafeBase(StartRefCountFromZeroTag) {}
137 explicit RefCountedThreadSafeBase(StartRefCountFromOneTag) : ref_count_(1) {
143 ~RefCountedThreadSafeBase();
167 DISALLOW_COPY_AND_ASSIGN(RefCountedThreadSafeBase);
296 class RefCountedThreadSafe : public subtle::RefCountedThreadSafeBase {
302 : subtle::RefCountedThreadSafeBase(T::kRefCountPreference) {}
305 subtle::RefCountedThreadSafeBase::AddRef();
309 if (subtle::RefCountedThreadSafeBase::Release()) {

Completed in 132 milliseconds