| /sqlite-3.40.0/src/ |
| H A D | test_demovfs.c | 592 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 D | test_devsym.c | 337 static int devsymSleep(sqlite3_vfs *pVfs, int nMicro){ in devsymSleep() argument 338 return sqlite3OsSleep(g.pVfs, nMicro); in devsymSleep()
|
| H A D | os.c | 284 int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ in sqlite3OsSleep() argument 285 return pVfs->xSleep(pVfs, nMicro); in sqlite3OsSleep()
|
| H A D | memdb.c | 667 static int memdbSleep(sqlite3_vfs *pVfs, int nMicro){ in memdbSleep() argument 668 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in memdbSleep()
|
| H A D | test_journal.c | 815 static int jtSleep(sqlite3_vfs *pVfs, int nMicro){ in jtSleep() argument 816 return sqlite3OsSleep(g.pVfs, nMicro); in jtSleep()
|
| H A D | test_onefile.c | 803 static int fsSleep(sqlite3_vfs *pVfs, int nMicro){ in fsSleep() argument 805 return pParent->xSleep(pParent, nMicro); in fsSleep()
|
| H A D | test6.c | 707 static int cfSleep(sqlite3_vfs *pCfVfs, int nMicro){ in cfSleep() argument 709 return pVfs->xSleep(pVfs, nMicro); in cfSleep()
|
| H A D | test_vfstrace.c | 769 static int vfstraceSleep(sqlite3_vfs *pVfs, int nMicro){ in vfstraceSleep() argument 772 return pRoot->xSleep(pRoot, nMicro); in vfstraceSleep()
|
| H A D | test_osinst.c | 599 static int vfslogSleep(sqlite3_vfs *pVfs, int nMicro){ in vfslogSleep() argument 600 return REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro); in vfslogSleep()
|
| H A D | test_vfs.c | 816 static int tvfsSleep(sqlite3_vfs *pVfs, int nMicro){ in tvfsSleep() argument 817 return sqlite3OsSleep(PARENTVFS(pVfs), nMicro); in tvfsSleep()
|
| H A D | os_kv.c | 932 static int kvvfsSleep(sqlite3_vfs *pVfs, int nMicro){ in kvvfsSleep() argument
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | memvfs.c | 425 static int memSleep(sqlite3_vfs *pVfs, int nMicro){ in memSleep() argument 426 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in memSleep()
|
| H A D | appendvfs.c | 612 static int apndSleep(sqlite3_vfs *pVfs, int nMicro){ in apndSleep() argument 613 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in apndSleep()
|
| H A D | vfsstat.c | 554 static int vstatSleep(sqlite3_vfs *pVfs, int nMicro){ in vstatSleep() argument 556 return REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro); in vstatSleep()
|
| H A D | cksumvfs.c | 757 static int cksmSleep(sqlite3_vfs *pVfs, int nMicro){ in cksmSleep() argument 758 return ORIGVFS(pVfs)->xSleep(ORIGVFS(pVfs), nMicro); in cksmSleep()
|
| H A D | vfslog.c | 734 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 D | sqlite3async.c | 1292 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 D | sqlite3rbu.c | 5242 static int rbuVfsSleep(sqlite3_vfs *pVfs, int nMicro){ in rbuVfsSleep() argument 5244 return pRealVfs->xSleep(pRealVfs, nMicro); in rbuVfsSleep()
|