HomeSort by relevance Sort by last modified time
    Searched refs:mRefCount (Results 1 - 25 of 47) sorted by null

1 2

  /hardware/intel/img/hwcomposer/include/
BufferMapper.h 28 mRefCount(0)
35 mRefCount++;
36 return mRefCount;
40 mRefCount--;
41 return mRefCount;
46 return mRefCount;
62 int mRefCount;
  /sdk/emulator/opengl/shared/emugl/common/
smart_ptr.cpp 60 SmartPtrBase::SmartPtrBase(void* ptr) : mPtr(ptr), mRefCount(NULL) {
62 mRefCount = new RefCount();
67 : mPtr(other.mPtr), mRefCount(other.mRefCount) {
68 if (mRefCount)
69 mRefCount->increment();
74 return mRefCount ? mRefCount->count() : 0;
79 if (mRefCount)
80 mRefCount->increment()
    [all...]
smart_ptr.h 30 SmartPtrBase() : mPtr(NULL), mRefCount(NULL) {}
68 RefCount* mRefCount;
  /external/chromium_org/third_party/angle/src/common/
RefCountObject.cpp 17 mRefCount = 0;
22 ASSERT(mRefCount == 0);
27 mRefCount++;
32 ASSERT(mRefCount > 0);
34 if (--mRefCount == 0)
RefCountObject.h 35 mutable std::size_t mRefCount;
  /system/core/logd/
LogTimes.h 30 unsigned int mRefCount;
76 if (mRefCount || threadRunning) {
91 void incRef_Locked(void) { ++mRefCount; }
93 bool owned_Locked(void) const { return mRefCount != 0; }
96 if ((mRefCount && --mRefCount) || !mRelease || threadRunning) {
  /system/core/include/utils/
FileMap.h 85 FileMap* acquire(void) { mRefCount++; return this; }
91 if (--mRefCount <= 0)
119 int mRefCount; // reference count
  /frameworks/opt/bitmap/src/com/android/bitmap/
ReusableBitmap.java 32 private int mRefCount = 0;
79 mRefCount++;
84 if (mRefCount == 0) {
87 mRefCount--;
92 return mRefCount;
100 sb.append(mRefCount);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeBuffer.java 34 private int mRefCount = 1;
75 ++mRefCount;
86 --mRefCount;
87 doDealloc = (mRefCount == 0);
Frame.java 40 private int mRefCount = 1;
138 return mRefCount;
197 mRefCount = 1;
218 ++mRefCount;
219 return mRefCount;
223 --mRefCount;
224 return mRefCount;
  /frameworks/av/media/libstagefright/
MediaBuffer.cpp 36 mRefCount(0),
49 mRefCount(0),
62 mRefCount(0),
76 mRefCount(0),
89 CHECK_EQ(mRefCount, 0);
94 int prevCount = __sync_fetch_and_sub(&mRefCount, 1);
108 CHECK_EQ(mRefCount, 1);
110 mRefCount = 0;
114 (void) __sync_fetch_and_add(&mRefCount, 1);
186 return mRefCount;
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Suggestions.java 44 private int mRefCount = 0;
54 mRefCount++;
58 mRefCount--;
59 if (mRefCount <= 0) {
  /hardware/intel/img/hwcomposer/ips/common/
TTMBufferMapper.h 56 int mRefCount;
TTMBufferMapper.cpp 24 mRefCount(0),
  /external/chromium_org/third_party/angle/src/libGLESv2/
Shader.cpp 31 mRefCount(0),
127 mRefCount++;
132 mRefCount--;
134 if (mRefCount == 0 && mDeleteStatus)
142 return mRefCount;
  /system/core/libutils/
FileMap.cpp 51 : mRefCount(1), mFileName(NULL), mBasePtr(NULL), mBaseLength(0),
59 assert(mRefCount == 0);
63 mRefCount = -100; // help catch double-free
139 assert(mRefCount == 1);
  /system/core/libsysutils/src/
SocketClient.cpp 32 mRefCount = 1;
229 mRefCount++;
236 mRefCount--;
237 if (mRefCount == 0) {
239 } else if (mRefCount < 0) {
  /frameworks/av/services/audiopolicy/
AudioPolicyEffects.cpp 105 inputDesc->mRefCount++;
107 ALOGV("addInputEffects(): input: %d, refCount: %d", input, inputDesc->mRefCount);
108 if (inputDesc->mRefCount == 1) {
144 inputDesc->mRefCount--;
145 ALOGV("releaseInputEffects(): input: %d, refCount: %d", input, inputDesc->mRefCount);
146 if (inputDesc->mRefCount == 0) {
249 procDesc->mRefCount++;
252 audioSession, procDesc->mRefCount);
253 if (procDesc->mRefCount == 1) {
292 procDesc->mRefCount--
    [all...]
AudioPolicyEffects.h 138 EffectVector(int session) : mSessionId(session), mRefCount(0) {}
146 int mRefCount;
  /frameworks/av/include/media/stagefright/
MediaBuffer.h 103 int mRefCount;
  /frameworks/compile/slang/
slang_rs_backend.h 60 RSObjectRefCount mRefCount;
  /system/core/include/sysutils/
SocketClient.h 27 int mRefCount;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java 65 private int mRefCount = 1;
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/core/java/android/net/
NetworkFactory.java 104 private int mRefCount = 0;
254 if (++mRefCount == 1) startNetwork();
258 if (--mRefCount == 0) stopNetwork();
  /frameworks/base/wifi/java/android/net/wifi/
WifiManager.java     [all...]

Completed in 926 milliseconds

1 2