Searched refs:lockType (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/bsddb/test/ |
D | test_lock.py | 149 def theThread(self, lockType): argument 156 if lockType == db.DB_LOCK_WRITE: 166 lock = self.env.lock_get(anID, "some locked thing", lockType)
|
/external/llvm-project/compiler-rt/lib/profile/ |
D | WindowsMMap.c | 116 int lock(HANDLE handle, DWORD lockType, BOOL blocking) { in lock() argument 117 DWORD flags = lockType; in lock()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowWifiManager.java | 160 protected WifiManager.WifiLock createWifiLock(int lockType, String tag) { in createWifiLock() argument
|
/external/pdfium/xfa/fxfa/parser/ |
D | attributes.inc | 151 ATTR____(0x79975f2bu, "lockType", LockType, Basic)
|
/external/python/pycparser/utils/benchmark/inputs/ |
D | sqlite-btree.c.ppout | 11272 u8 lockType = 1 + isWriteLock; 11277 rc = querySharedCacheTableLock(p, iTab, lockType); 11279 rc = setSharedCacheTableLock(p, iTab, lockType);
|
/external/rust/crates/libsqlite3-sys/sqlite3/ |
D | sqlite3.c | 23073 SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file *id, int lockType){ in sqlite3OsLock() argument 23075 return id->pMethods->xLock(id, lockType); in sqlite3OsLock() 23077 SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file *id, int lockType){ in sqlite3OsUnlock() argument 23078 return id->pMethods->xUnlock(id, lockType); in sqlite3OsUnlock() 37848 int lockType, /* F_UNLCK, F_RDLCK, or F_WRLCK */ 37862 assert( n==1 || lockType!=F_RDLCK ); 37870 f.l_type = lockType; 37890 if( lockType==F_UNLCK ){ 37894 }else if( lockType==F_RDLCK ){ 37899 assert( lockType==F_WRLCK ); [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 23028 SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file *id, int lockType){ in sqlite3OsLock() argument 23030 return id->pMethods->xLock(id, lockType); in sqlite3OsLock() 23032 SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file *id, int lockType){ in sqlite3OsUnlock() argument 23033 return id->pMethods->xUnlock(id, lockType); in sqlite3OsUnlock() 37763 int lockType, /* F_UNLCK, F_RDLCK, or F_WRLCK */ 37777 assert( n==1 || lockType!=F_RDLCK ); 37785 f.l_type = lockType; 37805 if( lockType==F_UNLCK ){ 37809 }else if( lockType==F_RDLCK ){ 37814 assert( lockType==F_WRLCK ); [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 23028 SQLITE_PRIVATE int sqlite3OsLock(sqlite3_file *id, int lockType){ in sqlite3OsLock() argument 23030 return id->pMethods->xLock(id, lockType); in sqlite3OsLock() 23032 SQLITE_PRIVATE int sqlite3OsUnlock(sqlite3_file *id, int lockType){ in sqlite3OsUnlock() argument 23033 return id->pMethods->xUnlock(id, lockType); in sqlite3OsUnlock() 37779 int lockType, /* F_UNLCK, F_RDLCK, or F_WRLCK */ 37793 assert( n==1 || lockType!=F_RDLCK ); 37801 f.l_type = lockType; 37821 if( lockType==F_UNLCK ){ 37825 }else if( lockType==F_RDLCK ){ 37830 assert( lockType==F_WRLCK ); [all …]
|