Home
last modified time | relevance | path

Searched refs:threading (Results 1 – 25 of 139) sorted by relevance

123456

/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
Dthreadedprint.py63 import threading
92 def write(self, v, currentThread=threading.currentThread):
103 name = threading.currentThread().getName()
111 name = threading.currentThread().getName()
134 currentThread=threading.currentThread):
140 currentThread=threading.currentThread):
192 def read(self, size=None, currentThread=threading.currentThread):
216 currentThread=threading.currentThread):
222 currentThread=threading.currentThread):
Dthreadinglocal.py9 import threading
16 local = threading.local
/external/mesa3d/src/gallium/auxiliary/util/
Du_slab.c124 enum util_slab_threading threading) in util_slab_set_thread_safety() argument
126 pool->threading = threading; in util_slab_set_thread_safety()
128 if (threading) { in util_slab_set_thread_safety()
140 enum util_slab_threading threading) in util_slab_create() argument
156 util_slab_set_thread_safety(pool, threading); in util_slab_create()
Du_slab.h69 enum util_slab_threading threading; member
77 enum util_slab_threading threading);
82 enum util_slab_threading threading);
/external/lldb/test/python_api/event/
DTestEvents.py98 import threading
99 class MyListeningThread(threading.Thread):
170 import threading
171 class MyListeningThread(threading.Thread):
242 import threading
243 class MyListeningThread(threading.Thread):
/external/v8/tools/testrunner/server/
Dmain.py33 import threading
61 self.peer_list_lock = threading.Lock()
82 self.perf_data_lock = threading.Lock()
85 self.local_handler_thread = threading.Thread(
90 self.work_handler_thread = threading.Thread(
95 self.status_handler_thread = threading.Thread(
100 self.presence_daemon_thread = threading.Thread(
/external/llvm/utils/lit/lit/
Drun.py2 import threading
27 self.lock = threading.Lock()
96 self.lock = threading.Lock()
226 task_impl = threading.Thread
245 timeout_timer = threading.Timer(max_time, timeout_handler)
/external/deqp/android/scripts/
Dcommon.py32 import threading
34 import dummy_threading as threading namespace
123 …stdoutJob = threading.Thread(target=readApplyPrefixAndPrint, args=(process.stdout, linePrefix, sys…
124 …stderrJob = threading.Thread(target=readApplyPrefixAndPrint, args=(process.stdout, linePrefix, sys…
149 job = threading.Thread(target=applyAndCaptureError, args=(f, args, errorCode))
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
Dp2p_flush.py11 import threading
30 class P2P_Flush (threading.Thread):
56 threading.Thread.__init__(self)
Dp2p_stop_find.py9 import threading
32 class P2P_Stop_Find (threading.Thread):
58 threading.Thread.__init__(self)
Dp2p_disconnect.py10 import threading
30 class P2P_Disconnect (threading.Thread):
56 threading.Thread.__init__(self)
Dp2p_listen.py11 import threading
31 class P2P_Listen(threading.Thread):
57 threading.Thread.__init__(self)
Dp2p_find.py11 import threading
34 class P2P_Find (threading.Thread):
60 threading.Thread.__init__(self)
Dp2p_invite.py10 import threading
39 class P2P_Invite (threading.Thread):
71 threading.Thread.__init__(self)
Dp2p_group_add.py10 import threading
40 class P2P_Group_Add (threading.Thread):
74 threading.Thread.__init__(self)
/external/mesa3d/scons/
Dfixes.py6 import threading
9 spawn_lock = threading.Lock()
/external/v8/tools/testrunner/network/
Dendpoint.py32 import threading
49 self.sender_lock = threading.Lock()
50 self.senderthread = threading.Thread(target=self._SenderThread)
Dnetwork_execution.py32 import threading
67 self.tests_lock = threading.Lock()
82 self.initialization_lock = threading.Lock()
85 self.local_receiver_thread = threading.Thread(
146 thread = threading.Thread(target=self._TalkToPeer, args=[p])
/external/v8/tools/testrunner/local/
Dperfdata.py31 import threading
55 self.lock = threading.Lock()
99 self.lock = threading.Lock()
/external/eigen/doc/
DTopicMultithreading.dox3 /** \page TopicMultiThreading Eigen and multi-threading
22 You can disable Eigen's multi threading at compile time by defining the EIGEN_DONT_PARALLELIZE prep…
24 Currently, the following algorithms can make use of multi-threading:
/external/llvm/test/Transforms/JumpThreading/
Ddegenerate-phi.ll1 ; RUN: opt -jump-threading -disable-output < %s
4 ; This is actually a test for value tracking. Jump threading produces
/external/lldb/test/pexpect-2.4/examples/
Dbd_serv.py18 import time, sys, os, getopt, getpass, traceback, threading, socket
25 class roller (threading.Thread):
34 threading.Thread.__init__(self)
39 self.finished = threading.Event()
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/
Devalcontext.py5 import threading
10 exec_lock = threading.Lock()
/external/jmonkeyengine/engine/src/bullet-native/
DjmePhysicsSpace.cpp105 … minY, jfloat minZ, jfloat maxX, jfloat maxY, jfloat maxZ, jint broadphaseId, jboolean threading) { in createPhysicsSpace() argument
143 if (threading) { in createPhysicsSpace()
152 if (threading) { in createPhysicsSpace()
165 if (threading) { in createPhysicsSpace()
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
Dprofile.py13 import threading
43 self.lock = threading.Lock()
145 lock = threading.Lock()

123456