Searched defs:iPage (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A Dtest3.c363 int iPage; local
372 if( Tcl_GetInt(interp, argv[2], &iPage) ) return TCL_ERROR;
373 rc = sqliteBtreePageDump(pBt, iPage, 0);
393 int iPage; local
402 if( Tcl_GetInt(interp, argv[2], &iPage) ) return TCL_ERROR;
403 rc = sqliteBtreePageDump(pBt, iPage, 1);
H A Dbtree.c3193 ** Add 1 to the reference count for page iPage. If this is the second
3200 static int checkRef(IntegrityCk *pCheck, int iPage, char *zContext){ argument
3201 if( iPage==0 ) return 1;
3202 if( iPage>pCheck->nPage || iPage<0 ){
3204 sprintf(zBuf, "invalid page number %d", iPage);
3208 if( pCheck->anRef[iPage]==1 ){
3210 sprintf(zBuf, "2nd reference to page %d", iPage);
3214 return (pCheck->anRef[iPage]++)>1;
3224 int iPage, /* Pag
3221 checkList( IntegrityCk *pCheck, int isFreeList, int iPage, int N, char *zContext ) argument
3291 checkTreePage( IntegrityCk *pCheck, int iPage, MemPage *pParent, char *zParentContext, char *zLowerBound, int nLower, char *zUpperBound, int nUpper ) argument
[all...]

Completed in 170 milliseconds