Searched refs:nMicro (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_demovfs.c585 ** Sleep for at least nMicro microseconds. Return the (approximate) number
588 static int demoSleep(sqlite3_vfs *pVfs, int nMicro){ argument
589 sleep(nMicro / 1000000);
590 usleep(nMicro % 1000000);
591 return nMicro;
H A Dtest_devsym.c360 ** Sleep for nMicro microseconds. Return the number of microseconds
363 static int devsymSleep(sqlite3_vfs *pVfs, int nMicro){ argument
364 return sqlite3OsSleep(g.pVfs, nMicro);
H A Dos.c181 int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ argument
182 return pVfs->xSleep(pVfs, nMicro);
H A Dtest6.c678 static int cfSleep(sqlite3_vfs *pCfVfs, int nMicro){ argument
680 return pVfs->xSleep(pVfs, nMicro);
H A Dtest_journal.c805 ** Sleep for nMicro microseconds. Return the number of microseconds
808 static int jtSleep(sqlite3_vfs *pVfs, int nMicro){ argument
809 return sqlite3OsSleep(g.pVfs, nMicro);
H A Dtest_onefile.c799 ** Sleep for nMicro microseconds. Return the number of microseconds
802 static int fsSleep(sqlite3_vfs *pVfs, int nMicro){ argument
804 return pParent->xSleep(pParent, nMicro);
H A Dtest_osinst.c587 ** Sleep for nMicro microseconds. Return the number of microseconds
590 static int vfslogSleep(sqlite3_vfs *pVfs, int nMicro){ argument
591 return REALVFS(pVfs)->xSleep(REALVFS(pVfs), nMicro);
H A Dtest_vfstrace.c647 ** Sleep for nMicro microseconds. Return the number of microseconds
650 static int vfstraceSleep(sqlite3_vfs *pVfs, int nMicro){ argument
653 return pRoot->xSleep(pRoot, nMicro);
H A Dtest_vfs.c710 ** Sleep for nMicro microseconds. Return the number of microseconds
713 static int tvfsSleep(sqlite3_vfs *pVfs, int nMicro){ argument
714 return sqlite3OsSleep(PARENTVFS(pVfs), nMicro);
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c1289 static int asyncSleep(sqlite3_vfs *pAsyncVfs, int nMicro){ argument
1291 return pVfs->xSleep(pVfs, nMicro);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c14125 SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ argument
14126 return pVfs->xSleep(pVfs, nMicro);
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c15973 SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ argument
15974 return pVfs->xSleep(pVfs, nMicro);
[all...]
/external/sqlite/dist/
H A Dsqlite3.c15973 SQLITE_PRIVATE int sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro){ argument
15974 return pVfs->xSleep(pVfs, nMicro);
[all...]

Completed in 3136 milliseconds