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

  /external/skia/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);
  /external/skia/src/gpu/
GrResourceCache.h 141 bool isLocked() const { return fLockCount != 0; }
142 void lock() { ++fLockCount; }
144 GrAssert(fLockCount > 0);
145 --fLockCount;
153 int fLockCount;

Completed in 317 milliseconds