Home | History | Annotate | Download | only in dist

Lines Matching refs:sNow

20760   struct tm sNow;
20770 pTm = gmtime_r(&t, &sNow);
20774 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow));
20778 strftime(zBuf, 20, zFormat, &sNow);
37132 struct timespec sNow;
37133 clock_gettime(CLOCK_REALTIME, &sNow);
37134 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_nsec/1000000;
37136 struct timeval sNow;
37137 (void)gettimeofday(&sNow, 0); /* Cannot fail given valid arguments */
37138 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000;