Searched refs:locktype (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dos_os2.c71 int locktype; /* Type of lock currently held on this file */ member in struct:os2File
109 pFile->locktype = NO_LOCK;
133 OSTRACE(( "READ %d lock=%d\n", pFile->h, pFile->locktype ));
166 OSTRACE(( "WRITE %d lock=%d\n", pFile->h, pFile->locktype ));
219 OSTRACE(( "SYNC %d lock=%d\n", pFile->h, pFile->locktype ));
292 ** Lock the file with the lock specified by parameter locktype - one
317 static int os2Lock( sqlite3_file *id, int locktype ){
320 int newLocktype; /* Set pFile->locktype to this value before exiting */
328 OSTRACE(( "LOCK %d %d was %d\n", pFile->h, locktype, pFile->locktype ));
[all...]
H A Dos_win.c105 unsigned char locktype; /* Type of lock currently held on this file */ member in struct:winFile
718 OSTRACE(("READ %d lock=%d\n", pFile->h, pFile->locktype));
754 OSTRACE(("WRITE %d lock=%d\n", pFile->h, pFile->locktype));
839 OSTRACE(("SYNC %d lock=%d\n", pFile->h, pFile->locktype));
951 ** Lock the file with the lock specified by parameter locktype - one
976 static int winLock(sqlite3_file *id, int locktype){ argument
979 int newLocktype; /* Set pFile->locktype to this value before exiting */
986 pFile->h, locktype, pFile->locktype, pFile->sharedLockByte));
992 if( pFile->locktype>
1132 winUnlock(sqlite3_file *id, int locktype) argument
[all...]
H A Dpager.c3620 ** Try to obtain a lock of type locktype on the database file. If
3631 ** variable to locktype before returning.
3633 static int pager_wait_on_lock(Pager *pPager, int locktype){ argument
3641 assert( (pPager->eLock>=locktype)
3642 || (pPager->eLock==NO_LOCK && locktype==SHARED_LOCK)
3643 || (pPager->eLock==RESERVED_LOCK && locktype==EXCLUSIVE_LOCK)
3647 rc = pagerLockDb(pPager, locktype);
/external/chromium_org/tools/telemetry/third_party/davclient/
H A Ddavclient.py266 def set_lock(self, path, owner, locktype='exclusive', lockscope='write', depth=None, headers=None):
269 object_to_etree(root, {'locktype':locktype, 'lockscope':lockscope, 'owner':{'href':owner}}, namespace='DAV:')
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c22083 int locktype; /* Type of lock currently held on this file */ member in struct:os2File
22121 pFile->locktype = NO_LOCK;
22145 OSTRACE(( "READ %d lock=%d\n", pFile->h, pFile->locktype ));
22178 OSTRACE(( "WRITE %d lock=%d\n", pFile->h, pFile->locktype ));
22231 OSTRACE(( "SYNC %d lock=%d\n", pFile->h, pFile->locktype ));
22304 ** Lock the file with the lock specified by parameter locktype - one
22329 static int os2Lock( sqlite3_file *id, int locktype ){
22332 int newLocktype; /* Set pFile->locktype to this value before exiting */
22340 OSTRACE(( "LOCK %d %d was %d\n", pFile->h, locktype, pFile->locktype ));
31225 unsigned char locktype; /* Type of lock currently held on this file */ member in struct:winFile
32095 winLock(sqlite3_file *id, int locktype) argument
32251 winUnlock(sqlite3_file *id, int locktype) argument
40063 pager_wait_on_lock(Pager *pPager, int locktype) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c282 static tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, int locktype,
3131 tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, int locktype, argument
3136 if (tdb_lock(tdb, BUCKET(hash), locktype) == -1)
3139 tdb_unlock(tdb, BUCKET(hash), locktype);
/external/sqlite/dist/orig/
H A Dsqlite3.c32225 u8 locktype; /* Type of lock currently held on this file */ member in struct:winFile
34892 winLock(sqlite3_file *id, int locktype) argument
35066 winUnlock(sqlite3_file *id, int locktype) argument
44016 pager_wait_on_lock(Pager *pPager, int locktype) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c32245 u8 locktype; /* Type of lock currently held on this file */ member in struct:winFile
34912 winLock(sqlite3_file *id, int locktype) argument
35086 winUnlock(sqlite3_file *id, int locktype) argument
44036 pager_wait_on_lock(Pager *pPager, int locktype) argument
[all...]

Completed in 2183 milliseconds