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

  /external/skia/src/ports/
SkThread_none.cpp 24 SkMutex::SkMutex() {}
26 SkMutex::~SkMutex() {}
28 void SkMutex::acquire() {}
30 void SkMutex::release() {}
SkThread_win.cpp 29 SkMutex::SkMutex() {
35 SkMutex::~SkMutex() {
39 void SkMutex::acquire() {
43 void SkMutex::release() {
SkThread_pthread.cpp 17 SkMutex-based implementation. The SkMutex version suffers from static
44 SkMutex gAtomicMutex;
88 SkMutex::SkMutex() {
98 SkMutex::~SkMutex() {
110 SkMutex::SkMutex() {
128 SkMutex::~SkMutex()
    [all...]
  /external/skia/include/core/
SkThread_platform.h 82 class SkMutex : public SkBaseMutex, SkNoncopyable {
84 SkMutex();
85 ~SkMutex();
90 // In the generic case, SkBaseMutex and SkMutex are the same thing, and we
93 class SkMutex : SkNoncopyable {
95 SkMutex();
96 ~SkMutex();
109 typedef SkMutex SkBaseMutex;

Completed in 46 milliseconds