Lines Matching full:time
17 #include <time.h>
30 TEST(time, gmtime) {
44 // Ensure we'll actually have to enter tzload by using a time zone that doesn't exist.
54 TEST(time, gmtime_no_stack_overflow_14313703) {
73 TEST(time, mktime_10310929) {
97 TEST(time, strftime) {
114 // Date and time as text.
119 TEST(time, strptime) {
148 TEST(time, timer_create) {
180 TEST(time, timer_create_SIGEV_SIGNAL) {
235 // Setting the initial expiration time to 0 disarms the timer.
240 TEST(time, timer_settime_0) {
249 // The count should just be 1 because we disarmed the timer the first time it fired.
253 TEST(time, timer_settime_repeats) {
272 TEST(time, timer_create_NULL) {
287 TEST(time, timer_create_EINVAL) {
304 TEST(time, timer_delete_multiple) {
321 TEST(time, timer_create_multiple) {
355 TEST(time, timer_delete_from_timer_thread) {
374 time_t cur_time = time(NULL);
375 while (!tdd.complete && (time(NULL) - cur_time) < 5);
381 cur_time = time(NULL);
382 while (pthread_detach(tdd.thread_id) != ESRCH && (time(NULL) - cur_time) < 5);
387 TEST(time, clock_gettime) {