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

  /external/chromium/base/
ref_counted.cc 15 : ref_count_(0)
35 ++ref_count_;
45 if (--ref_count_ == 0) {
54 RefCountedThreadSafeBase::RefCountedThreadSafeBase() : ref_count_(0) {
71 AtomicRefCountInc(&ref_count_);
77 DCHECK(!AtomicRefCountIsZero(&ref_count_));
79 if (!AtomicRefCountDec(&ref_count_)) {
90 &const_cast<RefCountedThreadSafeBase*>(this)->ref_count_);
ref_counted.h 19 bool HasOneRef() const { return ref_count_ == 1; }
31 int ref_count_; member in class:base::subtle::RefCountedBase
57 AtomicRefCount ref_count_; member in class:base::subtle::RefCountedThreadSafeBase
base_drop_target.cc 19 ref_count_(0) {
137 return ++ref_count_;
141 if (--ref_count_ == 0) {
145 return ref_count_;
base_drop_target.h 126 LONG ref_count_; member in class:BaseDropTarget
  /development/host/windows/usb/api/
adb_api_instance.h 77 return InterlockedIncrement(&ref_count_);
87 LONG ret = InterlockedDecrement(&ref_count_);
107 LONG ref_count_; member in class:AdbApiInstance
adb_object_handle.cpp 39 ref_count_(1) {
44 ATLASSERT(0 == ref_count_);
49 ATLASSERT(ref_count_ > 0);
50 return InterlockedIncrement(&ref_count_);
54 ATLASSERT(ref_count_ > 0);
55 LONG ret = InterlockedDecrement(&ref_count_);
adb_api_instance.cpp 34 : ref_count_(1) {
adb_object_handle.h 181 LONG ref_count_; member in class:AdbObjectHandle
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.cpp 37 ATLASSERT(ref_count_ > 0);
38 LONG ret = InterlockedDecrement(&ref_count_);
adb_winusb_endpoint_object.cpp 37 ATLASSERT(ref_count_ > 0);
38 LONG ret = InterlockedDecrement(&ref_count_);
adb_winusb_interface.cpp 44 ATLASSERT(ref_count_ > 0);
45 LONG ret = InterlockedDecrement(&ref_count_);
  /external/chromium/net/disk_cache/
mem_entry_impl.cc 41 ref_count_ = 0;
73 ref_count_--;
74 DCHECK(ref_count_ >= 0);
75 if (!ref_count_ && doomed_)
333 if (!ref_count_) {
361 ref_count_++;
362 DCHECK(ref_count_ >= 0);
368 return ref_count_ > 0;
mem_entry_impl.h 147 int ref_count_; member in class:disk_cache::MemEntryImpl
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
encode.h 210 : ref_count_(1), flags_(flags), type_(type),
214 : ref_count_(mapper.ref_count_ + 1),
221 : ref_count_(mapper.ref_count_ + 1),
227 if (--ref_count_ == 0) delete table_;
307 uint32 ref_count_; member in class:fst::EncodeMapper
313 : ref_count_(1), flags_(flags), type_(type), table_(table) {}
symbol-table.h 41 : name_(name), available_key_(0), ref_count_(1),
103 return ++ref_count_;
106 return --ref_count_;
132 mutable int ref_count_; member in class:fst::SymbolTableImpl
fst.h 403 ref_count_(1) {}
409 ref_count_(1) {}
449 int RefCount() const { return ref_count_; }
451 int IncrRefCount() { return ++ref_count_; }
453 int DecrRefCount() { return --ref_count_; }
526 int ref_count_; // Reference count member in class:fst::FstImpl

Completed in 332 milliseconds