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

/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h884 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
894 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
897 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
900 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
940 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
H A Dsqlite3.c1427 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1437 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1440 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1443 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1483 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
14130 /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64()
14133 ** will fall back to xCurrentTime() if xCurrentTimeInt64() is
14136 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
14137 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
23921 os2CurrentTimeInt64, /* xCurrentTimeInt64 */
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h1112 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1122 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1125 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1128 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1168 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
H A Dsqlite3.c1227 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1237 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1240 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1243 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1283 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
15978 /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64()
15981 ** will fall back to xCurrentTime() if xCurrentTimeInt64() is
15984 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
15985 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
[all...]
/external/sqlite/dist/
H A Dsqlite3.h1112 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1122 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1125 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1128 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1168 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
H A Dsqlite3.c1227 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1237 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1240 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1243 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1283 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); member in struct:sqlite3_vfs
15978 /* IMPLEMENTATION-OF: R-49045-42493 SQLite will use the xCurrentTimeInt64()
15981 ** will fall back to xCurrentTime() if xCurrentTimeInt64() is
15984 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
15985 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut);
[all...]

Completed in 4725 milliseconds