Lines Matching refs:ulCount
17299 ULONG ulCount; in os2MutexFree() local
17300 DosQueryMutexSem(p->mutex, &pid, &tid, &ulCount); in os2MutexFree()
17301 assert( ulCount==0 ); in os2MutexFree()
17316 ULONG ulCount; in os2MutexHeld() local
17318 DosQueryMutexSem(p->mutex, &pid, &tid, &ulCount); in os2MutexHeld()
17319 if( ulCount==0 || ( ulCount>1 && p->id!=SQLITE_MUTEX_RECURSIVE ) ) in os2MutexHeld()
17327 ULONG ulCount; in os2MutexNotheld() local
17329 DosQueryMutexSem(p->mutex, &pid, &tid, &ulCount); in os2MutexNotheld()
17330 if( ulCount==0 ) in os2MutexNotheld()
17338 ULONG ulCount; in os2MutexTrace() local
17339 DosQueryMutexSem(p->mutex, &pid, &tid, &ulCount); in os2MutexTrace()
17340 printf("%s mutex %p (%d) with nRef=%ld\n", pAction, (void*)p, p->trace, ulCount); in os2MutexTrace()