HomeSort by: relevance | last modified time | path
    Searched refs:xCurrentTimeInt64 (Results 1 - 3 of 3) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
sqlite3.h 1481 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1491 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1494 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1497 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1537 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);
shell.c 11649 apndCurrentTimeInt64, /* xCurrentTimeInt64 */
12075 return ORIGVFS(pVfs)->xCurrentTimeInt64(ORIGVFS(pVfs), p);
13684 if( pVfs->iVersion>=2 && pVfs->xCurrentTimeInt64 ){
13686 pVfs->xCurrentTimeInt64(pVfs, &ms);
19268 vfstrace_printf(pInfo, "%s.xCurrentTimeInt64()", pInfo->zVfsName);
19269 rc = pRoot->xCurrentTimeInt64(pRoot, pTimeOut);
19364 pNew->xCurrentTimeInt64 = pRoot->xCurrentTimeInt64==0 ? 0 :
24062 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){
24063 clockVfs->xCurrentTimeInt64(clockVfs, &t)
    [all...]
sqlite3.c 1802 ** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64()
1812 ** ^The xCurrentTimeInt64() method returns, as an integer, the Julian
1815 ** ^SQLite will use the xCurrentTimeInt64() method to get the current
1818 ** to xCurrentTime() if xCurrentTimeInt64() is unavailable.
1858 int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*);
    [all...]

Completed in 101 milliseconds