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

/macosx-10.10/Heimdal-398.1.2/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...]

Completed in 502 milliseconds