Lines Matching refs:clockid
45 clockid_t clockid; member
54 const clockid_t clockid = args->clockid; in tf() local
56 (clockid == CLOCK_USE_TIMEDLOCK) ? CLOCK_REALTIME : clockid; in tf()
65 if (clockid == CLOCK_USE_TIMEDLOCK) in tf()
68 TEST_COMPARE (pthread_rwlock_clockwrlock (r, clockid, &ts_timeout), in tf()
80 if (clockid == CLOCK_USE_TIMEDLOCK) in tf()
83 TEST_COMPARE (pthread_rwlock_clockwrlock (r, clockid, &ts_invalid), EINVAL); in tf()
92 do_test_clock (clockid_t clockid, const char *fnname) in do_test_clock() argument
95 (clockid == CLOCK_USE_TIMEDLOCK) ? CLOCK_REALTIME : clockid; in do_test_clock()
120 if (clockid == CLOCK_USE_TIMEDLOCK) { in do_test_clock()
124 if (pthread_rwlock_clockrdlock (&r, clockid, &ts) != 0) in do_test_clock()
132 args.clockid = clockid; in do_test_clock()