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

1 2 3 4 5 67 8 91011>>

  /external/autotest/server/site_tests/network_EthCapsServer/
network_EthCapsServer.py 5 import logging, os, re, socket, subprocess, tempfile, threading, time
11 class WolWake(threading.Thread):
22 threading.Thread.__init__(self)
  /external/python/cpython3/Lib/concurrent/futures/
thread.py 11 import threading
103 self._shutdown_lock = threading.Lock()
130 t = threading.Thread(name=thread_name, target=_worker,
  /external/python/cpython3/Lib/
sched.py 4 No multi-threading is implied; you are supposed to hack that
30 import threading
32 import dummy_threading as threading
64 self._lock = threading.RLock()
  /external/python/cpython3/Lib/test/
test_capi.py 22 import threading
24 threading = None variable
53 @unittest.skipUnless(threading, 'Threading required for this test.')
245 @unittest.skipUnless(threading, 'Threading required for this test.')
293 context.lock = threading.Lock()
294 context.event = threading.Event()
296 threads = [threading.Thread(target=self.pendingcalls_thread,
556 @unittest.skipUnless(threading, 'Threading required for this test.'
    [all...]
test_socketserver.py 18 import threading
20 threading = None variable
71 @unittest.skipUnless(threading, 'Threading required for this test.')
129 t = threading.Thread(
258 t = threading.Thread(
305 @unittest.skipUnless(threading, 'Threading required for this test.')
310 @unittest.skipUnless(threading, 'Threading required for this test.'
    [all...]
  /external/python/futures/concurrent/futures/
thread.py 10 import threading
117 self._shutdown_lock = threading.Lock()
145 t = threading.Thread(name=thread_name, target=_worker,
  /external/swiftshader/third_party/subzero/pydir/
wasm-run-torture-tests.py 21 import threading
118 results_lock = threading.Lock()
204 t = threading.Thread(target=worker)
  /external/tensorflow/tensorflow/python/summary/writer/
event_file_writer.py 22 import threading
133 class _EventLoggerThread(threading.Thread):
148 threading.Thread.__init__(self)
  /external/toolchain-utils/automation/server/
job_group_manager.py 6 import threading
24 self._lock = threading.Lock()
25 self._job_group_finished = threading.Condition(self._lock)
  /external/v8/tools/testrunner/local/
perfdata.py 31 import threading
55 self.lock = threading.Lock()
99 self.lock = threading.Lock()
  /external/v8/tools/testrunner/network/
endpoint.py 32 import threading
49 self.sender_lock = threading.Lock()
50 self.senderthread = threading.Thread(target=self._SenderThread)
  /external/vulkan-validation-layers/layers/
threading.cpp 32 #include "threading.h"
40 namespace threading { namespace
226 // Threading layer does not have any device extensions
400 } // namespace threading
408 return threading::CreateDebugReportCallbackEXT(instance, pCreateInfo, pAllocator, pMsgCallback);
413 threading::DestroyDebugReportCallbackEXT(instance, msgCallback, pAllocator);
419 threading::DebugReportMessageEXT(instance, flags, objType, object, location, msgCode, pLayerPrefix, pMsg);
426 return threading::EnumerateInstanceExtensionProperties(pLayerName, pCount, pProperties);
431 return threading::EnumerateInstanceLayerProperties(pCount, pProperties);
438 return threading::EnumerateDeviceLayerProperties(VK_NULL_HANDLE, pCount, pProperties)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_disconnect.py 10 import threading
30 class P2P_Disconnect (threading.Thread):
56 threading.Thread.__init__(self)
p2p_find.py 11 import threading
34 class P2P_Find (threading.Thread):
60 threading.Thread.__init__(self)
p2p_flush.py 11 import threading
30 class P2P_Flush (threading.Thread):
56 threading.Thread.__init__(self)
p2p_group_add.py 10 import threading
40 class P2P_Group_Add (threading.Thread):
74 threading.Thread.__init__(self)
p2p_invite.py 10 import threading
39 class P2P_Invite (threading.Thread):
71 threading.Thread.__init__(self)
p2p_listen.py 11 import threading
31 class P2P_Listen(threading.Thread):
57 threading.Thread.__init__(self)
p2p_stop_find.py 9 import threading
32 class P2P_Stop_Find (threading.Thread):
58 threading.Thread.__init__(self)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()
  /tools/test/connectivity/acts/tests/google/wifi/aware/stress/
InfraAssociationStressTest.py 18 import threading
93 init_thread = threading.Thread(
95 resp_thread = threading.Thread(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_socketserver.py 18 import threading
20 threading = None variable
64 @unittest.skipUnless(threading, 'Threading required for this test.')
126 @unittest.skipUnless(threading, 'Threading required for this test.')
138 t = threading.Thread(
262 t = threading.Thread(

Completed in 1041 milliseconds

1 2 3 4 5 67 8 91011>>