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

<<31323334353637

  /external/python/cpython3/Lib/test/test_asyncio/
test_events.py 19 import threading
323 lock = threading.Lock()
335 t = threading.Thread(target=run_in_thread)
359 return (arg, threading.get_ident())
363 self.assertNotEqual(thread_id, threading.get_ident())
798 thread = threading.Thread(target=client, daemon=True)
    [all...]
test_streams.py 8 import threading
793 thread = threading.Thread(target=server)
  /external/python/cpython3/Lib/test/
test_os.py 32 import threading
34 threading = None variable
75 # and unmaintained) linuxthreads threading library. There's an issue
    [all...]
test_socket.py 38 import threading
41 threading = None variable
115 if threading:
118 self._cleanup_lock = threading.RLock()
248 self.server_ready = threading.Event()
249 self.client_ready = threading.Event()
250 self.done = threading.Event()
    [all...]
test_tracemalloc.py 11 import threading
13 threading = None variable
    [all...]
  /external/devlib/devlib/
target.py 9 import threading
147 tid = id(threading.current_thread())
217 tid = id(threading.current_thread())
    [all...]
  /external/python/cpython3/Lib/asyncio/
base_events.py 25 import threading
413 self._thread_id = threading.get_ident()
611 thread_id = threading.get_ident()
    [all...]
  /external/tensorflow/tensorflow/contrib/tpu/python/tpu/
tpu_estimator.py 24 import threading
268 self._thread = threading.Thread(name=name, target=target, args=args)
400 self._session_cancel_timer = threading.Thread(target=_cancel_session)
    [all...]
  /external/python/cpython3/Lib/test/support/
__init__.py 35 import _thread, threading
38 threading = None variable
    [all...]
  /system/bt/btif/avrcp/
avrcp_service.cc 22 #include <base/threading/thread.h>
  /system/bt/btif/src/
btif_gatt_client.cc 31 #include <base/threading/thread.h>
  /system/bt/hci/src/
hci_layer.cc 27 #include <base/threading/thread.h>
  /system/extras/boottime_tools/bootanalyze/
bugreport_anayze.py 30 import threading
  /system/extras/perfprofd/scripts/
perf_proto_stack.py 35 from threading import Timer
  /system/security/keystore/
keystore_cli_v2.cpp 26 #include <base/threading/platform_thread.h>
  /external/sonivox/jet_tools/JetCreator/
eas.py 4 import threading
582 self.lock = threading.RLock()
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
curses_ui.py 26 import threading
274 _single_instance_lock = threading.Lock()
    [all...]
  /external/tensorflow/tensorflow/python/framework/
test_util.py 28 import threading
929 self._thread = threading.Thread(target=self._protected_run)
    [all...]
  /external/tensorflow/tensorflow/python/keras/_impl/keras/preprocessing/
image.py 29 import threading
860 self.lock = threading.Lock()
    [all...]
  /external/vulkan-validation-layers/
CONTRIBUTING.md 126 layers (threading, object_tracker, unique_objects) are more special-purpose and are mostly code-generated from the specification.
  /kernel/tests/net/test/
ping6_test.py 26 import threading
48 class PingReplyThread(threading.Thread):
sock_diag_test.py 24 import threading
448 class SocketExceptionThread(threading.Thread):
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/bt/
bt_test_utils.py 23 import threading
226 thread = threading.Thread(target=factory_reset_bluetooth, args=([[a]]))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ceval.c 301 PyObject *threading, *result; local
315 /* Update the threading module with the new state.
318 threading = PyMapping_GetItemString(tstate->interp->modules,
319 "threading");
320 if (threading == NULL) {
321 /* threading not imported */
325 result = PyObject_CallMethod(threading, "_after_fork", NULL);
327 PyErr_WriteUnraisable(threading);
330 Py_DECREF(threading);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ceval.c 299 PyObject *threading, *result; local
313 /* Update the threading module with the new state.
316 threading = PyMapping_GetItemString(tstate->interp->modules,
317 "threading");
318 if (threading == NULL) {
319 /* threading not imported */
323 result = PyObject_CallMethod(threading, "_after_fork", NULL);
325 PyErr_WriteUnraisable(threading);
328 Py_DECREF(threading);
    [all...]

Completed in 1806 milliseconds

<<31323334353637