Home
last modified time | relevance | path

Searched refs:clockVfs (Results 1 – 25 of 49) sorted by relevance

12

/dports/databases/sqlcipher/sqlcipher-3.4.2/test/
H A Dossfuzz.c31 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
33 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
34 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
35 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
38 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dwordcount.c101 static sqlite3_vfs *clockVfs = 0; in realTime() local
103 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in realTime()
104 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in realTime()
105 clockVfs->xCurrentTimeInt64(clockVfs, &t); in realTime()
108 clockVfs->xCurrentTime(clockVfs, &r); in realTime()
H A Dkvtest.c662 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
664 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
665 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
666 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
669 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dfuzzcheck.c400 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
402 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
403 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
404 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
407 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dspeedtest1.c173 static sqlite3_vfs *clockVfs = 0; in speedtest1_timestamp()
175 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in speedtest1_timestamp()
177 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in speedtest1_timestamp()
178 clockVfs->xCurrentTimeInt64(clockVfs, &t); in speedtest1_timestamp()
183 clockVfs->xCurrentTime(clockVfs, &r); in speedtest1_timestamp()
/dports/databases/sqlite3/sqlite-src-3350500/test/
H A Dossfuzz.c37 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
39 if( clockVfs==0 ){ in timeOfDay()
40 clockVfs = sqlite3_vfs_find(0); in timeOfDay()
41 if( clockVfs==0 ) return 0; in timeOfDay()
43 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
44 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
47 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dwordcount.c106 static sqlite3_vfs *clockVfs = 0; in realTime() local
108 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in realTime()
109 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in realTime()
110 clockVfs->xCurrentTimeInt64(clockVfs, &t); in realTime()
113 clockVfs->xCurrentTime(clockVfs, &r); in realTime()
H A Dkvtest.c664 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
666 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
667 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
668 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
671 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dfuzzcheck.c465 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
467 if( clockVfs==0 ){ in timeOfDay()
468 clockVfs = sqlite3_vfs_find(0); in timeOfDay()
469 if( clockVfs==0 ) return 0; in timeOfDay()
471 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
472 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
475 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dspeedtest1.c261 static sqlite3_vfs *clockVfs = 0; in speedtest1_timestamp()
263 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in speedtest1_timestamp()
265 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in speedtest1_timestamp()
266 clockVfs->xCurrentTimeInt64(clockVfs, &t); in speedtest1_timestamp()
271 clockVfs->xCurrentTime(clockVfs, &r); in speedtest1_timestamp()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/fuzz/
H A Dsql_run_queries.cc26 static sqlite3_vfs* clockVfs = 0; in timeOfDay() local
28 if (clockVfs == 0) { in timeOfDay()
29 clockVfs = sqlite3_vfs_find(0); in timeOfDay()
30 if (clockVfs == 0) in timeOfDay()
33 if (clockVfs->iVersion >= 2 && clockVfs->xCurrentTimeInt64 != 0) { in timeOfDay()
34 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
37 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/test/
H A Dossfuzz.c37 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
39 if( clockVfs==0 ){ in timeOfDay()
40 clockVfs = sqlite3_vfs_find(0); in timeOfDay()
41 if( clockVfs==0 ) return 0; in timeOfDay()
43 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
44 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
47 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dwordcount.c106 static sqlite3_vfs *clockVfs = 0; in realTime() local
108 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in realTime()
109 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in realTime()
110 clockVfs->xCurrentTimeInt64(clockVfs, &t); in realTime()
113 clockVfs->xCurrentTime(clockVfs, &r); in realTime()
H A Dkvtest.c664 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
666 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
667 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
668 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
671 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dfuzzcheck.c460 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
462 if( clockVfs==0 ){ in timeOfDay()
463 clockVfs = sqlite3_vfs_find(0); in timeOfDay()
464 if( clockVfs==0 ) return 0; in timeOfDay()
466 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
467 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
470 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
H A Dspeedtest1.c261 static sqlite3_vfs *clockVfs = 0; in speedtest1_timestamp()
263 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in speedtest1_timestamp()
265 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in speedtest1_timestamp()
266 clockVfs->xCurrentTimeInt64(clockVfs, &t); in speedtest1_timestamp()
271 clockVfs->xCurrentTime(clockVfs, &r); in speedtest1_timestamp()
/dports/databases/sqlite3/sqlite-src-3350500/tool/
H A Dfuzzershell.c776 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
778 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
779 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
780 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
783 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/databases/sqlcipher/sqlcipher-3.4.2/tool/
H A Dfuzzershell.c776 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
778 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
779 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
780 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
783 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/sqlite/src/tool/
H A Dfuzzershell.c776 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
778 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
779 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
780 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
783 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/sqlite/src/tool/
H A Dfuzzershell.c776 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
778 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
779 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
780 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
783 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/devel/emscripten/emscripten-2.0.3/tests/sqlite/
H A Dspeedtest1.c148 static sqlite3_vfs *clockVfs = 0; in speedtest1_timestamp() local
150 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in speedtest1_timestamp()
152 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in speedtest1_timestamp()
153 clockVfs->xCurrentTimeInt64(clockVfs, &t); in speedtest1_timestamp()
158 clockVfs->xCurrentTime(clockVfs, &r); in speedtest1_timestamp()
/dports/biology/hyphy/hyphy-2.5.33/contrib/SQLite-3.8.2/
H A Dshell.c100 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
102 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
103 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
104 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
107 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/games/craft/Craft-1.0fbsd/deps/sqlite/
H A Dshell.c105 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
107 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
108 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
109 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
112 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/devel/libgpkg/luciad-libgpkg-c56e3708453e/shell/
H A Dshell.c121 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
123 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
124 if( clockVfs->iVersion>=1 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
125 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
128 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()
/dports/devel/fossil/fossil-src-2.17/src/
H A Ddiff.c3071 static sqlite3_vfs *clockVfs = 0; in current_time_in_milliseconds() local
3073 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in current_time_in_milliseconds()
3074 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in current_time_in_milliseconds()
3075 clockVfs->xCurrentTimeInt64(clockVfs, &t); in current_time_in_milliseconds()
3078 clockVfs->xCurrentTime(clockVfs, &r); in current_time_in_milliseconds()

12