Searched defs:SkBaseMutex (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/ports/
H A DSkMutex_win.h33 // On Windows, SkBaseMutex and SkMutex are the same thing,
37 struct SkBaseMutex { struct
39 SkBaseMutex() { function in struct:SkBaseMutex
44 ~SkBaseMutex() {
69 SkBaseMutex(const SkBaseMutex&);
70 SkBaseMutex& operator=(const SkBaseMutex&);
73 class SkMutex : public SkBaseMutex { };
77 #define SK_DECLARE_STATIC_MUTEX(name) namespace{} static SkBaseMutex nam
[all...]
H A DSkMutex_pthread.h26 // An SkBaseMutex is a POD structure that can be directly initialized at declaration time with
29 struct SkBaseMutex { struct
51 class SkMutex : public SkBaseMutex {
92 // Because SkBaseMutex is not a primitive, a static SkBaseMutex cannot be
94 #define SK_DECLARE_STATIC_MUTEX(name) namespace {} static SkBaseMutex name = SK_BASE_MUTEX_INIT

Completed in 73 milliseconds