Searched defs:sNow (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Ddate.c1046 struct tm sNow; local
1047 gmtime_r(&t, &sNow);
1048 strftime(zBuf, 20, zFormat, &sNow);
H A Dos_unix.c5439 struct timespec sNow; local
5440 clock_gettime(CLOCK_REALTIME, &sNow);
5441 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_nsec/1000000;
5443 struct timeval sNow; local
5444 gettimeofday(&sNow, 0);
5445 *piNow = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c13895 struct tm sNow; local
13896 gmtime_r(&t, &sNow);
13897 strftime(zBuf, 20, zFormat, &sNow);
29580 struct timespec sNow; local
29584 struct timeval sNow; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c15678 struct tm sNow; local
15688 pTm = gmtime_r(&t, &sNow);
15692 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow));
15696 strftime(zBuf, 20, zFormat, &sNow);
30435 struct timespec sNow; local
30439 struct timeval sNow; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c15678 struct tm sNow; local
15688 pTm = gmtime_r(&t, &sNow);
15692 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow));
15696 strftime(zBuf, 20, zFormat, &sNow);
30455 struct timespec sNow; local
30459 struct timeval sNow; local
[all...]

Completed in 1852 milliseconds