Searched defs:nRef (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dos.c230 int nRef; /* Number of pointers to this structure */ member in struct:lockInfo
252 int nRef; /* Number of pointers to this structure */ member in struct:openCnt
269 pLock->nRef--;
270 if( pLock->nRef==0 ){
280 pOpen->nRef--;
281 if( pOpen->nRef==0 ){
321 pLock->nRef = 1;
330 pLock->nRef++;
342 pOpen->nRef = 1;
354 pOpen->nRef
[all...]
H A Dpager.c113 int nRef; /* Number of users of this page */ member in struct:PgHdr
114 PgHdr *pNextFree, *pPrevFree; /* Freelist of pages where nRef==0 */
175 int nRef; /* Number of in-memory pages with PgHdr.nRef>0 */ member in struct:Pager
303 "REFCNT: %4d addr=0x%08x nRef=%d\n",
304 p->pgno, (int)PGHDR_TO_DATA(p), p->nRef
466 pPager->nRef = 0;
579 /* assert( pPg->nRef==0 || pPg->pgno==1 ) */
750 if( pPg->nRef==0 || memcmp(zBuf, PGHDR_TO_DATA(pPg), SQLITE_PAGE_SIZE) ){
985 pPager->nRef
[all...]
H A Dbtree.c3435 int nRef; local
3438 nRef = *sqlitepager_stats(pBt->pPager);
3479 if( nRef != *sqlitepager_stats(pBt->pPager) ){
3483 nRef, *sqlitepager_stats(pBt->pPager)

Completed in 110 milliseconds