HomeSort by relevance Sort by last modified time
    Searched refs:_lock (Results 51 - 75 of 81) sorted by null

1 23 4

  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
plist.h 29 #define PLIST_HEAD_LOCK_INIT(_lock)
31 #define PLIST_HEAD_INIT(head, _lock) { .prio_list = LIST_HEAD_INIT((head).prio_list), .node_list = LIST_HEAD_INIT((head).node_list), PLIST_HEAD_LOCK_INIT(&(_lock)) }
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
plist.h 29 #define PLIST_HEAD_LOCK_INIT(_lock)
31 #define PLIST_HEAD_INIT(head, _lock) { .prio_list = LIST_HEAD_INIT((head).prio_list), .node_list = LIST_HEAD_INIT((head).node_list), PLIST_HEAD_LOCK_INIT(&(_lock)) }
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
plist.h 29 #define PLIST_HEAD_LOCK_INIT(_lock)
31 #define PLIST_HEAD_INIT(head, _lock) { .prio_list = LIST_HEAD_INIT((head).prio_list), .node_list = LIST_HEAD_INIT((head).node_list), PLIST_HEAD_LOCK_INIT(&(_lock)) }
  /external/kernel-headers/original/linux/
plist.h 94 # define PLIST_HEAD_LOCK_INIT(_lock) .lock = _lock
96 # define PLIST_HEAD_LOCK_INIT(_lock)
104 #define PLIST_HEAD_INIT(head, _lock) \
108 PLIST_HEAD_LOCK_INIT(&(_lock)) \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 198 self._lock = lock or RLock()
206 return (self._lock, self._sleeping_count,
210 (self._lock, self._sleeping_count,
215 return self._lock.__enter__()
218 return self._lock.__exit__(*args)
221 self.acquire = self._lock.acquire
222 self.release = self._lock.release
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
233 assert self._lock._semlock._is_mine(), \
240 count = self._lock._semlock._count(
    [all...]
heap.py 96 self._lock = threading.Lock()
193 # that it's called while self._lock is held: in that case,
194 # self._lock.acquire() would deadlock (issue #12352). To avoid that, a
201 if not self._lock.acquire(False):
212 self._lock.release()
219 self._lock.acquire()
231 self._lock.release()
sharedctypes.py 208 self._lock = lock or RLock()
209 self.acquire = self._lock.acquire
210 self.release = self._lock.release
214 return synchronized, (self._obj, self._lock)
220 return self._lock
reduction.py 92 global _lock, _listener, _cache
96 _lock = threading.Lock()
106 _lock.acquire()
115 _lock.release()
util.py 336 self._lock = threading.Lock()
337 self.acquire = self._lock.acquire
338 self.release = self._lock.release
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 198 self._lock = lock or RLock()
206 return (self._lock, self._sleeping_count,
210 (self._lock, self._sleeping_count,
215 return self._lock.__enter__()
218 return self._lock.__exit__(*args)
221 self.acquire = self._lock.acquire
222 self.release = self._lock.release
230 return '<Condition(%s, %s)>' % (self._lock, num_waiters)
233 assert self._lock._semlock._is_mine(), \
240 count = self._lock._semlock._count(
    [all...]
heap.py 96 self._lock = threading.Lock()
193 # that it's called while self._lock is held: in that case,
194 # self._lock.acquire() would deadlock (issue #12352). To avoid that, a
201 if not self._lock.acquire(False):
212 self._lock.release()
219 self._lock.acquire()
231 self._lock.release()
sharedctypes.py 208 self._lock = lock or RLock()
209 self.acquire = self._lock.acquire
210 self.release = self._lock.release
214 return synchronized, (self._obj, self._lock)
220 return self._lock
reduction.py 92 global _lock, _listener, _cache
96 _lock = threading.Lock()
106 _lock.acquire()
115 _lock.release()
util.py 336 self._lock = threading.Lock()
337 self.acquire = self._lock.acquire
338 self.release = self._lock.release
  /external/webrtc/src/system_wrappers/source/
rw_lock_win.h 57 SRWLOCK _lock; member in class:webrtc::RWLockWindows
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
GLSharedGroup.cpp 233 android::AutoMutex _lock(m_lock);
239 android::AutoMutex _lock(m_lock);
245 android::AutoMutex _lock(m_lock);
251 android::AutoMutex _lock(m_lock);
262 android::AutoMutex _lock(m_lock);
268 android::AutoMutex _lock(m_lock);
281 android::AutoMutex _lock(m_lock);
291 android::AutoMutex _lock(m_lock);
302 android::AutoMutex _lock(m_lock);
311 android::AutoMutex _lock(m_lock)
    [all...]
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
GLSharedGroup.cpp 233 android::AutoMutex _lock(m_lock);
239 android::AutoMutex _lock(m_lock);
245 android::AutoMutex _lock(m_lock);
251 android::AutoMutex _lock(m_lock);
262 android::AutoMutex _lock(m_lock);
268 android::AutoMutex _lock(m_lock);
281 android::AutoMutex _lock(m_lock);
291 android::AutoMutex _lock(m_lock);
302 android::AutoMutex _lock(m_lock);
311 android::AutoMutex _lock(m_lock)
    [all...]
  /external/chromium_org/chrome/test/install_test/
chrome_proxy_server.py 116 self._lock = threading.RLock()
159 self._lock.acquire()
162 self._lock.release()
167 self._lock.acquire()
170 self._lock.release()
  /external/chromium_org/build/android/pylib/base/
test_dispatcher.py 37 self._lock = threading.Lock()
46 with self._lock:
74 self._lock = threading.Lock()
93 with self._lock:
109 with self._lock:
116 with self._lock:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py 198 #_lock is used to serialize access to shared data structures in this module.
206 _lock = threading.RLock() variable
208 _lock = None variable
216 if _lock:
217 _lock.acquire()
223 if _lock:
224 _lock.release()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py 198 #_lock is used to serialize access to shared data structures in this module.
206 _lock = threading.RLock() variable
208 _lock = None variable
216 if _lock:
217 _lock.acquire()
223 if _lock:
224 _lock.release()
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
libio.h 310 _IO_lock_t *_lock; member in struct:_IO_FILE
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
libio.h 310 _IO_lock_t *_lock; member in struct:_IO_FILE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
libio.h 310 _IO_lock_t *_lock; member in struct:_IO_FILE
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 

Completed in 726 milliseconds

1 23 4