Home
last modified time | relevance | path

Searched refs:aCond (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/async/
Dsqlite3async.c260 HANDLE aCond[1]; member
265 primitives.aCond[0] = CreateEvent(NULL, TRUE, FALSE, 0); in async_os_initialize()
266 if( primitives.aCond[0]==NULL ){ in async_os_initialize()
281 CloseHandle(primitives.aCond[0]); in async_os_shutdown()
302 ResetEvent(primitives.aCond[eCond]); in async_cond_wait()
304 WaitForSingleObject(primitives.aCond[eCond], INFINITE); in async_cond_wait()
309 SetEvent(primitives.aCond[eCond]); in async_cond_signal()
327 pthread_cond_t aCond[1]; member
356 pthread_cond_wait(&primitives.aCond[eCond], &primitives.aMutex[eMutex]); in async_cond_wait()
361 pthread_cond_signal(&primitives.aCond[eCond]); in async_cond_signal()
/external/chromium_org/third_party/angle/src/compiler/
Dintermediate.h294 TIntermNode *aInit, TIntermTyped* aCond, TIntermTyped* aExpr, in TIntermLoop() argument
298 cond(aCond), in TIntermLoop()