Home
last modified time | relevance | path

Searched refs:start_cond (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Tools/ccbench/
Dccbench.py207 start_cond = threading.Condition()
214 with start_cond:
216 start_cond.wait()
231 with start_cond:
234 start_cond.notify(nthreads)
308 start_cond = threading.Condition()
323 with start_cond:
325 start_cond.wait()
346 with start_cond:
349 start_cond.notify(nthreads)
[all …]
/third_party/gstreamer/gstreamer/libs/gst/check/
Dgstcheck.h540 GST_CHECK_API GCond start_cond; /* used to notify main thread of thread startups */ variable
551 g_cond_init (&start_cond); \
573 g_cond_wait (&start_cond, &mutex); \
597 g_cond_clear (&start_cond); \
611 g_cond_signal (&start_cond); \
Dgstcheck.c52 GCond start_cond; /* used to notify main thread of thread startups */ variable
/third_party/gstreamer/gstplugins_bad/gst/netsim/
Dgstnetsim.c125 g_cond_signal (&netsim->start_cond); in gst_net_sim_loop()
137 g_cond_signal (&netsim->start_cond); in gst_net_sim_loop()
173 g_cond_wait (&netsim->start_cond, &netsim->loop_mutex); in gst_net_sim_src_activatemode()
198 g_cond_wait (&netsim->start_cond, &netsim->loop_mutex); in gst_net_sim_src_activatemode()
607 g_cond_init (&netsim->start_cond); in gst_net_sim_init()
628 g_cond_clear (&netsim->start_cond); in gst_net_sim_finalize()
Dgstnetsim.h71 GCond start_cond; member