HomeSort by relevance Sort by last modified time
    Searched refs:hMutex (Results 1 - 10 of 10) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
win_ce_semaphore.c 80 hSynch->hMutex = CreateMutex (lpSemaphoreAttributes, FALSE, NULL);
82 WaitForSingleObject (hSynch->hMutex, INFINITE);
87 ReleaseMutex (hSynch->hMutex);
110 WaitForSingleObject (hSemCE->hMutex, INFINITE);
129 ReleaseMutex (hSemCE->hMutex);
140 WaitResult = WaitForSingleObject (hSemCE->hMutex, dwMilliseconds);
150 ReleaseMutex (hSemCE->hMutex);
169 WaitResult = WaitForSingleObject (hSemCE->hMutex, dwMilliseconds);
181 ReleaseMutex (hSemCE->hMutex);
191 if (hSynch->hMutex != NULL) Result = Result && CloseHandle (hSynch->hMutex)
    [all...]
win_ce_semaphore.h 5 HANDLE hMutex;
  /external/chromium_org/net/third_party/nss/ssl/
sslmutex.c 346 HANDLE hMutex;
366 if (!pMutex || ((hMutex = pMutex->u.sslMutx) != 0 &&
367 hMutex != INVALID_HANDLE_VALUE)) {
372 hMutex = CreateMutex(&attributes, FALSE, NULL);
373 if (hMutex == NULL) {
374 hMutex = INVALID_HANDLE_VALUE;
378 pMutex->u.sslMutx = hMutex;
385 HANDLE hMutex;
402 if (!pMutex || (hMutex = pMutex->u.sslMutx) == 0
403 || hMutex == INVALID_HANDLE_VALUE)
    [all...]
  /system/core/libutils/
Threads.cpp 364 HANDLE hMutex;
366 assert(sizeof(hMutex) == sizeof(mState));
368 hMutex = CreateMutex(NULL, FALSE, NULL);
369 mState = (void*) hMutex;
375 HANDLE hMutex;
377 assert(sizeof(hMutex) == sizeof(mState));
379 hMutex = CreateMutex(NULL, FALSE, NULL);
380 mState = (void*) hMutex;
386 HANDLE hMutex;
388 assert(sizeof(hMutex) == sizeof(mState))
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Android.h 47 OMX_HANDLETYPE hMutex;
Exynos_OSAL_Android.cpp 279 err = Exynos_OSAL_MutexCreate(&phREF->hMutex);
307 Exynos_OSAL_MutexLock(phREF->hMutex);
327 Exynos_OSAL_MutexUnlock(phREF->hMutex);
348 ret = Exynos_OSAL_MutexTerminate(phREF->hMutex);
383 Exynos_OSAL_MutexLock(phREF->hMutex);
419 Exynos_OSAL_MutexUnlock(phREF->hMutex);
445 Exynos_OSAL_MutexLock(phREF->hMutex);
466 Exynos_OSAL_MutexUnlock(phREF->hMutex);
  /external/chromium_org/third_party/sqlite/src/src/
os_win.c 114 HANDLE hMutex; /* Mutex used to control access to shared lock */
375 pFile->hMutex = CreateMutexW(NULL, FALSE, zName);
376 if (!pFile->hMutex){
383 winceMutexAcquire(pFile->hMutex);
416 winceMutexRelease(pFile->hMutex);
417 CloseHandle(pFile->hMutex);
418 pFile->hMutex = NULL;
427 winceMutexRelease(pFile->hMutex);
435 if (pFile->hMutex){
437 winceMutexAcquire(pFile->hMutex);
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1760 milliseconds