HomeSort by relevance Sort by last modified time
    Searched refs:threading (Results 226 - 250 of 913) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/bt/main/
bte_main.cc 30 #include <base/threading/thread.h>
  /system/bt/service/ipc/dbus/
ipc_handler_dbus.cc 20 #include <base/threading/thread_task_runner_handle.h>
  /system/tpm/attestation/server/
database_impl.h 26 #include <base/threading/thread_checker.h>
  /tools/test/connectivity/acts/framework/acts/controllers/
native.py 21 import threading
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/ccbench/
ccbench.py 16 import threading
215 ready_cond = threading.Condition()
216 start_cond = threading.Condition()
231 threads.append(threading.Thread(target=run))
314 start_cond = threading.Condition()
323 ready_cond = threading.Condition()
335 threads.append(threading.Thread(target=run))
445 start_cond = threading.Condition()
454 ready_cond = threading.Condition()
466 threads.append(threading.Thread(target=run))
    [all...]
  /external/python/cpython2/Tools/ccbench/
ccbench.py 16 import threading
215 ready_cond = threading.Condition()
216 start_cond = threading.Condition()
231 threads.append(threading.Thread(target=run))
314 start_cond = threading.Condition()
323 ready_cond = threading.Condition()
335 threads.append(threading.Thread(target=run))
445 start_cond = threading.Condition()
454 ready_cond = threading.Condition()
466 threads.append(threading.Thread(target=run)
    [all...]
  /external/python/cpython3/Tools/ccbench/
ccbench.py 14 import threading
213 ready_cond = threading.Condition()
214 start_cond = threading.Condition()
229 threads.append(threading.Thread(target=run))
315 start_cond = threading.Condition()
324 ready_cond = threading.Condition()
336 threads.append(threading.Thread(target=run))
447 start_cond = threading.Condition()
456 ready_cond = threading.Condition()
468 threads.append(threading.Thread(target=run)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
threading.cpp 34 #include "threading.h"
42 namespace threading { namespace
214 // Threading layer does not have any device extensions
395 } // namespace threading
402 return threading::CreateDebugReportCallbackEXT(instance, pCreateInfo, pAllocator, pMsgCallback);
408 threading::DestroyDebugReportCallbackEXT(instance, msgCallback, pAllocator);
414 threading::DebugReportMessageEXT(instance, flags, objType, object, location, msgCode, pLayerPrefix, pMsg);
421 return threading::EnumerateInstanceExtensionProperties(pLayerName, pCount, pProperties);
426 return threading::EnumerateInstanceLayerProperties(pCount, pProperties);
433 return threading::EnumerateDeviceLayerProperties(VK_NULL_HANDLE, pCount, pProperties)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_hashlib.py 14 import threading
16 threading = None variable
320 @unittest.skipUnless(threading, 'Threading required for this test.')
347 event = threading.Event()
349 threading.Thread(target=hash_in_chunks,
  /external/autotest/site_utils/lxc/container_pool/
pool.py 8 import threading
172 class _Monitor(threading.Thread):
284 active_workers = sum([1 for t in threading.enumerate()
354 class _Worker(threading.Thread):
383 self._completion_lock = threading.RLock()
  /external/llvm/utils/lit/lit/
run.py 2 import threading
27 self.lock = threading.Lock()
98 self.lock = threading.Lock()
228 task_impl = threading.Thread
255 timeout_timer = threading.Timer(max_time, timeout_handler)
  /external/python/cpython2/Lib/multiprocessing/
synchronize.py 39 import threading
153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /external/python/cpython3/Lib/multiprocessing/
managers.py 18 import threading
145 self.mutex = threading.Lock()
151 self.stop_event = threading.Event()
154 accepter = threading.Thread(target=self.accepter)
175 t = threading.Thread(target=self.handle_request, args=(c,))
218 threading.current_thread().name)
275 threading.current_thread().name)
288 threading.current_thread().name)
388 threading.current_thread().name = name
738 if threading.current_thread().name != 'MainThread'
    [all...]
  /external/v8/tools/testrunner/network/
network_execution.py 32 import threading
65 self.tests_lock = threading.Lock()
80 self.initialization_lock = threading.Lock()
83 self.local_receiver_thread = threading.Thread(
144 thread = threading.Thread(target=self._TalkToPeer, args=[p])
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
synchronize.py 39 import threading
153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_socketserver.py 20 import threading
22 threading = None variable
69 @unittest.skipUnless(threading, 'Threading required for this test.')
142 t = threading.Thread(
298 t = threading.Thread(
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
synchronize.py 39 import threading
153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_socketserver.py 20 import threading
22 threading = None variable
69 @unittest.skipUnless(threading, 'Threading required for this test.')
142 t = threading.Thread(
298 t = threading.Thread(
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 39 import threading
153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socketserver.py 20 import threading
22 threading = None variable
69 @unittest.skipUnless(threading, 'Threading required for this test.')
142 t = threading.Thread(
298 t = threading.Thread(
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
synchronize.py 39 import threading
153 if threading.current_thread().name != 'MainThread':
154 name += '|' + threading.current_thread().name
178 if threading.current_thread().name != 'MainThread':
179 name += '|' + threading.current_thread().name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socketserver.py 20 import threading
22 threading = None variable
69 @unittest.skipUnless(threading, 'Threading required for this test.')
142 t = threading.Thread(
298 t = threading.Thread(
  /external/python/cpython2/Lib/idlelib/
rpc.py 37 import threading
109 print>>erf, 'Thread: %s' % threading.currentThread().getName()
129 self.sockthread = threading.currentThread()
152 s = self.location + " " + str(threading.currentThread().getName())
221 if threading.currentThread() != self.sockthread:
222 cvar = threading.Condition()
231 if threading.currentThread() != self.sockthread:
232 cvar = threading.Condition()
297 if threading.currentThread() is self.sockthread:
  /external/python/cpython3/Lib/idlelib/
rpc.py 41 import threading
110 print('Thread: %s' % threading.current_thread().name, file=erf)
130 self.sockthread = threading.current_thread()
153 s = self.location + " " + str(threading.current_thread().name)
226 if threading.current_thread() != self.sockthread:
227 cvar = threading.Condition()
236 if threading.current_thread() != self.sockthread:
237 cvar = threading.Condition()
305 if threading.current_thread() is self.sockthread:
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
rpc.py 37 import threading
109 print>>erf, 'Thread: %s' % threading.currentThread().getName()
129 self.sockthread = threading.currentThread()
152 s = self.location + " " + str(threading.currentThread().getName())
221 if threading.currentThread() != self.sockthread:
222 cvar = threading.Condition()
231 if threading.currentThread() != self.sockthread:
232 cvar = threading.Condition()
297 if threading.currentThread() is self.sockthread:

Completed in 1292 milliseconds

1 2 3 4 5 6 7 8 91011>>