| /sqlite-3.40.0/src/ |
| H A D | os.c | 290 int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument 299 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64() 303 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64()
|
| H A D | test_journal.c | 822 static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in jtCurrentTime() argument 823 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in jtCurrentTime() 828 static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in jtCurrentTimeInt64() argument 829 return g.pVfs->xCurrentTimeInt64(g.pVfs, pTimeOut); in jtCurrentTimeInt64()
|
| H A D | os_kv.c | 939 static int kvvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in kvvfsCurrentTime() argument 943 *pTimeOut = i/86400000.0; in kvvfsCurrentTime() 947 static int kvvfsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in kvvfsCurrentTimeInt64() argument 951 *pTimeOut = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000; in kvvfsCurrentTimeInt64()
|
| H A D | test_vfstrace.c | 778 static int vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vfstraceCurrentTime() argument 781 return pRoot->xCurrentTime(pRoot, pTimeOut); in vfstraceCurrentTime() 783 static int vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in vfstraceCurrentTimeInt64() argument 786 return pRoot->xCurrentTimeInt64(pRoot, pTimeOut); in vfstraceCurrentTimeInt64()
|
| H A D | test_devsym.c | 344 static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in devsymCurrentTime() argument 345 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in devsymCurrentTime()
|
| H A D | memdb.c | 675 static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ 676 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut);
|
| H A D | test_onefile.c | 811 static int fsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in fsCurrentTime() argument 813 return pParent->xCurrentTime(pParent, pTimeOut); in fsCurrentTime()
|
| H A D | test6.c | 711 static int cfCurrentTime(sqlite3_vfs *pCfVfs, double *pTimeOut){ in cfCurrentTime() argument 713 return pVfs->xCurrentTime(pVfs, pTimeOut); in cfCurrentTime()
|
| H A D | test_osinst.c | 606 static int vfslogCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vfslogCurrentTime() argument 607 return REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut); in vfslogCurrentTime()
|
| H A D | test_vfs.c | 823 static int tvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in tvfsCurrentTime() argument 824 return PARENTVFS(pVfs)->xCurrentTime(PARENTVFS(pVfs), pTimeOut); in tvfsCurrentTime()
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | memvfs.c | 432 static int memCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in memCurrentTime() argument 433 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in memCurrentTime()
|
| H A D | appendvfs.c | 615 static int apndCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in apndCurrentTime() argument 616 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in apndCurrentTime()
|
| H A D | vfsstat.c | 562 static int vstatCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vstatCurrentTime() argument 564 return REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut); in vstatCurrentTime()
|
| H A D | cksumvfs.c | 760 static int cksmCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in cksmCurrentTime() argument 761 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in cksmCurrentTime()
|
| H A D | vfslog.c | 741 static int vlogCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vlogCurrentTime() argument 742 return REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut); in vlogCurrentTime()
|
| /sqlite-3.40.0/ext/async/ |
| H A D | sqlite3async.c | 1296 static int asyncCurrentTime(sqlite3_vfs *pAsyncVfs, double *pTimeOut){ in asyncCurrentTime() argument 1298 return pVfs->xCurrentTime(pVfs, pTimeOut); in asyncCurrentTime()
|
| /sqlite-3.40.0/ext/rbu/ |
| H A D | sqlite3rbu.c | 5250 static int rbuVfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in rbuVfsCurrentTime() argument 5252 return pRealVfs->xCurrentTime(pRealVfs, pTimeOut); in rbuVfsCurrentTime()
|