HomeSort by relevance Sort by last modified time
    Searched full:critical_section (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/skia/legacy/src/ports/
SkThread_win.cpp 30 SK_COMPILE_ASSERT(sizeof(fStorage) > sizeof(CRITICAL_SECTION),
32 InitializeCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
36 DeleteCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
40 EnterCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
44 LeaveCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
  /external/protobuf/src/google/protobuf/stubs/
once.cc 51 InitializeCriticalSection(&critical_section);
54 DeleteCriticalSection(&critical_section);
56 CRITICAL_SECTION critical_section; member in struct:google::protobuf::ProtobufOnceInternal
77 EnterCriticalSection(&internal_->critical_section);
82 LeaveCriticalSection(&internal_->critical_section);
  /external/skia/src/ports/
SkThread_win.cpp 53 SK_COMPILE_ASSERT(sizeof(fStorage) > sizeof(CRITICAL_SECTION),
55 InitializeCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
59 DeleteCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
63 EnterCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
67 LeaveCriticalSection(reinterpret_cast<CRITICAL_SECTION*>(&fStorage));
  /external/libvpx/libvpx/vp8/common/
rtcd.c 19 static CRITICAL_SECTION *lock;
39 CRITICAL_SECTION *new_lock = malloc(sizeof(CRITICAL_SECTION));
  /external/webrtc/src/system_wrappers/source/
critical_section_win.h 30 CRITICAL_SECTION crit;
condition_variable_win.h 62 CRITICAL_SECTION _numWaitersCritSect;
Android.mk 30 critical_section.cc \
  /external/icu4c/common/
umutex.h 30 /* For CRITICAL_SECTION */
35 * have an embedded CRITICAL_SECTION when building on Windows.
168 /* CRITICAL_SECTION fCS; */ /* See note above. Unresolved problems with including
169 * Windows.h, which would allow using CRITICAL_SECTION
175 * CRITICAL_SECTION.
umutex.cpp 212 // Each UMutex has a corresponding Windows CRITICAL_SECTION.
267 U_ASSERT(sizeof(CRITICAL_SECTION) <= sizeof(mutex->fCS));
268 InitializeCriticalSection((CRITICAL_SECTION *)mutex->fCS);
284 EnterCriticalSection((CRITICAL_SECTION *)mutex->fCS);
297 LeaveCriticalSection((CRITICAL_SECTION *)mutex->fCS);
  /system/core/include/cutils/
threads.h 53 CRITICAL_SECTION lock;
106 CRITICAL_SECTION lock[1];
  /external/chromium/base/synchronization/
lock_impl.h 29 typedef CRITICAL_SECTION OSLockType;
  /external/qemu/distrib/sdl-1.2.15/src/audio/windib/
SDL_dibaudio.h 36 CRITICAL_SECTION audio_cs;
  /external/skia/include/utils/
SkCondVar.h 63 CRITICAL_SECTION fCriticalSection;
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket_unittest.h 106 CRITICAL_SECTION lock_;
  /external/chromium/third_party/libjingle/source/talk/base/
criticalsection.h 76 CRITICAL_SECTION crit_;
  /hardware/ti/omap4xxx/security/tf_crypto_sst/
lib_mutex.h 52 CRITICAL_SECTION sCriticalSection;
  /external/valgrind/main/drd/tests/
annotate_smart_pointer.cpp 34 #include <windows.h> // CRITICAL_SECTION
71 CRITICAL_SECTION m_mutex;
  /external/harfbuzz_ng/src/
hb-mutex-private.hh 49 typedef CRITICAL_SECTION hb_mutex_impl_t;
  /external/llvm/lib/Support/Windows/
Mutex.inc 27 data_ = new CRITICAL_SECTION;
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadingPrimitives.h 79 CRITICAL_SECTION m_internalMutex;
  /external/webp/src/utils/
thread.h 29 typedef CRITICAL_SECTION pthread_mutex_t;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_win.cc 287 CHECK(sizeof(CRITICAL_SECTION) <= sizeof(opaque_storage_));
293 CHECK(sizeof(CRITICAL_SECTION) <= sizeof(opaque_storage_));
  /external/bison/lib/glthread/
lock.h 625 /* We can use CRITICAL_SECTION directly, rather than the native Windows Event,
633 /* There is no way to statically initialize a CRITICAL_SECTION. It needs
643 CRITICAL_SECTION lock;
682 CRITICAL_SECTION lock; /* protects the remaining fields */
712 /* The native Windows documentation says that CRITICAL_SECTION already
721 CRITICAL_SECTION lock;
749 CRITICAL_SECTION lock;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xthreads.h 109 CRITICAL_SECTION cs;
112 typedef CRITICAL_SECTION xmutex_rec;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xthreads.h 109 CRITICAL_SECTION cs;
112 typedef CRITICAL_SECTION xmutex_rec;

Completed in 432 milliseconds

1 2 3