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

  /external/python/cpython2/Lib/multiprocessing/
synchronize.py 201 self._wait_semaphore = Semaphore(0)
207 self._woken_count, self._wait_semaphore)
211 self._woken_count, self._wait_semaphore) = state
246 self._wait_semaphore.acquire(True, timeout)
257 assert not self._wait_semaphore.acquire(False)
266 self._wait_semaphore.release() # wake up one sleeper
269 # rezero _wait_semaphore in case a timeout just happened
270 self._wait_semaphore.acquire(False)
274 assert not self._wait_semaphore.acquire(False)
284 self._wait_semaphore.release() # wake up one sleepe
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
synchronize.py 201 self._wait_semaphore = Semaphore(0)
207 self._woken_count, self._wait_semaphore)
211 self._woken_count, self._wait_semaphore) = state
246 self._wait_semaphore.acquire(True, timeout)
257 assert not self._wait_semaphore.acquire(False)
266 self._wait_semaphore.release() # wake up one sleeper
269 # rezero _wait_semaphore in case a timeout just happened
270 self._wait_semaphore.acquire(False)
274 assert not self._wait_semaphore.acquire(False)
284 self._wait_semaphore.release() # wake up one sleepe
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
synchronize.py 201 self._wait_semaphore = Semaphore(0)
207 self._woken_count, self._wait_semaphore)
211 self._woken_count, self._wait_semaphore) = state
246 self._wait_semaphore.acquire(True, timeout)
257 assert not self._wait_semaphore.acquire(False)
266 self._wait_semaphore.release() # wake up one sleeper
269 # rezero _wait_semaphore in case a timeout just happened
270 self._wait_semaphore.acquire(False)
274 assert not self._wait_semaphore.acquire(False)
284 self._wait_semaphore.release() # wake up one sleepe
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 201 self._wait_semaphore = Semaphore(0)
207 self._woken_count, self._wait_semaphore)
211 self._woken_count, self._wait_semaphore) = state
246 self._wait_semaphore.acquire(True, timeout)
257 assert not self._wait_semaphore.acquire(False)
266 self._wait_semaphore.release() # wake up one sleeper
269 # rezero _wait_semaphore in case a timeout just happened
270 self._wait_semaphore.acquire(False)
274 assert not self._wait_semaphore.acquire(False)
284 self._wait_semaphore.release() # wake up one sleepe
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 201 self._wait_semaphore = Semaphore(0)
207 self._woken_count, self._wait_semaphore)
211 self._woken_count, self._wait_semaphore) = state
246 self._wait_semaphore.acquire(True, timeout)
257 assert not self._wait_semaphore.acquire(False)
266 self._wait_semaphore.release() # wake up one sleeper
269 # rezero _wait_semaphore in case a timeout just happened
270 self._wait_semaphore.acquire(False)
274 assert not self._wait_semaphore.acquire(False)
284 self._wait_semaphore.release() # wake up one sleepe
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 217 self._wait_semaphore = ctx.Semaphore(0)
223 self._woken_count, self._wait_semaphore)
227 self._woken_count, self._wait_semaphore) = state
262 return self._wait_semaphore.acquire(True, timeout)
273 assert not self._wait_semaphore.acquire(False)
282 self._wait_semaphore.release() # wake up one sleeper
285 # rezero _wait_semaphore in case a timeout just happened
286 self._wait_semaphore.acquire(False)
290 assert not self._wait_semaphore.acquire(False)
300 self._wait_semaphore.release() # wake up one sleepe
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multiprocessing.py 656 self.assertEqual(cond._wait_semaphore.get_value(), 0)
    [all...]
  /external/python/cpython2/Lib/test/
test_multiprocessing.py 742 self.assertEqual(cond._wait_semaphore.get_value(), 0)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 724 self.assertEqual(cond._wait_semaphore.get_value(), 0)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 724 self.assertEqual(cond._wait_semaphore.get_value(), 0)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 724 self.assertEqual(cond._wait_semaphore.get_value(), 0)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 724 self.assertEqual(cond._wait_semaphore.get_value(), 0)
    [all...]
  /external/python/cpython3/Lib/test/
_test_multiprocessing.py 853 self.assertEqual(cond._wait_semaphore.get_value(), 0)
    [all...]

Completed in 420 milliseconds