Searched refs:xCurrentTimeInt64 (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.h926 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
936 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
939 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
942 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
982 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
H A Dsqlite3.c1479 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1489 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1492 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1495 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1535 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
14520 /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64()
14523 ** will fall back to xCurrentTime() if xCurrentTimeInt64() is
14526 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
14527 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
24355 os2CurrentTimeInt64, /* xCurrentTimeInt64 */
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.h1338 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1348 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1351 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1354 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1394 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
H A Dshell.c247 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){
248 clockVfs->xCurrentTimeInt64(clockVfs, &t);
3822 apndCurrentTimeInt64, /* xCurrentTimeInt64 */
4246 return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p);
7367 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
7369 pVfs->xCurrentTimeInt64(pVfs, &ms);
H A Dsqlite3.c2401 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
2411 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
2414 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
2417 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
2457 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
23531 /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64()
23534 ** will fall back to xCurrentTime() if xCurrentTimeInt64() is
23537 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
23538 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
[all...]

Completed in 1094 milliseconds