Lines Matching refs:now
91 struct tm *now; in logmsg() local
108 now = localtime(&sec); /* not thread safe but we don't care */ in logmsg()
111 (int)now->tm_hour, (int)now->tm_min, (int)now->tm_sec, in logmsg()
382 struct timeval now; in tvnow() local
388 now.tv_sec = (long)(milliseconds / 1000); in tvnow()
389 now.tv_usec = (long)((milliseconds % 1000) * 1000); in tvnow()
390 return now; in tvnow()
404 struct timeval now; in tvnow() local
407 now.tv_sec = tsnow.tv_sec; in tvnow()
408 now.tv_usec = (int)(tsnow.tv_nsec / 1000); in tvnow()
417 (void)gettimeofday(&now, NULL); in tvnow()
420 now.tv_sec = time(NULL); in tvnow()
421 now.tv_usec = 0; in tvnow()
424 return now; in tvnow()
436 struct timeval now; in tvnow() local
437 (void)gettimeofday(&now, NULL); in tvnow()
438 return now; in tvnow()
448 struct timeval now; in tvnow() local
449 now.tv_sec = time(NULL); in tvnow()
450 now.tv_usec = 0; in tvnow()
451 return now; in tvnow()