Searched refs:Btree (Results 1 - 8 of 8) sorted by relevance
/osnet-11/usr/src/lib/libsqlite/src/ |
H A D | btree.h | 27 typedef struct Btree Btree; typedef in typeref:struct:Btree 44 int (*Close)(Btree*); 45 int (*SetCacheSize)(Btree*, int); 46 int (*SetSafetyLevel)(Btree*, int); 47 int (*BeginTrans)(Btree*); 48 int (*Commit)(Btree*); 49 int (*Rollback)(Btree*); 50 int (*BeginCkpt)(Btree*); 51 int (*CommitCkpt)(Btree*); [all...] |
H A D | test3.c | 65 Btree *pBt; 97 Btree *pBt; 124 Btree *pBt; 151 Btree *pBt; 178 Btree *pBt; 205 Btree *pBt; 235 Btree *pBt; 264 Btree *pBt; 293 Btree *pBt; 327 Btree *pB [all...] |
H A D | btree_rb.c | 619 Btree **ppBtree 1446 (int(*)(Btree*)) memRbtreeClose, 1447 (int(*)(Btree*,int)) memRbtreeSetCacheSize, 1448 (int(*)(Btree*,int)) memRbtreeSetSafetyLevel, 1449 (int(*)(Btree*)) memRbtreeBeginTrans, 1450 (int(*)(Btree*)) memRbtreeCommit, 1451 (int(*)(Btree*)) memRbtreeRollback, 1452 (int(*)(Btree*)) memRbtreeBeginCkpt, 1453 (int(*)(Btree*)) memRbtreeCommitCkpt, 1454 (int(*)(Btree*)) memRbtreeRollbackCkp [all...] |
H A D | btree.c | 69 ** Macros used for byteswapping. B is a pointer to the Btree 70 ** structure. This is needed to access the Btree.needSwab boolean 353 struct Btree { struct 363 typedef Btree Bt; 372 Btree *pBt; /* The Btree to which this cursor belongs */ 412 static int cellSize(Btree *pBt, Cell *pCell){ 428 static void defragmentPage(Btree *pBt, MemPage *pPage){ 477 static int allocateSpace(Btree *pBt, MemPage *pPage, int nByte){ 526 static void freeSpace(Btree *pB [all...] |
H A D | vdbeInt.h | 54 ** loop over all entries of the Btree. You can also insert new BTree 79 Btree *pBt; /* Separate file holding temporary table */
|
H A D | sqliteInt.h | 265 Btree *pBt; /* The B*Tree structure for this database file */ 1264 int mode, int nPg, Btree **ppBtree);
|
H A D | main.c | 1117 Btree **ppBtree){ /* Pointer to new Btree object written here */
|
H A D | vdbe.c | 2398 Btree *pX;
|
Completed in 47 milliseconds