Home | History | Annotate | Download | only in core

Lines Matching refs:fMutex

15     explicit SkAutoMutexAcquire(SkBaseMutex& mutex) : fMutex(&mutex) {
16 SkASSERT(fMutex != NULL);
20 explicit SkAutoMutexAcquire(SkBaseMutex* mutex) : fMutex(mutex) {
28 if (fMutex) {
29 fMutex->release();
35 if (fMutex) {
36 fMutex->release();
37 fMutex = NULL;
43 SkASSERT(fMutex);
44 fMutex->assertHeld();
48 SkBaseMutex* fMutex;