HomeSort by relevance Sort by last modified time
    Searched defs:nRef (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
pcache.h 40 i16 nRef; /* Number of users of this page */
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...]
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...]
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++;
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));
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...]
os_win.c     [all...]
btree.c     [all...]
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...]
sqliteInt.h     [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.h     [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.h     [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.h     [all...]
sqlite3.c     [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp     [all...]

Completed in 366 milliseconds