OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:threading
(Results
26 - 50
of
197
) sorted by null
1
2
3
4
5
6
7
8
/external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_listen.py
11
import
threading
namespace
31
class P2P_Listen(
threading
.Thread):
57
threading
.Thread.__init__(self)
p2p_find.py
11
import
threading
namespace
34
class P2P_Find (
threading
.Thread):
60
threading
.Thread.__init__(self)
p2p_group_add.py
10
import
threading
namespace
40
class P2P_Group_Add (
threading
.Thread):
74
threading
.Thread.__init__(self)
p2p_invite.py
10
import
threading
namespace
39
class P2P_Invite (
threading
.Thread):
71
threading
.Thread.__init__(self)
p2p_stop_find.py
9
import
threading
namespace
32
class P2P_Stop_Find (
threading
.Thread):
58
threading
.Thread.__init__(self)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py
3
(Note that this module provides a Python version of the
threading
.local
6
`
threading
`.)
37
>>> import
threading
38
>>> thread =
threading
.Thread(target=f)
97
>>> thread =
threading
.Thread(target=f)
124
>>> thread =
threading
.Thread(target=f)
138
# We need to use objects from the
threading
module, but the
threading
141
# with circular imports. For that reason, we don't import `
threading
`
224
import
threading
namespace
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fork1.py
12
threading
= import_module('
threading
')
variable
32
import_started =
threading
.Event()
43
t =
threading
.Thread(target=importer)
test_threadedtempfile.py
22
threading
= import_module('
threading
')
variable
27
startEvent =
threading
.Event()
29
class TempFileGreedy(
threading
.Thread):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py
3
(Note that this module provides a Python version of the
threading
.local
6
`
threading
`.)
37
>>> import
threading
38
>>> thread =
threading
.Thread(target=f)
97
>>> thread =
threading
.Thread(target=f)
124
>>> thread =
threading
.Thread(target=f)
138
# We need to use objects from the
threading
module, but the
threading
141
# with circular imports. For that reason, we don't import `
threading
`
224
import
threading
namespace
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fork1.py
12
threading
= import_module('
threading
')
variable
32
import_started =
threading
.Event()
43
t =
threading
.Thread(target=importer)
test_threadedtempfile.py
22
threading
= import_module('
threading
')
variable
27
startEvent =
threading
.Event()
29
class TempFileGreedy(
threading
.Thread):
/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/build/android/pylib/utils/
reraiser_thread.py
9
import
threading
namespace
25
thread: a
threading
.Thread instance.
38
class ReraiserThread(
threading
.Thread):
/external/chromium_org/chrome/test/functional/media/
worker_thread.py
11
import
threading
namespace
16
__lock =
threading
.RLock()
56
class WorkerThread(
threading
.Thread):
70
threading
.Thread.__init__(self)
/external/chromium_org/components/breakpad/tools/
generate_breakpad_symbols.py
20
import
threading
namespace
144
print_lock =
threading
.Lock()
171
t =
threading
.Thread(target=_Worker)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
collector.py
3
import sys,
threading
namespace
212
# execution begins. Ironically, the only support the
threading
module has
254
# Install our installation tracer in
threading
, to jump start other
256
threading
.settrace(self._installation_trace)
282
threading
.settrace(None)
288
threading
.settrace(self._installation_trace)
/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/third_party/mesa/src/src/gallium/auxiliary/util/
u_slab.h
69
enum util_slab_threading
threading
;
member in struct:util_slab_mempool
77
enum util_slab_threading
threading
);
82
enum util_slab_threading
threading
);
/external/chromium_org/v8/tools/testrunner/local/
execution.py
31
import
threading
namespace
87
self.lock =
threading
.Lock()
/external/chromium_org/v8/tools/testrunner/server/
presence_handler.py
31
import
threading
namespace
94
self.shutdown_lock =
threading
.Lock()
work_handler.py
33
import
threading
namespace
149
self.job_lock =
threading
.Lock()
/external/mesa3d/src/gallium/auxiliary/util/
u_slab.h
69
enum util_slab_threading
threading
;
member in struct:util_slab_mempool
77
enum util_slab_threading
threading
);
82
enum util_slab_threading
threading
);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mock.py
36
import
threading
namespace
test_mock.py
37
import
threading
namespace
84
class LineReader(
threading
.Thread):
91
threading
.Thread.__init__(self)
/external/chromium_org/build/android/pylib/base/
test_dispatcher.py
19
import
threading
namespace
36
self._lock =
threading
.Lock()
73
self._lock =
threading
.Lock()
77
self._item_avaliable_or_all_done =
threading
.Event()
Completed in 2898 milliseconds
1
2
3
4
5
6
7
8