Searched defs:fLockCount (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkPixelRef.h92 bool isLocked() const { return fLockCount > 0; }
94 SkDEBUGCODE(int getLockCount() const { return fLockCount; })
357 int fLockCount; member in class:SkPixelRef
/external/skia/include/core/
H A DSkPixelRef.h91 bool isLocked() const { return fLockCount > 0; }
93 SkDEBUGCODE(int getLockCount() const { return fLockCount; })
353 int fLockCount; member in class:SkPixelRef
/external/skia/src/core/
H A DSkScaledImageCache.cpp104 fLockCount = 1;
109 fLockCount = 1;
131 int32_t fLockCount; member in struct:SkScaledImageCache::Rec
341 rec->fLockCount += 1;
422 SkASSERT(1 == rec->fLockCount);
487 SkASSERT(rec->fLockCount > 0);
488 rec->fLockCount -= 1;
492 if (0 == rec->fLockCount) {
519 if (0 == rec->fLockCount) {
660 locked += rec->fLockCount >
[all...]
H A DSkCanvas.cpp79 fLockCount = fPixelRef ? fPixelRef->getLockCount() : 0;
83 SkASSERT(count == fLockCount);
88 int fLockCount; member in class:AutoCheckLockCountBalance

Completed in 145 milliseconds