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

  /external/chromium_org/base/memory/
ref_counted.cc 12 bool RefCountedThreadSafeBase::HasOneRef() const {
14 &const_cast<RefCountedThreadSafeBase*>(this)->ref_count_);
17 RefCountedThreadSafeBase::RefCountedThreadSafeBase() : ref_count_(0) {
23 RefCountedThreadSafeBase::~RefCountedThreadSafeBase() {
30 void RefCountedThreadSafeBase::AddRef() const {
37 bool RefCountedThreadSafeBase::Release() const {
ref_counted_delete_on_message_loop.h 34 class RefCountedDeleteOnMessageLoop : public subtle::RefCountedThreadSafeBase {
42 subtle::RefCountedThreadSafeBase::AddRef();
46 if (subtle::RefCountedThreadSafeBase::Release())
ref_counted.h 88 class BASE_EXPORT RefCountedThreadSafeBase {
93 RefCountedThreadSafeBase();
94 ~RefCountedThreadSafeBase();
107 DISALLOW_COPY_AND_ASSIGN(RefCountedThreadSafeBase);
177 class RefCountedThreadSafe : public subtle::RefCountedThreadSafeBase {
182 subtle::RefCountedThreadSafeBase::AddRef();
186 if (subtle::RefCountedThreadSafeBase::Release()) {
raw_scoped_refptr_mismatch_checker.h 39 is_convertible<T, subtle::RefCountedThreadSafeBase*>::value))
scoped_ptr.h 108 class RefCountedThreadSafeBase;
182 !base::is_convertible<T*, base::subtle::RefCountedThreadSafeBase*>::

Completed in 373 milliseconds