HomeSort by relevance Sort by last modified time
    Searched refs:locktype (Results 1 - 22 of 22) sorted by null

  /external/libevent/
evthread.c 150 unsigned locktype; member in struct:debug_lock
159 debug_lock_alloc(unsigned locktype)
166 locktype|EVTHREAD_LOCKTYPE_RECURSIVE))) {
173 result->locktype = locktype;
180 debug_lock_free(void *lock_, unsigned locktype)
184 EVUTIL_ASSERT(locktype == lock->locktype);
187 lock->locktype|EVTHREAD_LOCKTYPE_RECURSIVE);
198 if (!(lock->locktype & EVTHREAD_LOCKTYPE_RECURSIVE)
    [all...]
evthread-internal.h 75 #define EVTHREAD_ALLOC_LOCK(lockvar, locktype) \
77 _evthread_lock_fns.alloc(locktype) : NULL)
80 #define EVTHREAD_FREE_LOCK(lockvar, locktype) \
84 _evthread_lock_fns.free(_lock_tmp_, (locktype)); \
184 void *_evthreadimpl_lock_alloc(unsigned locktype);
185 void _evthreadimpl_lock_free(void *lock, unsigned locktype);
201 #define EVTHREAD_ALLOC_LOCK(lockvar, locktype) \
202 ((lockvar) = _evthreadimpl_lock_alloc(locktype))
204 #define EVTHREAD_FREE_LOCK(lockvar, locktype) \
208 _evthreadimpl_lock_free(_lock_tmp_, (locktype)); \
    [all...]
evthread_pthread.c 43 evthread_posix_lock_alloc(unsigned locktype)
49 if (locktype & EVTHREAD_LOCKTYPE_RECURSIVE)
59 evthread_posix_lock_free(void *_lock, unsigned locktype)
evthread_win32.c 49 evthread_win32_lock_create(unsigned locktype)
62 evthread_win32_lock_free(void *_lock, unsigned locktype)
  /external/libevent/include/event2/
thread.h 105 /** Function to allocate and initialize new lock of type 'locktype'.
107 void *(*alloc)(unsigned locktype);
109 * with type 'locktype'. */
110 void (*free)(void *lock, unsigned locktype);
  /prebuilts/gdb/darwin-x86/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_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
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
  /prebuilts/gdb/linux-x86/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_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
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
  /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_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
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
  /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_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
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
  /external/sqlite/dist/orig/
sqlite3.c 34638 u8 locktype; \/* Type of lock currently held on this file *\/ member in struct:winFile
    [all...]
  /external/sqlite/dist/
sqlite3.c 34656 u8 locktype; \/* Type of lock currently held on this file *\/ member in struct:winFile
    [all...]