Searched defs:xCurrentTimeInt64 (Results 1 - 4 of 4) sorted by relevance

/external/sqlite/dist/orig/
H A Dsqlite3.h1137 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1147 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1150 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1153 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1193 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
H A Dsqlite3.c1344 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1354 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1357 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1360 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1400 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
16710 /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64()
16713 ** will fall back to xCurrentTime() if xCurrentTimeInt64() is
16716 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
16717 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
[all...]
/external/sqlite/dist/
H A Dsqlite3.h1137 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1147 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1150 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1153 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1193 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
H A Dsqlite3.c1344 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1354 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1357 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1360 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1400 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
16710 /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64()
16713 ** will fall back to xCurrentTime() if xCurrentTimeInt64() is
16716 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
16717 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
[all...]

Completed in 412 milliseconds