Lines Matching refs:cc
452 int cc; in lockThreadSuspend() local
455 cc = dvmTryLockMutex(&gDvm._threadSuspendLock); in lockThreadSuspend()
456 if (cc != 0) { in lockThreadSuspend()
499 } while (cc != 0); in lockThreadSuspend()
500 assert(cc == 0); in lockThreadSuspend()
1016 int cc; in setThreadSelf() local
1018 cc = pthread_setspecific(gDvm.pthreadKeySelf, thread); in setThreadSelf()
1019 if (cc != 0) { in setThreadSelf()
1027 ALOGE("pthread_setspecific(%p) failed, err=%d", thread, cc); in setThreadSelf()
1076 int cc = pthread_setspecific(gDvm.pthreadKeySelf, self); in threadExitCheck() local
1077 if (cc != 0) { in threadExitCheck()
1304 int cc = pthread_create(&threadHandle, &threadAttr, interpThreadStart, in dvmCreateInterpThread() local
1308 if (cc != 0) { in dvmCreateInterpThread()
2149 int cc; in dvmDetachCurrentThread() local
2154 cc = pthread_cond_signal(&gDvm.vmExitCond); in dvmDetachCurrentThread()
2155 assert(cc == 0); in dvmDetachCurrentThread()
2633 int cc; in dvmResumeAllThreads() local
2711 cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond); in dvmResumeAllThreads()
2712 assert(cc == 0); in dvmResumeAllThreads()
2726 int cc; in dvmUndoDebuggerSuspensions() local
2760 cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond); in dvmUndoDebuggerSuspensions()
2761 assert(cc == 0); in dvmUndoDebuggerSuspensions()