HomeSort by relevance Sort by last modified time
    Searched full:threading (Results 126 - 150 of 2667) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
Setup.config 9 # Threading
  /external/chromium/base/threading/
thread_collision_warner.cc 5 #include "base/threading/thread_collision_warner.h"
8 #include "base/threading/platform_thread.h"
  /external/chromium_org/base/threading/
thread_collision_warner.cc 5 #include "base/threading/thread_collision_warner.h"
8 #include "base/threading/platform_thread.h"
thread_restrictions.cc 5 #include "base/threading/thread_restrictions.h"
11 #include "base/threading/thread_local.h"
worker_pool_win.cc 5 #include "base/threading/worker_pool.h"
12 #include "base/threading/thread_local.h"
  /external/chromium_org/chrome/browser/ui/
external_protocol_dialog_delegate.cc 10 #include "base/threading/thread.h"
11 #include "base/threading/thread_restrictions.h"
  /external/chromium_org/chromeos/process_proxy/
process_proxy_registry.h 14 #include "base/threading/non_thread_safe.h"
15 #include "base/threading/thread.h"
  /external/chromium_org/mojo/apps/js/
main.js 10 "mojo/apps/js/bindings/threading",
17 threading,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/thread/
threadedmessagequeue.py 29 import threading namespace
36 self._lock = threading.Lock()
  /external/chromium_org/tools/measure_page_load_time/ie_bho/
MeasurePageLoadTimeBHO.h 18 #error "Single-threaded COM objects are not properly supported on Windows CE platform, such as the Windows Mobile platforms that do not include full DCOM support. Define _CE_ALLOW_SINGLE_THREADED_OBJECTS_IN_MTA to force ATL to support creating single-thread COM objects and allow use of its single-threaded COM object implementations. The threading model in your rgs file was set to 'Free' as that is the only threading model supported in non DCOM Windows CE platforms."
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
package.html 19 threading model used. For example, it might use NIO selectors
31 and could be extended to support SSL or different threading models.</p>
  /external/llvm/test/Transforms/JumpThreading/
no-irreducible-loops.ll 1 ; RUN: opt < %s -jump-threading -loop-rotate -instcombine -indvars -loop-unroll -simplifycfg -S -verify-dom-info -verify-loop-info > %t
5 ; Jump threading should not prevent this loop from being unrolled.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_slab.c 124 enum util_slab_threading threading)
126 pool->threading = threading;
128 if (threading) {
140 enum util_slab_threading threading)
156 util_slab_set_thread_safety(pool, threading);
  /external/mesa3d/src/gallium/auxiliary/util/
u_slab.c 124 enum util_slab_threading threading)
126 pool->threading = threading;
128 if (threading) {
140 enum util_slab_threading threading)
156 util_slab_set_thread_safety(pool, threading);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_asynchat.py 8 import threading namespace
10 threading = None variable
15 if threading:
16 class echo_server(threading.Thread):
22 threading.Thread.__init__(self)
90 event = threading.Event()
99 @unittest.skipUnless(threading, 'Threading required for this test.')
110 event = threading.Event()
214 s.start_resend_event = threading.Event(
    [all...]
test_poplib.py 17 threading = test_support.import_module('threading') variable
107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread):
112 threading.Thread.__init__(self)
118 self.active_lock = threading.Lock()
123 self.__flag = threading.Event()
124 threading.Thread.start(self)
282 self.evt = threading.Event()
286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
test_imaplib.py 3 # threading, this test module should be split. Right now we skip
4 # them all if we don't have threading.
5 threading = support.import_module('threading') variable
123 t = threading.Thread(
test_smtplib.py 15 import threading namespace
17 threading = None variable
43 @unittest.skipUnless(threading, 'Threading required for this test.')
48 self.evt = threading.Event()
53 self.thread = threading.Thread(target=server, args=servargs)
146 @unittest.skipUnless(threading, 'Threading required for this test.')
156 self.serv_evt = threading.Event()
157 self.client_evt = threading.Event(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_asynchat.py 8 import threading namespace
10 threading = None variable
15 if threading:
16 class echo_server(threading.Thread):
22 threading.Thread.__init__(self)
90 event = threading.Event()
99 @unittest.skipUnless(threading, 'Threading required for this test.')
110 event = threading.Event()
214 s.start_resend_event = threading.Event(
    [all...]
test_poplib.py 17 threading = test_support.import_module('threading') variable
107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread):
112 threading.Thread.__init__(self)
118 self.active_lock = threading.Lock()
123 self.__flag = threading.Event()
124 threading.Thread.start(self)
282 self.evt = threading.Event()
286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
test_imaplib.py 3 # threading, this test module should be split. Right now we skip
4 # them all if we don't have threading.
5 threading = support.import_module('threading') variable
123 t = threading.Thread(
test_smtplib.py 15 import threading namespace
17 threading = None variable
43 @unittest.skipUnless(threading, 'Threading required for this test.')
48 self.evt = threading.Event()
53 self.thread = threading.Thread(target=server, args=servargs)
146 @unittest.skipUnless(threading, 'Threading required for this test.')
156 self.serv_evt = threading.Event()
157 self.client_evt = threading.Event(
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
msgutil.py 42 import threading namespace
102 class MessageReceiver(threading.Thread):
125 threading.Thread.__init__(self)
174 class MessageSender(threading.Thread):
191 threading.Thread.__init__(self)
208 condition = threading.Condition()
216 self._queue.put((message, threading.Condition()))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
msgutil.py 42 import threading namespace
102 class MessageReceiver(threading.Thread):
125 threading.Thread.__init__(self)
174 class MessageSender(threading.Thread):
191 threading.Thread.__init__(self)
208 condition = threading.Condition()
216 self._queue.put((message, threading.Condition()))
  /external/chromium_org/net/url_request/
url_request_throttler_manager.h 14 #include "base/threading/non_thread_safe.h"
15 #include "base/threading/platform_thread.h"
66 // Turns threading model verification on or off. Any code that correctly
68 // verification of correct adherence to the network stack threading model.
143 // Certain tests do not obey the net component's threading policy, so we

Completed in 63 milliseconds

1 2 3 4 56 7 8 91011>>