Home
last modified time | relevance | path

Searched refs:nMicro (Results 1 – 18 of 18) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_demovfs.c592 static int demoSleep(sqlite3_vfs *pVfs, int nMicro){ in demoSleep() argument
593 sleep(nMicro / 1000000); in demoSleep()
594 usleep(nMicro % 1000000); in demoSleep()
595 return nMicro; in demoSleep()
H A Dtest_devsym.c337 static int devsymSleep(sqlite3_vfs *pVfs, int nMicro){ in devsymSleep() argument
338 return sqlite3OsSleep(g.pVfs, nMicro); in devsymSleep()
H A Dos.c284 int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ in sqlite3OsSleep() argument
285 return pVfs->xSleep(pVfs, nMicro); in sqlite3OsSleep()
H A Dmemdb.c667 static int memdbSleep(sqlite3_vfs *pVfs, int nMicro){ in memdbSleep() argument
668 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in memdbSleep()
H A Dtest_journal.c815 static int jtSleep(sqlite3_vfs *pVfs, int nMicro){ in jtSleep() argument
816 return sqlite3OsSleep(g.pVfs, nMicro); in jtSleep()
H A Dtest_onefile.c803 static int fsSleep(sqlite3_vfs *pVfs, int nMicro){ in fsSleep() argument
805 return pParent->xSleep(pParent, nMicro); in fsSleep()
H A Dtest6.c707 static int cfSleep(sqlite3_vfs *pCfVfs, int nMicro){ in cfSleep() argument
709 return pVfs->xSleep(pVfs, nMicro); in cfSleep()
H A Dtest_vfstrace.c769 static int vfstraceSleep(sqlite3_vfs *pVfs, int nMicro){ in vfstraceSleep() argument
772 return pRoot->xSleep(pRoot, nMicro); in vfstraceSleep()
H A Dtest_osinst.c599 static int vfslogSleep(sqlite3_vfs *pVfs, int nMicro){ in vfslogSleep() argument
600 return REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro); in vfslogSleep()
H A Dtest_vfs.c816 static int tvfsSleep(sqlite3_vfs *pVfs, int nMicro){ in tvfsSleep() argument
817 return sqlite3OsSleep(PARENTVFS(pVfs), nMicro); in tvfsSleep()
H A Dos_kv.c932 static int kvvfsSleep(sqlite3_vfs *pVfs, int nMicro){ in kvvfsSleep() argument
/sqlite-3.40.0/ext/misc/
H A Dmemvfs.c425 static int memSleep(sqlite3_vfs *pVfs, int nMicro){ in memSleep() argument
426 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in memSleep()
H A Dappendvfs.c612 static int apndSleep(sqlite3_vfs *pVfs, int nMicro){ in apndSleep() argument
613 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in apndSleep()
H A Dvfsstat.c554 static int vstatSleep(sqlite3_vfs *pVfs, int nMicro){ in vstatSleep() argument
556 return REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro); in vstatSleep()
H A Dcksumvfs.c757 static int cksmSleep(sqlite3_vfs *pVfs, int nMicro){ in cksmSleep() argument
758 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in cksmSleep()
H A Dvfslog.c734 static int vlogSleep(sqlite3_vfs *pVfs, int nMicro){ in vlogSleep() argument
735 return REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro); in vlogSleep()
/sqlite-3.40.0/ext/async/
H A Dsqlite3async.c1292 static int asyncSleep(sqlite3_vfs *pAsyncVfs, int nMicro){ in asyncSleep() argument
1294 return pVfs->xSleep(pVfs, nMicro); in asyncSleep()
/sqlite-3.40.0/ext/rbu/
H A Dsqlite3rbu.c5242 static int rbuVfsSleep(sqlite3_vfs *pVfs, int nMicro){ in rbuVfsSleep() argument
5244 return pRealVfs->xSleep(pRealVfs, nMicro); in rbuVfsSleep()