Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/sql/chromium/
DSQLiteFileSystemChromiumWin.cpp167 win32_vfs->xRandomness, in registerSQLiteVFS()
DSQLiteFileSystemChromiumPosix.cpp198 unix_vfs->xRandomness, in registerSQLiteVFS()
/external/sqlite/dist/
Dsqlite3.h814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); member
Dsqlite3.h.orig786 ** The xRandomness(), xSleep(), and xCurrentTime() interfaces
789 ** The xRandomness() function attempts to return nBytes bytes
814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
1880 ** from the xRandomness method of the default [sqlite3_vfs] object.
1882 ** internally and without recourse to the [sqlite3_vfs] xRandomness
Dsqlite3.c.orig1310 ** The xRandomness(), xSleep(), and xCurrentTime() interfaces
1313 ** The xRandomness() function attempts to return nBytes bytes
1338 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
2404 ** from the xRandomness method of the default [sqlite3_vfs] object.
2406 ** internally and without recourse to the [sqlite3_vfs] xRandomness
12204 return pVfs->xRandomness(pVfs, nByte, zBufOut);
21271 os2Randomness, /* xRandomness */
27035 unixRandomness, /* xRandomness */ \
29223 winRandomness, /* xRandomness */
97630 ** to the xRandomness method of the default VFS.
Dsqlite3.c1338 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); member
12209 return pVfs->xRandomness(pVfs, nByte, zBufOut); in sqlite3OsRandomness()