Lines Matching refs:cc
549 int cc; in lockThreadSuspend() local
552 cc = dvmTryLockMutex(&gDvm._threadSuspendLock); in lockThreadSuspend()
553 if (cc != 0) { in lockThreadSuspend()
596 } while (cc != 0); in lockThreadSuspend()
597 assert(cc == 0); in lockThreadSuspend()
1119 int cc; in setThreadSelf() local
1121 cc = pthread_setspecific(gDvm.pthreadKeySelf, thread); in setThreadSelf()
1122 if (cc != 0) { in setThreadSelf()
1130 LOGE("pthread_setspecific(%p) failed, err=%d\n", thread, cc); in setThreadSelf()
1179 int cc = pthread_setspecific(gDvm.pthreadKeySelf, self); in threadExitCheck() local
1180 if (cc != 0) { in threadExitCheck()
1480 int cc = pthread_create(&threadHandle, &threadAttr, interpThreadStart, in dvmCreateInterpThread() local
1484 if (cc != 0) { in dvmCreateInterpThread()
2319 int cc; in dvmDetachCurrentThread() local
2324 cc = pthread_cond_signal(&gDvm.vmExitCond); in dvmDetachCurrentThread()
2325 assert(cc == 0); in dvmDetachCurrentThread()
2836 int cc; in dvmResumeAllThreads() local
2913 cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond); in dvmResumeAllThreads()
2914 assert(cc == 0); in dvmResumeAllThreads()
2928 int cc; in dvmUndoDebuggerSuspensions() local
2963 cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond); in dvmUndoDebuggerSuspensions()
2964 assert(cc == 0); in dvmUndoDebuggerSuspensions()