/external/chromium_org/third_party/sqlite/src/src/ |
mutex_unix.c | 28 ** The sqlite3_mutex.id, sqlite3_mutex.nRef, and sqlite3_mutex.owner fields 45 volatile int nRef; /* Number of entrances */ 74 return (p->nRef!=0 && pthread_equal(p->owner, pthread_self())); 77 return p->nRef==0 || pthread_equal(p->owner, pthread_self())==0; 191 assert( p->nRef==0 ); 224 if( p->nRef>0 && pthread_equal(p->owner, self) ){ 225 p->nRef++; 228 assert( p->nRef==0 ); 230 p->nRef = 1; 238 assert( p->nRef>0 || p->owner==0 ) [all...] |
mutex_w32.c | 29 volatile int nRef; /* Number of enterances */ 81 return p->nRef!=0 && p->owner==GetCurrentThreadId(); 84 return p->nRef==0 || p->owner!=tid; 223 assert( p->nRef==0 && p->owner==0 ); 247 assert( p->nRef>0 || p->owner==0 ); 249 p->nRef++; 251 printf("enter mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef); 275 p->nRef++; 283 printf("try mutex %p (%d) with nRef=%d\n", p, p->trace, p->nRef) [all...] |
pcache.c | 22 int nRef; /* Number of referenced pages */ 58 assert( p->nRef || (p->flags&PGHDR_NEED_SYNC) ); 60 return (p==0 || p->nRef || (p->flags&PGHDR_NEED_SYNC)==0); 192 assert( pCache->nRef==0 && pCache->pDirty==0 ); 247 pPg && (pPg->nRef || (pPg->flags&PGHDR_NEED_SYNC)); 252 for(pPg=pCache->pDirtyTail; pPg && pPg->nRef; pPg=pPg->pDirtyPrev); 279 if( 0==pPage->nRef ){ 280 pCache->nRef++; 282 pPage->nRef++; 296 assert( p->nRef>0 ) [all...] |
pcache.h | 40 i16 nRef; /* Number of users of this page */
|
test_btree.c | 38 Tcl_ListObjAppendElement(interp, pRet, Tcl_NewIntObj(pBt->nRef));
|
test_onefile.c | 104 int nRef; /* Number of pointers to this structure */ 381 pReal->nRef--; 382 assert(pReal->nRef>=0); 385 if( pReal->nRef==0 ){ 669 pReal->nRef++;
|
resolve.c | 337 ** Because no reference was made to outer contexts, the pNC->nRef 391 /* Increment the nRef value on all name contexts from TopNC up to 395 pTopNC->nRef++; 585 int nRef = pNC->nRef; 592 assert( pNC->nRef>=nRef ); 593 if( nRef!=pNC->nRef ){ [all...] |
btreeInt.h | 375 ** to this one BtShared object. BtShared.nRef is the number of 379 ** mutex, except for nRef and pNext which are accessed under the 381 ** may not be modified once it is initially set as long as nRef>0. 383 ** thereafter is unchanged as long as nRef>0. 432 int nRef; /* Number of references to this structure */
|
os_os2.c | 750 ** nRef 759 ** Either os2ShmNode.mutex must be held or os2ShmNode.nRef==0 and 773 int nRef; /* Number of os2ShmLink objects pointing to this */ 841 assert( sqlite3_mutex_held(pNode->mutex) || pNode->nRef==0 ); 962 pNode->nRef++; 981 ** Purge the os2ShmNodeList list of all entries with nRef==0. 997 if( pNode->nRef == 0 ) { [all...] |
test_quota.c | 97 int nRef; /* Number of times this file is open */ 341 pFile->nRef++; 367 pFile->nRef--; 368 if( pFile->nRef==0 ){ 919 Tcl_NewWideIntObj(pFile->nRef));
|
vtab.c | 95 pVTab->nRef++; 119 assert( pVTab->nRef>0 ); 122 pVTab->nRef--; 123 if( pVTab->nRef==0 ){ 476 pVTable->nRef = 1;
|
os_unix.c | 703 int nRef; /* Number of references to this one */ 756 ** The nRef field of the vxworksFileId object is incremented before 785 pCandidate->nRef++; 792 pNew->nRef = 1; 806 assert( pId->nRef>0 ); 807 pId->nRef--; 808 if( pId->nRef==0 ){ 939 int nRef; /* Number of pointers to this structure * [all...] |
os_win.c | [all...] |
alter.c | 792 pNew->nRef = 1; 814 pNew->nRef = 1;
|
delete.c | 39 pTab->nRef++;
|
main.c | 667 pDestructor->nRef--; 668 if( pDestructor->nRef==0 ){ [all...] |
sqliteInt.h | [all...] |
btree.c | [all...] |
select.c | [all...] |
sqlite.h.in | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
rtree.c | 260 int nRef; 383 p->nRef++; 452 pNode->nRef = 1; 483 pNode->nRef++; 499 pNode->nRef = 1; 640 assert( pNode->nRef>0 ); 641 pNode->nRef--; 642 if( pNode->nRef==0 ){ [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |
/external/sqlite/dist/orig/ |
sqlite3.c | [all...] |
/external/sqlite/dist/ |
sqlite3.c | [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
tester.tcl | 1038 set nRef $stats(ref) 1039 expr {$nRef == 0 || ([sqlite3_get_autocommit db]==0 && $nRef == 1)} [all...] |