HomeSort by relevance Sort by last modified time
    Searched full:locktype (Results 1 - 25 of 31) sorted by null

1 2

  /hardware/qcom/display/msm8960/libgenlock/
genlock.cpp 43 int get_kernel_lock_type(genlock_lock_type lockType)
49 if (lockType & GENLOCK_WRITE_LOCK) {
51 } else if (lockType & GENLOCK_READ_LOCK) {
54 ALOGE("%s: invalid lockType (lockType = %d)",
55 __FUNCTION__, lockType);
64 int lockType, int timeout,
83 lock.op = lockType;
92 lockType, strerror(errno), hnd->fd);
102 ,__FUNCTION__, lockType, strerror(errno), hnd->fd)
    [all...]
genlock.h 83 * buffer is specified by the lockType. This function will block if a write
96 genlock_lock_type_t lockType,
  /hardware/qcom/display/msm8x26/libgenlock/
genlock.cpp 43 int get_kernel_lock_type(genlock_lock_type lockType)
49 if (lockType & GENLOCK_WRITE_LOCK) {
51 } else if (lockType & GENLOCK_READ_LOCK) {
54 ALOGE("%s: invalid lockType (lockType = %d)",
55 __FUNCTION__, lockType);
64 int lockType, int timeout,
83 lock.op = lockType;
92 lockType, strerror(errno), hnd->fd);
102 ,__FUNCTION__, lockType, strerror(errno), hnd->fd)
    [all...]
genlock.h 83 * buffer is specified by the lockType. This function will block if a write
96 genlock_lock_type_t lockType,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dummy_thread.py 17 'interrupt_main', 'LockType']
73 return LockType()
81 class LockType(object):
82 """Class implementing dummy implementation of thread.LockType.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dummy_thread.py 17 'interrupt_main', 'LockType']
73 return LockType()
81 class LockType(object):
82 """Class implementing dummy implementation of thread.LockType.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
lock_tests.py 72 lock = self.locktype()
76 lock = self.locktype()
81 lock = self.locktype()
87 lock = self.locktype()
92 lock = self.locktype()
102 lock = self.locktype()
118 lock = self.locktype()
136 lock = self.locktype()
154 lock = self.locktype()
173 lock = self.locktype()
    [all...]
test_dummy_thread.py 101 #Make sure _thread.LockType is the same type as _thread.allocate_locke()
102 self.assertIsInstance(_thread.allocate_lock(), _thread.LockType,
103 "_thread.LockType is not an instance of what "
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
test_threading.py 715 locktype = staticmethod(threading.Lock) variable in class:LockTests
718 locktype = staticmethod(threading.RLock) variable in class:RLockTests
725 locktype = staticmethod(threading.Condition) variable in class:ConditionAsRLockTests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
lock_tests.py 72 lock = self.locktype()
76 lock = self.locktype()
81 lock = self.locktype()
87 lock = self.locktype()
92 lock = self.locktype()
102 lock = self.locktype()
118 lock = self.locktype()
136 lock = self.locktype()
154 lock = self.locktype()
173 lock = self.locktype()
    [all...]
test_dummy_thread.py 101 #Make sure _thread.LockType is the same type as _thread.allocate_locke()
102 self.assertIsInstance(_thread.allocate_lock(), _thread.LockType,
103 "_thread.LockType is not an instance of what "
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
test_threading.py 715 locktype = staticmethod(threading.Lock) variable in class:LockTests
718 locktype = staticmethod(threading.RLock) variable in class:RLockTests
725 locktype = staticmethod(threading.Condition) variable in class:ConditionAsRLockTests
  /external/chromium_org/third_party/sqlite/src/src/
os_os2.c 71 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...]
os.c 82 int sqlite3OsLock(sqlite3_file *id, int lockType){
84 return id->pMethods->xLock(id, lockType);
86 int sqlite3OsUnlock(sqlite3_file *id, int lockType){
87 return id->pMethods->xUnlock(id, lockType);
os_win.c 105 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){
979 int newLocktype; /* Set pFile->locktype to this value before exiting */
986 pFile->h, locktype, pFile->locktype, pFile->sharedLockByte));
992 if( pFile->locktype>=locktype )
    [all...]
os_unix.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 142 def theThread(self, lockType):
149 if lockType == db.DB_LOCK_WRITE:
159 lock = self.env.lock_get(anID, "some locked thing", lockType)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 142 def theThread(self, lockType):
149 if lockType == db.DB_LOCK_WRITE:
159 lock = self.env.lock_get(anID, "some locked thing", lockType)
  /frameworks/base/wifi/java/android/net/wifi/
IWifiManager.aidl 78 boolean acquireWifiLock(IBinder lock, int lockType, String tag, in WorkSource ws);
WifiManager.java     [all...]
  /external/e2fsprogs/lib/ext2fs/tdb/patches/
static-prototypes 61 -tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, int locktype,
62 +static tdb_off_t tdb_find_lock_hash(struct tdb_context *tdb, TDB_DATA key, u32 hash, int locktype,
  /external/chromium_org/tools/telemetry/third_party/davclient/
davclient.py 266 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/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWifiManager.java 104 public WifiManager.WifiLock createWifiLock(int lockType, java.lang.String tag) {

Completed in 380 milliseconds

1 2