Searched defs:mRefCount (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/include/media/stagefright/
H A DMediaBuffer.h101 int mRefCount; member in class:android::MediaBuffer
/frameworks/compile/slang/
H A Dslang_rs_backend.h61 RSObjectRefCount mRefCount; member in class:slang::RSBackend
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeBuffer.java34 private int mRefCount = 1; field in class:NativeBuffer
75 ++mRefCount;
86 --mRefCount;
87 doDealloc = (mRefCount == 0);
H A DFrame.java41 private int mRefCount = 1; field in class:Frame
139 return mRefCount;
198 mRefCount = 1;
219 ++mRefCount;
220 return mRefCount;
224 --mRefCount;
225 return mRefCount;
/frameworks/av/include/media/
H A DSoundPool.h79 volatile int32_t mRefCount; member in class:android::Sample
/frameworks/av/services/audioflinger/
H A DEffects.h328 SuspendedEffectDesc() : mRefCount(0) {}
330 int mRefCount; member in class:EffectChain::SuspendedEffectDesc
H A DThreads.h234 SuspendedSessionDesc() : mRefCount(0) {}
236 int mRefCount; // number of active suspend requests member in class:ThreadBase::SuspendedSessionDesc
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DBackingStore.java65 private int mRefCount = 1; field in class:BackingStore
111 if (mRefCount >= 10) {
112 Log.w("BackingStore", "High ref-count of " + mRefCount + " on " + this + "!");
114 if (mRefCount <= 0) {
117 ++mRefCount;
122 if (mRefCount <= 0) {
125 --mRefCount;
126 if (mRefCount == 0) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java1759 private int mRefCount; field in class:WifiManager.WifiLock
1769 mRefCount = 0;
1787 if (mRefCounted ? (++mRefCount == 1) : (!mHeld)) {
1819 if (mRefCounted ? (--mRefCount == 0) : (mHeld)) {
1829 if (mRefCount < 0) {
1896 s3 = "refcounted: refcount = " + mRefCount;
1985 private int mRefCount; field in class:WifiManager.MulticastLock
1992 mRefCount = 0;
2019 if (mRefCounted ? (++mRefCount == 1) : (!mHeld)) {
2063 if (mRefCounted ? (--mRefCount
[all...]

Completed in 238 milliseconds