Home
last modified time | relevance | path

Searched refs:sNow (Results 1 – 1 of 1) sorted by relevance

/PHP-5.6/ext/sqlite3/libsqlite/
H A Dsqlite3.c16410 struct tm sNow; in currentTimeFunc() local
16420 pTm = gmtime_r(&t, &sNow); in currentTimeFunc()
16424 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); in currentTimeFunc()
16428 strftime(zBuf, 20, zFormat, &sNow); in currentTimeFunc()
31659 struct timespec sNow;
31660 clock_gettime(CLOCK_REALTIME, &sNow);
31661 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_nsec/1000000;
31663 struct timeval sNow;
31664 if( gettimeofday(&sNow, 0)==0 ){
31665 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000;

Completed in 377 milliseconds