Searched defs:pTimeOut (Results 1 - 12 of 12) sorted by relevance
/external/chromium_org/third_party/sqlite/src/src/ |
H A D | os.c | 184 int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ argument 193 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); 197 *pTimeOut = (sqlite3_int64)(r*86400000.0);
|
H A D | test_devsym.c | 368 ** Return the current time as a Julian Day number in *pTimeOut. 370 static int devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ argument 371 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut);
|
H A D | test_journal.c | 813 ** Return the current time as a Julian Day number in *pTimeOut. 815 static int jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ argument 816 return g.pVfs->xCurrentTime(g.pVfs, pTimeOut); 819 ** Return the current time as a Julian Day number in *pTimeOut. 821 static int jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ argument 822 return g.pVfs->xCurrentTimeInt64(g.pVfs, pTimeOut);
|
H A D | test_onefile.c | 808 ** Return the current time as a Julian Day number in *pTimeOut. 810 static int fsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ argument 812 return pParent->xCurrentTime(pParent, pTimeOut);
|
H A D | test_vfstrace.c | 657 ** Return the current time as a Julian Day number in *pTimeOut. 659 static int vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ argument 662 return pRoot->xCurrentTime(pRoot, pTimeOut); 664 static int vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ argument 667 return pRoot->xCurrentTimeInt64(pRoot, pTimeOut);
|
H A D | test6.c | 682 static int cfCurrentTime(sqlite3_vfs *pCfVfs, double *pTimeOut){ argument 684 return pVfs->xCurrentTime(pVfs, pTimeOut);
|
H A D | test_osinst.c | 595 ** Return the current time as a Julian Day number in *pTimeOut. 597 static int vfslogCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ argument 598 return REALVFS(pVfs)->xCurrentTime(REALVFS(pVfs), pTimeOut);
|
H A D | test_vfs.c | 718 ** Return the current time as a Julian Day number in *pTimeOut. 720 static int tvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut){ argument 721 return PARENTVFS(pVfs)->xCurrentTime(PARENTVFS(pVfs), pTimeOut);
|
/external/chromium_org/third_party/sqlite/src/ext/async/ |
H A D | sqlite3async.c | 1293 static int asyncCurrentTime(sqlite3_vfs *pAsyncVfs, double *pTimeOut){ argument 1295 return pVfs->xCurrentTime(pVfs, pTimeOut);
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
H A D | sqlite3.c | 14143 SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ argument 14152 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); 14156 *pTimeOut = (sqlite3_int64)(r*86400000.0); [all...] |
/external/sqlite/dist/orig/ |
H A D | sqlite3.c | 14877 SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ argument 14886 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); 14890 *pTimeOut = (sqlite3_int64)(r*86400000.0); [all...] |
/external/sqlite/dist/ |
H A D | sqlite3.c | 14877 SQLITE_PRIVATE int sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut){ argument 14886 rc = pVfs->xCurrentTimeInt64(pVfs, pTimeOut); 14890 *pTimeOut = (sqlite3_int64)(r*86400000.0); [all...] |
Completed in 1161 milliseconds