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

  /external/chromium/base/memory/
ref_counted.cc 54 bool RefCountedThreadSafeBase::HasOneRef() const {
56 &const_cast<RefCountedThreadSafeBase*>(this)->ref_count_);
59 RefCountedThreadSafeBase::RefCountedThreadSafeBase() : ref_count_(0) {
65 RefCountedThreadSafeBase::~RefCountedThreadSafeBase() {
72 void RefCountedThreadSafeBase::AddRef() const {
79 bool RefCountedThreadSafeBase::Release() const {
ref_counted.h 43 class BASE_API RefCountedThreadSafeBase {
50 RefCountedThreadSafeBase();
51 ~RefCountedThreadSafeBase();
64 DISALLOW_COPY_AND_ASSIGN(RefCountedThreadSafeBase);
132 class RefCountedThreadSafe : public subtle::RefCountedThreadSafeBase {
138 subtle::RefCountedThreadSafeBase::AddRef();
142 if (subtle::RefCountedThreadSafeBase::Release()) {
raw_scoped_refptr_mismatch_checker.h 40 is_convertible<T, subtle::RefCountedThreadSafeBase*>::value))

Completed in 53 milliseconds