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

1 2

  /external/chromium_org/third_party/angle_dx11/src/common/
RefCountObject.cpp 18 mRefCount = 0;
23 ASSERT(mRefCount == 0);
28 mRefCount++;
33 ASSERT(mRefCount > 0);
35 if (--mRefCount == 0)
RefCountObject.h 36 mutable std::size_t mRefCount;
  /packages/apps/UnifiedEmail/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/include/utils/
FileMap.h 85 FileMap* acquire(void) { mRefCount++; return this; }
91 if (--mRefCount <= 0)
119 int mRefCount; // reference count
  /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 41 private int mRefCount = 1;
139 return mRefCount;
198 mRefCount = 1;
219 ++mRefCount;
220 return mRefCount;
224 --mRefCount;
225 return mRefCount;
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
Settings.java 36 private static int mRefCount = 0;
50 mRefCount++;
63 mRefCount--;
64 if (mRefCount == 0) {
  /frameworks/av/media/libstagefright/
MediaBuffer.cpp 37 mRefCount(0),
50 mRefCount(0),
63 mRefCount(0),
77 mRefCount(0),
90 CHECK_EQ(mRefCount, 0);
95 int prevCount = __atomic_dec(&mRefCount);
109 CHECK_EQ(mRefCount, 1);
111 mRefCount = 0;
115 (void) __atomic_inc(&mRefCount);
187 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) {
  /system/core/libsysutils/src/
SocketClient.cpp 31 mRefCount = 1;
196 mRefCount++;
203 mRefCount--;
204 if (mRefCount == 0) {
206 } else if (mRefCount < 0) {
  /system/core/libutils/
FileMap.cpp 47 : mRefCount(1), mFileName(NULL), mBasePtr(NULL), mBaseLength(0),
57 assert(mRefCount == 0);
61 mRefCount = -100; // help catch double-free
140 assert(mRefCount == 1);
  /frameworks/base/wifi/java/android/net/wifi/
WifiManager.java     [all...]
  /frameworks/av/include/media/stagefright/
MediaBuffer.h 101 int mRefCount;
  /frameworks/compile/slang/
slang_rs_backend.h 61 RSObjectRefCount mRefCount;
slang_rs_backend.cpp 70 mRefCount(mContext->getASTContext()),
80 mRefCount.Init();
81 mRefCount.Visit(FD->getBody());
169 clang::FunctionDecl *FD = mRefCount.CreateStaticGlobalDtor();
  /system/core/include/sysutils/
SocketClient.h 26 int mRefCount;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Program.cpp 142 mRefCount = 0;
316 mRefCount--;
318 if (mRefCount == 0 && mDeleteStatus)
326 mRefCount++;
331 return mRefCount;
Program.h 120 unsigned int mRefCount;
ResourceManager.h 75 std::size_t mRefCount;
ResourceManager.cpp 23 mRefCount = 1;
57 mRefCount++;
62 if (--mRefCount == 0)
Shader.cpp 35 mRefCount = 0;
196 mRefCount++;
201 mRefCount--;
203 if (mRefCount == 0 && mDeleteStatus)
211 return mRefCount;
Shader.h 120 unsigned int mRefCount; // Number of program objects this shader is attached to
  /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/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 453 observer.mRefCount++;
464 observer.mRefCount--;
465 if (observer.mRefCount == 0) {
482 private int mRefCount = 0;
501 return "DirectoryObserver{file=" + mFile.getAbsolutePath() + ", ref=" + mRefCount + "}";
  /frameworks/av/services/audioflinger/
Effects.h 328 SuspendedEffectDesc() : mRefCount(0) {}
330 int mRefCount;

Completed in 5429 milliseconds

1 2