HomeSort by relevance Sort by last modified time
    Searched defs:mRefCount (Results 1 - 25 of 29) 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;
  /hardware/intel/img/hwcomposer/ips/common/
TTMBufferMapper.h 56 int mRefCount;
  /external/chromium_org/third_party/angle/src/common/
RefCountObject.h 35 mutable std::size_t mRefCount;
  /frameworks/av/include/media/stagefright/
MediaBuffer.h 103 int mRefCount;
  /frameworks/compile/slang/
slang_rs_backend.h 60 RSObjectRefCount mRefCount;
  /sdk/emulator/opengl/shared/emugl/common/
smart_ptr.h 30 SmartPtrBase() : mPtr(NULL), mRefCount(NULL) {}
68 RefCount* mRefCount;
  /system/core/include/sysutils/
SocketClient.h 27 int mRefCount;
  /external/chromium_org/third_party/angle/src/libGLESv2/
Program.h 140 unsigned int mRefCount;
ResourceManager.h 81 std::size_t mRefCount;
Shader.h 107 unsigned int mRefCount; // Number of program objects this shader is attached to
  /frameworks/av/services/audiopolicy/
AudioPolicyEffects.h 138 EffectVector(int session) : mSessionId(session), mRefCount(0) {}
146 int mRefCount;
AudioPolicyManager.h 507 uint32_t mRefCount[AUDIO_STREAM_CNT]; // number of streams of each type using this output
533 uint32_t mRefCount; // number of AudioRecord clients using
    [all...]
  /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;
  /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);
  /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) {
  /frameworks/base/core/java/android/net/
NetworkFactory.java 104 private int mRefCount = 0;
254 if (++mRefCount == 1) startNetwork();
258 if (--mRefCount == 0) stopNetwork();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Suggestions.java 44 private int mRefCount = 0;
54 mRefCount++;
58 mRefCount--;
59 if (mRefCount <= 0) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnContext.java 76 private int mRefCount = 0;
274 if (mRefCount++ == 0) {
282 if (mRefCount-- == 1) {
  /frameworks/av/include/media/
SoundPool.h 79 volatile int32_t mRefCount;
  /frameworks/av/services/audioflinger/
Effects.h 340 SuspendedEffectDesc() : mRefCount(0) {}
342 int mRefCount;
Threads.h 366 SuspendedSessionDesc() : mRefCount(0) {}
368 int mRefCount; // number of active suspend requests
    [all...]
  /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) {
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioPolicyManagerBase.h 280 uint32_t mRefCount[AudioSystem::NUM_STREAM_TYPES]; // number of streams of each type using this output
306 uint32_t mRefCount; // number of AudioRecord clients using this output

Completed in 1061 milliseconds

1 2