Home | History | Annotate | Download | only in vm

Lines Matching defs:cc

452     int cc;
455 cc = dvmTryLockMutex(&gDvm._threadSuspendLock);
456 if (cc != 0) {
499 } while (cc != 0);
500 assert(cc == 0);
1016 int cc;
1018 cc = pthread_setspecific(gDvm.pthreadKeySelf, thread);
1019 if (cc != 0) {
1027 ALOGE("pthread_setspecific(%p) failed, err=%d", thread, cc);
1076 int cc = pthread_setspecific(gDvm.pthreadKeySelf, self);
1077 if (cc != 0) {
1304 int cc = pthread_create(&threadHandle, &threadAttr, interpThreadStart, newThread);
1308 if (cc != 0) {
1317 ALOGE("pthread_create (stack size %d bytes) failed: %s", stackSize, strerror(cc));
1320 stackSize, strerror(cc));
1660 int cc = pthread_create(pHandle, &threadAttr, internalThreadStart, pArgs);
1662 if (cc != 0) {
1663 ALOGE("internal thread creation failed: %s", strerror(cc));
2153 int cc = pthread_cond_signal(&gDvm.vmExitCond);
2154 if (cc != 0) {
2155 ALOGE("pthread_cond_signal(&gDvm.vmExitCond) failed: %s", strerror(cc));
2712 int cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond);
2713 if (cc != 0) {
2714 ALOGE("pthread_cond_broadcast(&gDvm.threadSuspendCountCond) failed: %s", strerror(cc));
2763 cc = pthread_cond_broadcast(&gDvm.threadSuspendCountCond);
2764 if (cc != 0) {
2765 ALOGE("pthread_cond_broadcast(&gDvm.threadSuspendCountCond) failed: %s", strerror(cc));