Searched defs:szOsFile (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_vfs.c27 ** -szosfile INTEGER (Value for sqlite3_vfs.szOsFile)
536 pFd = (TestvfsFd *)ckalloc(sizeof(TestvfsFd) + PARENTVFS(pVfs)->szOsFile);
537 memset(pFd, 0, sizeof(TestvfsFd) + PARENTVFS(pVfs)->szOsFile);
1283 0, /* szOsFile */
1318 int szOsFile = 0; /* Value passed to -szosfile */ local
1339 if( Tcl_GetIntFromObj(interp, objv[i+1], &szOsFile) ){
1358 if( szOsFile<sizeof(TestvfsFile) ){
1359 szOsFile = sizeof(TestvfsFile);
1391 pVfs->szOsFile = szOsFile;
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h774 ** The szOsFile field is the size of the subclassed [sqlite3_file]
861 ** ^At least szOsFile bytes of memory are allocated by SQLite
918 int szOsFile; /* Size of subclassed sqlite3_file */ member in struct:sqlite3_vfs
H A Dsqlite3.c1317 ** The szOsFile field is the size of the subclassed [sqlite3_file]
1404 ** ^At least szOsFile bytes of memory are allocated by SQLite
1461 int szOsFile; /* Size of subclassed sqlite3_file */ member in struct:sqlite3_vfs
11490 #define sqlite3JournalSize(pVfs) ((pVfs)->szOsFile)
14155 pFile = (sqlite3_file *)sqlite3Malloc(pVfs->szOsFile);
23903 sizeof(os2File), /* szOsFile */
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.h1000 ** The szOsFile field is the size of the subclassed [sqlite3_file]
1088 ** ^At least szOsFile bytes of memory are allocated by SQLite
1146 int szOsFile; /* Size of subclassed sqlite3_file */ member in struct:sqlite3_vfs
H A Dsqlite3.c1115 ** The szOsFile field is the size of the subclassed [sqlite3_file]
1203 ** ^At least szOsFile bytes of memory are allocated by SQLite
1261 int szOsFile; /* Size of subclassed sqlite3_file */ member in struct:sqlite3_vfs
13090 #define sqlite3JournalSize(pVfs) ((pVfs)->szOsFile)
16003 pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile);
[all...]
/external/sqlite/dist/
H A Dsqlite3.h1000 ** The szOsFile field is the size of the subclassed [sqlite3_file]
1088 ** ^At least szOsFile bytes of memory are allocated by SQLite
1146 int szOsFile; /* Size of subclassed sqlite3_file */ member in struct:sqlite3_vfs
H A Dsqlite3.c1115 ** The szOsFile field is the size of the subclassed [sqlite3_file]
1203 ** ^At least szOsFile bytes of memory are allocated by SQLite
1261 int szOsFile; /* Size of subclassed sqlite3_file */ member in struct:sqlite3_vfs
13090 #define sqlite3JournalSize(pVfs) ((pVfs)->szOsFile)
16003 pFile = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile);
[all...]

Completed in 593 milliseconds