Searched refs:pTimeOut (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/ntp/include/ |
| H A D | ntp_select.h | 16 fd_set *pExceptFds, struct timeval *pTimeOut);
|
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 10143 static int apndCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in apndCurrentTime() argument 10144 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); in apndCurrentTime() 17276 static int vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in vfstraceCurrentTime() argument 17282 rc = pRoot->xCurrentTime(pRoot, pTimeOut); in vfstraceCurrentTime() 17283 vfstrace_printf(pInfo, " -> %.17g\n", *pTimeOut); in vfstraceCurrentTime() 17286 static int vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in vfstraceCurrentTimeInt64() argument 17292 rc = pRoot->xCurrentTimeInt64(pRoot, pTimeOut); in vfstraceCurrentTimeInt64() 17293 vfstrace_printf(pInfo, " -> %lld\n", *pTimeOut); in vfstraceCurrentTimeInt64()
|
| H A D | sqlite3.c | 26826 SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in sqlite3OsCurrentTimeInt64() argument 26835 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); in sqlite3OsCurrentTimeInt64() 26839 *pTimeOut = (sqlite3_int64)(r*86400000.0); in sqlite3OsCurrentTimeInt64() 38807 static int kvvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ in kvvfsCurrentTime() argument 38811 *pTimeOut = i/86400000.0; in kvvfsCurrentTime() 38815 static int kvvfsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ in kvvfsCurrentTimeInt64() argument 38819 *pTimeOut = unixEpoch + 1000*(sqlite3_int64)sNow.tv_sec + sNow.tv_usec/1000; in kvvfsCurrentTimeInt64() 54532 static int memdbCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ 54533 return ORIGVFS(pVfs)->xCurrentTime(ORIGVFS(pVfs), pTimeOut); 226595 static int rbuVfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ [all …]
|