Lines Matching refs:result
557 int *result = (int *)pthread_getspecific(g_pthreadKey1);
558 if (result == NULL) {
562 if (*result != (100 + (int)pthread_self())) { /* 100: test data */
566 result = (int *)pthread_getspecific(g_pthreadKey2);
567 if (result == NULL) {
571 if (*result != (200 + (int)pthread_self())) { /* 200: test data */
588 int result = 0;
616 ret = pthread_join(newTh1, (void **)&result);
618 ICUNIT_ASSERT_EQUAL(result, 0, result);
620 ret = pthread_join(newTh2, (void **)&result);
622 ICUNIT_ASSERT_EQUAL(result, 0, result);