/external/webrtc/webrtc/system_wrappers/include/ |
ref_count.h | 46 RefCountImpl() : ref_count_(0) {} 49 explicit RefCountImpl(P p) : T(p), ref_count_(0) {} 52 RefCountImpl(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) {} 55 RefCountImpl(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) {} 58 RefCountImpl(P1 p1, P2 p2, P3 p3, P4 p4) : T(p1, p2, p3, p4), ref_count_(0) {} 62 : T(p1, p2, p3, p4, p5), ref_count_(0) {} 65 return ++ref_count_; 70 ref_count = --ref_count_; 77 mutable Atomic32 ref_count_; member in class:webrtc::RefCountImpl
|
/external/webrtc/webrtc/video/ |
payload_router.h | 66 void AddRef() { ++ref_count_; } 67 void Release() { if (--ref_count_ == 0) { delete this; } } 78 Atomic32 ref_count_; member in class:webrtc::PayloadRouter
|
/external/webrtc/webrtc/modules/desktop_capture/mac/ |
desktop_configuration_monitor.h | 41 void AddRef() { ++ref_count_; } 43 if (--ref_count_ == 0) 56 Atomic32 ref_count_; member in class:webrtc::DesktopConfigurationMonitor
|
full_screen_chrome_window_detector.h | 37 void AddRef() { ++ref_count_; } 39 if (--ref_count_ == 0) 54 Atomic32 ref_count_; member in class:webrtc::FullScreenChromeWindowDetector
|
/frameworks/av/include/common_time/ |
cc_helper.h | 67 static uint32_t ref_count_; member in class:android::CCHelper
|
/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.h | 181 LONG ref_count_;
member in class:AdbObjectHandle
|
/external/libchrome/base/ |
callback_internal.h | 42 : ref_count_(0), destructor_(destructor) {} 52 AtomicRefCount ref_count_; member in class:base::internal::BindStateBase
|
/external/libweave/third_party/chromium/base/ |
callback_internal.h | 41 : ref_count_(0), destructor_(destructor) {} 51 std::atomic<int32_t> ref_count_; member in class:base::internal::BindStateBase
|
/external/webrtc/webrtc/audio/ |
audio_state.h | 54 mutable volatile int ref_count_ = 0; member in class:webrtc::internal::final
|
/external/webrtc/webrtc/base/ |
refcount.h | 32 RefCountedObject() : ref_count_(0) { 36 explicit RefCountedObject(P p) : T(p), ref_count_(0) { 40 RefCountedObject(P1 p1, P2 p2) : T(p1, p2), ref_count_(0) { 44 RefCountedObject(P1 p1, P2 p2, P3 p3) : T(p1, p2, p3), ref_count_(0) { 49 : T(p1, p2, p3, p4), ref_count_(0) { 54 : T(p1, p2, p3, p4, p5), ref_count_(0) { 60 : T(p1, p2, p3, p4, p5, p6), ref_count_(0) { 66 : T(p1, p2, p3, p4, p5, p6, p7), ref_count_(0) { 72 : T(p1, p2, p3, p4, p5, p6, p7, p8), ref_count_(0) { 79 : T(p1, p2, p3, p4, p5, p6, p7, p8, p9), ref_count_(0) 124 mutable volatile int ref_count_; member in class:rtc::RefCountedObject [all...] |
referencecountedsingletonfactory.h | 35 ReferenceCountedSingletonFactory() : ref_count_(0) {} 38 ASSERT(ref_count_ == 0); 53 if (ref_count_ == 0) { 60 ++ref_count_; 62 LOG(LS_VERBOSE) << "Number of references: " << ref_count_; 68 ASSERT(ref_count_ > 0); 70 --ref_count_; 71 LOG(LS_VERBOSE) << "Number of references: " << ref_count_; 72 if (ref_count_ == 0) { 78 int ref_count_; member in class:rtc::ReferenceCountedSingletonFactory [all...] |
bind_unittest.cc | 59 LifeTimeCheck() : ref_count_(0) {} 60 void AddRef() { ++ref_count_; } 61 void Release() { --ref_count_; } 63 int ref_count_; member in struct:rtc::__anon27567::LifeTimeCheck 164 EXPECT_EQ(object.ref_count_, 0); 166 EXPECT_EQ(object.ref_count_, 1); 169 EXPECT_EQ(object.ref_count_, 2); 171 EXPECT_EQ(object.ref_count_, 1); 173 EXPECT_EQ(object.ref_count_, 0); 180 EXPECT_EQ(object.ref_count_, 0) [all...] |
stream.h | 652 : stream_(stream), ref_count_(1) { 656 ++ref_count_; 662 ref_count = --ref_count_; 671 int ref_count_; member in class:rtc::StreamReference::StreamRefCount
|
/external/webrtc/webrtc/modules/desktop_capture/x11/ |
shared_x_display.h | 51 void AddRef() { ++ref_count_; } 53 if (--ref_count_ == 0) 74 Atomic32 ref_count_; member in class:webrtc::SharedXDisplay
|
/frameworks/av/media/common_time/ |
cc_helper.cpp | 28 uint32_t CCHelper::ref_count_ = 0; member in class:android::CCHelper 39 if (ref_count_ > 0) { 62 ref_count_++; 69 assert(ref_count_ > 0); 70 ref_count_--; 75 if (!ref_count_ &&
|
/external/webrtc/webrtc/modules/desktop_capture/ |
shared_desktop_frame.cc | 24 bool HasOneRef() { return ref_count_.Value() == 1; } 27 return ++ref_count_; 32 ref_count = --ref_count_; 41 Atomic32 ref_count_; member in class:webrtc::SharedDesktopFrame::Core
|
/system/core/libbacktrace/ |
ThreadEntry.h | 58 int ref_count_; member in class:ThreadEntry
|
/art/runtime/base/ |
debug_stack.h | 77 DebugStackRefCounterImpl() : ref_count_(0u) { } 79 size_t IncrementRefCount() { return ++ref_count_; } 80 void DecrementRefCount() { --ref_count_; } 81 size_t GetRefCount() const { return ref_count_; } 82 void CheckNoRefs() const { CHECK_EQ(ref_count_, 0u); } 85 size_t ref_count_; member in class:art::DebugStackRefCounterImpl 92 : counter_(counter), ref_count_(counter->IncrementRefCount()) { 95 : counter_(other.counter_), ref_count_(counter_->IncrementRefCount()) { 102 void CheckTop() { CHECK_EQ(counter_->GetRefCount(), ref_count_); } 106 size_t ref_count_; member in class:art::DebugStackReferenceImpl [all...] |
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
forward_error_correction.h | 42 Packet() : length(0), data(), ref_count_(0) {} 56 int32_t ref_count_; // Counts the number of references to a packet. member in class:webrtc::ForwardErrorCorrection::Packet
|
/external/sfntly/cpp/src/sfntly/port/ |
refcount.h | 89 typeid(this).name(), object_counter_, object_id_, ref_count_) 125 RefCounted() : ref_count_(0) { 132 RefCounted(const RefCounted<TDerived>&) : ref_count_(0) {} 146 size_t new_count = AtomicIncrement(&ref_count_); 152 size_t new_ref_count = AtomicDecrement(&ref_count_); 162 mutable size_t ref_count_; // reference count of current object member in class:sfntly::RefCounted
|
/external/v8/src/ |
optimizing-compile-dispatcher.h | 36 ref_count_(0), 123 int ref_count_; member in class:v8::internal::OptimizingCompileDispatcher
|
/external/libchrome/base/memory/ |
ref_counted.h | 27 bool HasOneRef() const { return ref_count_ == 1; } 31 : ref_count_(0) 53 ++ref_count_; 65 if (--ref_count_ == 0) { 75 mutable int ref_count_; member in class:base::subtle::RefCountedBase 99 mutable AtomicRefCount ref_count_; member in class:base::subtle::RefCountedThreadSafeBase
|
/external/libweave/third_party/chromium/base/memory/ |
ref_counted.h | 24 bool HasOneRef() const { return ref_count_ == 1; } 28 : ref_count_(0) 46 ++ref_count_; 54 if (--ref_count_ == 0) { 64 mutable int ref_count_; member in class:base::subtle::RefCountedBase 86 mutable std::atomic<int32_t> ref_count_; member in class:base::subtle::RefCountedThreadSafeBase
|
/bionic/linker/ |
linker.h | 268 size_t ref_count_; member in struct:soinfo
|