Lines Matching defs:sNow
24812 struct tm sNow;
24822 pTm = gmtime_r(&t, &sNow);
24826 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow));
24830 strftime(zBuf, 20, zFormat, &sNow);
36744 struct timeval sNow;
36745 (void)gettimeofday(&sNow, 0); /* Cannot fail given valid arguments */
36746 *pTimeOut = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000;
43675 struct timespec sNow;
43676 clock_gettime(CLOCK_REALTIME, &sNow);
43677 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_nsec/1000000;
43679 struct timeval sNow;
43680 (void)gettimeofday(&sNow, 0); /* Cannot fail given valid arguments */
43681 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000;