Lines Matching defs:cc
452 int cc;
455 cc = dvmTryLockMutex(&gDvm._threadSuspendLock);
456 if (cc != 0) {
499 } while (cc != 0);
500 assert(cc == 0);
1017 int cc;
1019 cc = pthread_setspecific(gDvm.pthreadKeySelf, thread);
1020 if (cc != 0) {
1028 ALOGE("pthread_setspecific(%p) failed, err=%d", thread, cc);
1077 int cc = pthread_setspecific(gDvm.pthreadKeySelf, self);
1078 if (cc != 0) {
1306 int cc = pthread_create(&threadHandle, &threadAttr, interpThreadStart, newThread);
1310 if (cc != 0) {
1319 ALOGE("pthread_create (stack size %d bytes) failed: %s", stackSize, strerror(cc));
1322 stackSize, strerror(cc));
1662 int cc = pthread_create(pHandle, &threadAttr, internalThreadStart, pArgs);
1664 if (cc != 0) {
1665 ALOGE("internal thread creation failed: %s", strerror(cc));
2155 int cc = pthread_cond_signal(&gDvm.vmExitCond);
2156 if (cc != 0) {
2157 ALOGE("pthread_cond_signal(&gDvm.vmExitCond) failed: %s", strerror(cc));
2714 int cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond);
2715 if (cc != 0) {
2716 ALOGE("pthread_cond_broadcast(&gDvm.threadSuspendCountCond) failed: %s", strerror(cc));
2765 int cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond);
2766 if (cc != 0) {
2767 ALOGE("pthread_cond_broadcast(&gDvm.threadSuspendCountCond) failed: %s", strerror(cc));