Lines Matching defs:pTimeOut
25153 SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){
25162 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
25166 *pTimeOut = (sqlite3_int64)(r*86400000.0);
36732 ** Return the current time as a Julian Day number in *pTimeOut.
36734 static int kvvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
36738 *pTimeOut = i/86400000.0;
36742 static int kvvfsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){
36746 *pTimeOut = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000;
51987 ** Return the current time as a Julian Day number in *pTimeOut.
51989 static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
51990 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut);
214057 ** Return the current time as a Julian Day number in *pTimeOut.
214059 static int rbuVfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
214061 return pRealVfs->xCurrentTime(pRealVfs, pTimeOut);