Lines Matching refs:owner

18033 ** that the owner of the "z" string does not deallocate the string before
26542 ** The sqlite3_mutex.id, sqlite3_mutex.nRef, and sqlite3_mutex.owner fields
26562 volatile pthread_t owner; /* Thread that is within this mutex */
26593 return (p->nRef!=0 && pthread_equal(p->owner, pthread_self()));
26596 return p->nRef==0 || pthread_equal(p->owner, pthread_self())==0;
26772 ** and p->owner are equal if p->owner changes between two values
26781 if( p->nRef>0 && pthread_equal(p->owner, self) ){
26786 p->owner = self;
26795 assert( p->nRef>0 || p->owner==0 );
26796 p->owner = pthread_self();
26815 ** and p->owner are equal if p->owner changes between two values
26824 if( p->nRef>0 && pthread_equal(p->owner, self) ){
26829 p->owner = self;
26841 p->owner = pthread_self();
26868 if( p->nRef==0 ) p->owner = 0;
27243 volatile DWORD owner; /* Thread holding this mutex */
27268 return p->nRef!=0 && p->owner==GetCurrentThreadId();
27272 return p->nRef==0 || p->owner!=tid;
27463 assert( p->nRef==0 && p->owner==0 );
27498 assert( p->nRef>0 || p->owner==0 );
27499 p->owner = tid;
27535 p->owner = tid;
27545 OSTRACE(("TRY-MUTEX tid=%lu, mutex(%d)=%p (%d), owner=%lu, nRef=%d, rc=%s\n",
27546 tid, p->id, p, p->trace, p->owner, p->nRef, sqlite3ErrName(rc)));
27565 assert( p->owner==tid );
27567 if( p->nRef==0 ) p->owner = 0;
37457 ** inode if the mtime or owner or other inode attributes have changed.
38488 ** the original owner will not be able to connect.
40026 /* The owner of the rollback journal or WAL file should always be the
40027 ** same as the owner of the database file. Try to ensure that this is