Lines Matching refs:aPage
151 u8 *aPage[TESTVFS_MAX_PAGES]; /* Array of ckalloc'd pages */ member
879 if( p->aPage[iPage]==0 ){ in tvfsAllocPage()
880 p->aPage[iPage] = (u8 *)ckalloc(pgsz); in tvfsAllocPage()
881 memset(p->aPage[iPage], 0, pgsz); in tvfsAllocPage()
925 if( rc==SQLITE_OK && isWrite && !pFd->pShm->aPage[iPage] ){ in tvfsShmMap()
929 *pp = (void volatile *)pFd->pShm->aPage[iPage]; in tvfsShmMap()
1055 for(i=0; pBuffer->aPage[i]; i++){ in tvfsShmUnmap()
1056 ckfree((char *)pBuffer->aPage[i]); in tvfsShmUnmap()
1160 memcpy(pBuffer->aPage[i], &a[i*pgsz], nByte); in testvfs_obj_cmd()
1165 for(i=0; pBuffer->aPage[i]; i++){ in testvfs_obj_cmd()
1168 Tcl_AppendObjToObj(pObj, Tcl_NewByteArrayObj(pBuffer->aPage[i], pgsz)); in testvfs_obj_cmd()