Searched refs:aRoot (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | btree.c | 3415 ** This routine does a complete check of the given BTree file. aRoot[] is 3417 ** a table. nRoot is the number of entries in aRoot. 3424 char *fileBtreeIntegrityCheck(Btree *pBt, int *aRoot, int nRoot){ argument 3453 if( aRoot[i]==0 ) continue; 3454 checkTreePage(&sCheck, aRoot[i], 0, "List of tree roots: ", 0,0,0,0);
|
| H A D | btree.h | 141 #define sqliteBtreeIntegrityCheck(pBt, aRoot, nRoot)\ 142 (btOps(pBt)->IntegrityCheck(pBt, aRoot, nRoot))
|
| H A D | btree_rb.c | 1240 * memory obtained from sqliteMalloc(). Parameters aRoot and nRoot are ignored. 1242 static char *memRbtreeIntegrityCheck(Rbtree* tree, int* aRoot, int nRoot) argument
|
| H A D | vdbe.c | 3719 int *aRoot; local 3730 aRoot = sqliteMallocRaw( sizeof(int)*(nRoot+1) ); 3731 if( aRoot==0 ) goto no_mem; 3733 toInt((char*)sqliteHashKey(i), &aRoot[j]); 3735 aRoot[j] = 0; 3738 z = sqliteBtreeIntegrityCheck(db->aDb[pOp->p2].pBt, aRoot, nRoot); 3749 sqliteFree(aRoot);
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 8063 SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck(Btree*, int *aRoot, int nRoot, int, int*); 55339 sqlite3BtreeIntegrityCheck( Btree *p, int *aRoot, int nRoot, int mxErr, int *pnErr ) argument 63215 int *aRoot; /* Array of rootpage numbers for tables to be checked */ member in struct:vdbeExecUnion::OP_IntegrityCk_stack_vars 75859 int aRoot[] = {0, 0}; local [all...] |
Completed in 134 milliseconds