Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dos.c290 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 Dtest_journal.c822 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 Dos_kv.c939 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 Dtest_vfstrace.c778 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 Dtest_devsym.c344 static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in devsymCurrentTime() argument
345 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); in devsymCurrentTime()
H A Dmemdb.c675 static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
676 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut);
H A Dtest_onefile.c811 static int fsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in fsCurrentTime() argument
813 return pParent->xCurrentTime(pParent, pTimeOut); in fsCurrentTime()
H A Dtest6.c711 static int cfCurrentTime(sqlite3_vfs *pCfVfs, double *pTimeOut){ in cfCurrentTime() argument
713 return pVfs->xCurrentTime(pVfs, pTimeOut); in cfCurrentTime()
H A Dtest_osinst.c606 static int vfslogCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vfslogCurrentTime() argument
607 return REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut); in vfslogCurrentTime()
H A Dtest_vfs.c823 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 Dmemvfs.c432 static int memCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in memCurrentTime() argument
433 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in memCurrentTime()
H A Dappendvfs.c615 static int apndCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in apndCurrentTime() argument
616 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in apndCurrentTime()
H A Dvfsstat.c562 static int vstatCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vstatCurrentTime() argument
564 return REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut); in vstatCurrentTime()
H A Dcksumvfs.c760 static int cksmCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in cksmCurrentTime() argument
761 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in cksmCurrentTime()
H A Dvfslog.c741 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 Dsqlite3async.c1296 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 Dsqlite3rbu.c5250 static int rbuVfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in rbuVfsCurrentTime() argument
5252 return pRealVfs->xCurrentTime(pRealVfs, pTimeOut); in rbuVfsCurrentTime()