Lines Matching defs:pPgno
69669 ** the type and parent page number to *pEType and *pPgno respectively.
69672 static int ptrmapGet(BtShared *pBt, Pgno key, u8 *pEType, Pgno *pPgno){
69696 if( pPgno ) *pPgno = get4byte(&pPtrmap[offset+1]);
74882 Pgno *pPgno, /* Store the page number here */
74981 *pPgno = iTrunk;
74985 TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1));
74997 *pPgno = iTrunk;
75051 TRACE(("ALLOCATE: %d trunk - %d free pages left\n", *pPgno, n-1));
75095 *pPgno = iPage;
75098 *pPgno, closest+1, k, pTrunk->pgno, n-1));
75105 noContent = !btreeGetHasContent(pBt, *pPgno)? PAGER_GET_NOCONTENT : 0;
75106 rc = btreeGetUnusedPage(pBt, *pPgno, ppPage, noContent);
75148 /* If *pPgno refers to a pointer-map page, allocate two new pages
75166 *pPgno = pBt->nPage;
75168 assert( *pPgno!=PENDING_BYTE_PAGE(pBt) );
75169 rc = btreeGetUnusedPage(pBt, *pPgno, ppPage, bNoContent);
75176 TRACE(("ALLOCATE: %d from end of file\n", *pPgno));
75179 assert( CORRUPT_DB || *pPgno!=PENDING_BYTE_PAGE(pBt) );