Lines Matching defs:pTimeOut
26327 SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){
26336 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
26340 *pTimeOut = (sqlite3_int64)(r*86400000.0);
38320 ** Return the current time as a Julian Day number in *pTimeOut.
38322 static int kvvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
38326 *pTimeOut = i/86400000.0;
38330 static int kvvfsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){
38334 *pTimeOut = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000;
53581 ** Return the current time as a Julian Day number in *pTimeOut.
53583 static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
53584 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut);
223412 ** Return the current time as a Julian Day number in *pTimeOut.
223414 static int rbuVfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
223416 return pRealVfs->xCurrentTime(pRealVfs, pTimeOut);