HomeSort by relevance Sort by last modified time
    Searched refs:fLockCount (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
SkPixelRef.cpp 66 fLockCount = 0;
77 fLockCount = 0;
85 // only call me in your constructor, otherwise fLockCount tracking can get
89 fLockCount = SKPIXELREF_PRELOCKED_LOCKCOUNT;
110 SkASSERT(!fPreLocked || SKPIXELREF_PRELOCKED_LOCKCOUNT == fLockCount);
115 if (1 == ++fLockCount) {
122 SkASSERT(!fPreLocked || SKPIXELREF_PRELOCKED_LOCKCOUNT == fLockCount);
127 SkASSERT(fLockCount > 0);
128 if (0 == --fLockCount) {
SkCanvas.cpp 80 fLockCount = fPixelRef ? fPixelRef->getLockCount() : 0;
84 SkASSERT(count == fLockCount);
89 int fLockCount;
    [all...]
  /external/skia/legacy/src/core/
SkPixelRef.cpp 63 fLockCount = 0;
73 fLockCount = 0;
80 // only call me in your constructor, otherwise fLockCount tracking can get
84 fLockCount = SKPIXELREF_PRELOCKED_LOCKCOUNT;
93 SkASSERT(!fPreLocked || SKPIXELREF_PRELOCKED_LOCKCOUNT == fLockCount);
98 if (1 == ++fLockCount) {
105 SkASSERT(!fPreLocked || SKPIXELREF_PRELOCKED_LOCKCOUNT == fLockCount);
110 SkASSERT(fLockCount > 0);
111 if (0 == --fLockCount) {
  /external/skia/include/core/
SkPixelRef.h 66 bool isLocked() const { return fLockCount > 0; }
68 SkDEBUGCODE(int getLockCount() const { return fLockCount; })
224 int fLockCount;
  /external/skia/legacy/include/core/
SkPixelRef.h 69 bool isLocked() const { return fLockCount > 0; }
229 int fLockCount;
  /external/icu4c/test/cintltst/
hpmufn.c 216 int fLockCount;
226 theMutex->fLockCount = 0;
239 TEST_ASSERT(This->fLockCount == 0);
242 This->fLockCount = 0;
250 This->fLockCount++;
258 This->fLockCount--;
259 TEST_ASSERT(This->fLockCount >= 0);

Completed in 406 milliseconds