Home
last modified time | relevance | path

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

/freebsd/contrib/ntp/include/
H A Dntp_select.h16 fd_set *pExceptFds, struct timeval *pTimeOut);
/freebsd/contrib/sqlite3/
H A Dshell.c12099 static int apndCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in apndCurrentTime() argument
12100 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in apndCurrentTime()
19291 static int vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vfstraceCurrentTime() argument
19297 rc = pRoot->xCurrentTime(pRoot, pTimeOut); in vfstraceCurrentTime()
19298 vfstrace_printf(pInfo, " -> %.17g\n", *pTimeOut); in vfstraceCurrentTime()
19301 static int vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in vfstraceCurrentTimeInt64() argument
19307 rc = pRoot->xCurrentTimeInt64(pRoot, pTimeOut); in vfstraceCurrentTimeInt64()
19308 vfstrace_printf(pInfo, " -> %lld\n", *pTimeOut); in vfstraceCurrentTimeInt64()
H A Dsqlite3.c27581 SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument
27590 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64()
27594 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64()
40161 static int kvvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in kvvfsCurrentTime() argument
40165 *pTimeOut = i/86400000.0; in kvvfsCurrentTime()
40169 static int kvvfsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in kvvfsCurrentTimeInt64() argument
40173 *pTimeOut = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000; in kvvfsCurrentTimeInt64()
56024 static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){
56025 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut);
231635 static int rbuVfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ argument
[all …]