Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c653 static sqlite3_vfs *clockVfs = 0; in timeOfDay() local
655 if( clockVfs==0 ) clockVfs = sqlite3_vfs_find(0); in timeOfDay()
656 if( clockVfs==0 ) return 0; /* Never actually happens */ in timeOfDay()
657 if( clockVfs->iVersion>=2 && clockVfs->xCurrentTimeInt64!=0 ){ in timeOfDay()
658 clockVfs->xCurrentTimeInt64(clockVfs, &t); in timeOfDay()
661 clockVfs->xCurrentTime(clockVfs, &r); in timeOfDay()