HomeSort by relevance Sort by last modified time
    Searched refs:allocate_lock (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_thread.py 16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
110 mut = thread.allocate_lock()
138 self.checkin_mutex = thread.allocate_lock()
139 self.checkout_mutex = thread.allocate_lock()
197 locktype = thread.allocate_lock
test_threaded_import.py 12 critical_section = thread.allocate_lock()
13 done = thread.allocate_lock()
test_threadsignals.py 14 signalled_all=thread.allocate_lock()
  /external/python/cpython2/Lib/test/
test_threaded_import.py 12 critical_section = thread.allocate_lock()
13 done = thread.allocate_lock()
test_thread.py 16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
106 mut = thread.allocate_lock()
141 started = thread.allocate_lock()
157 self.checkin_mutex = thread.allocate_lock()
158 self.checkout_mutex = thread.allocate_lock()
216 locktype = thread.allocate_lock
test_dummy_thread.py 23 self.lock = _thread.allocate_lock()
102 self.assertIsInstance(_thread.allocate_lock(), _thread.LockType,
104 "is returned by _thread.allocate_lock()")
test_threadsignals.py 14 signalled_all=thread.allocate_lock()
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threaded_import.py 12 critical_section = thread.allocate_lock()
13 done = thread.allocate_lock()
test_thread.py 16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
110 mut = thread.allocate_lock()
145 started = thread.allocate_lock()
161 self.checkin_mutex = thread.allocate_lock()
162 self.checkout_mutex = thread.allocate_lock()
220 locktype = thread.allocate_lock
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threaded_import.py 12 critical_section = thread.allocate_lock()
13 done = thread.allocate_lock()
test_thread.py 16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
110 mut = thread.allocate_lock()
145 started = thread.allocate_lock()
161 self.checkin_mutex = thread.allocate_lock()
162 self.checkout_mutex = thread.allocate_lock()
220 locktype = thread.allocate_lock
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threaded_import.py 12 critical_section = thread.allocate_lock()
13 done = thread.allocate_lock()
test_thread.py 16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
110 mut = thread.allocate_lock()
145 started = thread.allocate_lock()
161 self.checkin_mutex = thread.allocate_lock()
162 self.checkout_mutex = thread.allocate_lock()
220 locktype = thread.allocate_lock
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threaded_import.py 12 critical_section = thread.allocate_lock()
13 done = thread.allocate_lock()
test_thread.py 16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
110 mut = thread.allocate_lock()
145 started = thread.allocate_lock()
161 self.checkin_mutex = thread.allocate_lock()
162 self.checkout_mutex = thread.allocate_lock()
220 locktype = thread.allocate_lock
  /external/python/cpython3/Lib/test/
test_thread.py 15 _print_mutex = thread.allocate_lock()
26 self.done_mutex = thread.allocate_lock()
28 self.running_mutex = thread.allocate_lock()
29 self.random_mutex = thread.allocate_lock()
104 mut = thread.allocate_lock()
139 started = thread.allocate_lock()
155 self.checkin_mutex = thread.allocate_lock()
156 self.checkout_mutex = thread.allocate_lock()
213 locktype = thread.allocate_lock
test_threadsignals.py 15 signalled_all=thread.allocate_lock()
87 lock = thread.allocate_lock()
162 self.acquire_retries_on_intr(thread.allocate_lock())
178 done = thread.allocate_lock()
180 lock = thread.allocate_lock()
  /external/libmojo/third_party/jinja2/
_compat.py 145 from thread import allocate_lock
148 from threading import Lock as allocate_lock
150 from dummy_thread import allocate_lock
  /external/python/cpython2/Demo/threads/
Generator.py 12 self.getlock = thread.allocate_lock()
13 self.putlock = thread.allocate_lock()
sync.py 277 self.mutex = thread.allocate_lock()
287 self.checkout = thread.allocate_lock()
291 self.idlock = thread.allocate_lock()
429 self.rwOK = thread.allocate_lock()
573 tid = thread.allocate_lock() # for changing TID
574 io = thread.allocate_lock() # for printing, and 'alive'
575 wh = thread.allocate_lock() # for calls to random
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Synch.py 44 self.__mutex = thread.allocate_lock()
45 self.__wait = thread.allocate_lock()
240 pwait = thread.allocate_lock()
242 cwait = thread.allocate_lock()
  /external/python/cpython2/Demo/metaclasses/
Synch.py 44 self.__mutex = thread.allocate_lock()
45 self.__wait = thread.allocate_lock()
240 pwait = thread.allocate_lock()
242 cwait = thread.allocate_lock()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
dummy_thread.py 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
71 def allocate_lock(): function
72 """Dummy implementation of thread.allocate_lock()."""
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
dummy_thread.py 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
71 def allocate_lock(): function
72 """Dummy implementation of thread.allocate_lock()."""
  /external/python/cpython2/Lib/
dummy_thread.py 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
71 def allocate_lock(): function
72 """Dummy implementation of thread.allocate_lock()."""

Completed in 947 milliseconds

1 2 3 4