Lines Matching defs:time
32 #include <sys/time.h>
38 #include <time.h>
41 static void format_time(int time, char* buffer) {
44 seconds = time % 60;
45 time /= 60;
46 minutes = time % 60;
47 time /= 60;
48 hours = time % 24;
49 days = time / 24;
105 fprintf(stderr, "Could not get monotonic time\n");
119 printf("up time: %s, idle time: %s, sleep time: %s\n", up_string, idle_string, sleep_string);