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/native/include/utils/
H A DFileMap.h85 FileMap* acquire(void) { mRefCount++; return this; }
91 if (--mRefCount <= 0)
119 int mRefCount; // reference count member in class:android::FileMap
/frameworks/av/include/media/
H A DSoundPool.h75 volatile int32_t mRefCount; member in class:android::Sample
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java1588 private int mRefCount; field in class:WifiManager.WifiLock
1598 mRefCount = 0;
1616 if (mRefCounted ? (++mRefCount == 1) : (!mHeld)) {
1648 if (mRefCounted ? (--mRefCount == 0) : (mHeld)) {
1658 if (mRefCount < 0) {
1722 s3 = "refcounted: refcount = " + mRefCount;
1811 private int mRefCount; field in class:WifiManager.MulticastLock
1818 mRefCount = 0;
1845 if (mRefCounted ? (++mRefCount == 1) : (!mHeld)) {
1889 if (mRefCounted ? (--mRefCount
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDataConnection.java250 protected int mRefCount; field in class:DataConnection
528 mRefCount = 0;
731 if (VDBG) log("REQ_GET_REFCOUNT refCount=" + mRefCount);
732 mAc.replyToMessage(msg, DataConnectionAc.RSP_GET_REFCOUNT, mRefCount);
778 log("DcDefaultState deferring msg.what=EVENT_DISCONNECT" + mRefCount);
785 log("DcDefaultState deferring msg.what=EVENT_DISCONNECT_ALL" + mRefCount);
886 + mRefCount);
888 mRefCount = 1;
932 + mRefCount);
1061 mRefCount
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h665 SuspendedSessionDesc() : mRefCount(0) {}
667 int mRefCount; // number of active suspend requests member in class:android::AudioFlinger::ThreadBase::SuspendedSessionDesc
1885 SuspendedEffectDesc() : mRefCount(0) {}
1887 int mRefCount; member in class:android::AudioFlinger::EffectChain::SuspendedEffectDesc

Completed in 530 milliseconds