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

/frameworks/base/services/core/java/com/android/server/pm/
H A DKeySetHandle.java23 private int mRefCount; field in class:KeySetHandle
27 mRefCount = 1;
35 mRefCount = refCount;
43 return mRefCount;
50 mRefCount = newCount;
55 mRefCount++;
60 mRefCount--;
61 return mRefCount;
H A DKeySetManagerService.java71 private int mRefCount; field in class:KeySetManagerService.PublicKeyHandle
75 mRefCount = 1;
84 mRefCount = refCount;
97 return mRefCount;
101 mRefCount++;
106 mRefCount--;
107 return mRefCount;
/frameworks/av/include/media/stagefright/
H A DMediaBuffer.h103 int mRefCount; member in class:android::MediaBuffer
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioInputDescriptor.h46 uint32_t mRefCount; // number of AudioRecord clients using member in class:android::AudioInputDescriptor
H A DSessionRoute.h48 mRefCount(0),
66 int mRefCount; // +/- on references member in class:android::SessionRoute
H A DAudioOutputDescriptor.h75 uint32_t mRefCount[AUDIO_STREAM_CNT]; // number of streams of each type using this output member in class:android::AudioOutputDescriptor
/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.java40 private int mRefCount = 1; field in class:Frame
138 return mRefCount;
197 mRefCount = 1;
218 ++mRefCount;
219 return mRefCount;
223 --mRefCount;
224 return mRefCount;
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.h138 EffectVector(int session) : mSessionId(session), mRefCount(0) {}
146 int mRefCount; member in class:android::AudioPolicyEffects::EffectVector
/frameworks/compile/slang/
H A Dslang_backend.h101 RSObjectRefCount mRefCount; member in class:slang::Backend
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DReusableBitmap.java32 private int mRefCount = 0; field in class:ReusableBitmap
79 mRefCount++;
84 if (mRefCount == 0) {
87 mRefCount--;
92 return mRefCount;
100 sb.append(mRefCount);
/frameworks/base/core/java/android/net/
H A DNetworkFactory.java106 private int mRefCount = 0; field in class:NetworkFactory
263 if (++mRefCount == 1) startNetwork();
267 if (--mRefCount == 0) stopNetwork();
311 append(mNetworkRequests.size()).append(", refCount=").append(mRefCount).
H A DConnectivityManager.java2293 private final AtomicInteger mRefCount; field in class:ConnectivityManager.CallbackHandler
2302 mRefCount = refCount;
2387 synchronized(mRefCount) {
2388 if (mRefCount.decrementAndGet() == 0) {
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
H A DExternalStorageProvider.java551 observer.mRefCount++;
562 observer.mRefCount--;
563 if (observer.mRefCount == 0) {
580 private int mRefCount = 0; field in class:ExternalStorageProvider.DirectoryObserver
599 return "DirectoryObserver{file=" + mFile.getAbsolutePath() + ", ref=" + mRefCount + "}";
/frameworks/av/services/audioflinger/
H A DEffects.h340 SuspendedEffectDesc() : mRefCount(0) {}
342 int mRefCount; member in class:EffectChain::SuspendedEffectDesc
H A DThreads.h377 SuspendedSessionDesc() : mRefCount(0) {}
379 int mRefCount; // number of active suspend requests member in class:ThreadBase::SuspendedSessionDesc
/frameworks/base/media/jni/soundpool/
H A DSoundPool.h72 volatile int32_t mRefCount; member in class:android::Sample
/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/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DApnContext.java81 private int mRefCount = 0; field in class:ApnContext
304 if (mRefCount == 0) {
311 log.log("ApnContext.incRefCount has duplicate add - " + mRefCount);
314 log.log("ApnContext.incRefCount - " + mRefCount);
316 if (mRefCount++ == 0) {
325 if (mRefCount != 1) {
327 log.log("ApnContext.decRefCount - " + mRefCount);
329 log.log("ApnContext.decRefCount didn't find log - " + mRefCount);
334 if (mRefCount-- == 1) {
337 if (mRefCount <
[all...]
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionService.java1054 private int mRefCount = 0; field in class:MediaSessionService.SessionManagerImpl.KeyEventWakeLockReceiver
1064 if (mRefCount == 0) {
1069 mRefCount = 0;
1075 if (mRefCount == 0) {
1078 mRefCount++;
1097 if (mRefCount > 0) {
1098 mRefCount--;
1099 if (mRefCount == 0) {
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java2323 private int mRefCount; field in class:WifiManager.WifiLock
2333 mRefCount = 0;
2351 if (mRefCounted ? (++mRefCount == 1) : (!mHeld)) {
2383 if (mRefCounted ? (--mRefCount == 0) : (mHeld)) {
2393 if (mRefCount < 0) {
2460 s3 = "refcounted: refcount = " + mRefCount;
2549 private int mRefCount; field in class:WifiManager.MulticastLock
2556 mRefCount = 0;
2583 if (mRefCounted ? (++mRefCount == 1) : (!mHeld)) {
2627 if (mRefCounted ? (--mRefCount
[all...]

Completed in 519 milliseconds