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

  /external/skia/include/ports/
SkMutex_win.h 33 // On Windows, SkBaseMutex and SkMutex are the same thing,
37 struct SkBaseMutex {
39 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...]
SkMutex_pthread.h 26 // An SkBaseMutex is a POD structure that can be directly initialized at declaration time with
29 struct SkBaseMutex {
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 77 milliseconds