Home
last modified time | relevance | path

Searched refs:is_running (Results 1 - 17 of 17) sorted by relevance

/third_party/vulkan-loader/tests/live_verification/
H A Dmacos_static_loader_build.cpp35 static std::atomic_bool is_running; variable
38 while (!is_running) { in run_vk_code()
41 while (is_running) { in run_vk_code()
76 is_running = false; in main()
81 is_running = true; in main()
83 is_running = false; in main()
/third_party/python/Lib/asyncio/
H A Dcoroutines.py67 def is_running(coro): function
86 if is_running(coro):
H A Dbase_events.py421 f'<{self.__class__.__name__} running={self.is_running()} '
587 if self.is_running():
671 if self.is_running():
693 if not self.is_running():
696 def is_running(self): member in BaseEventLoop
1946 if self.is_running():
H A Devents.py227 def is_running(self): member in AbstractEventLoop
H A Dunix_events.py933 return self._loop is not None and self._loop.is_running()
998 return self._loop is not None and self._loop.is_running()
H A Dproactor_events.py685 if self.is_running():
H A Dselector_events.py87 if self.is_running():
/third_party/python/Lib/test/
H A Dtest_interpreters.py247 self.assertTrue(main.is_running())
252 self.assertFalse(interp.is_running())
255 self.assertTrue(interp.is_running())
256 self.assertFalse(interp.is_running())
262 if _interpreters.is_running({interp.id}):
273 interp.is_running()
278 interp.is_running()
283 interp.is_running()
384 self.assertTrue(interp.is_running())
H A Dtest__xxsubinterpreters.py50 while not interpreters.is_running(interp):
490 self.assertTrue(interpreters.is_running(main))
495 self.assertFalse(interpreters.is_running(interp))
498 self.assertTrue(interpreters.is_running(interp))
499 self.assertFalse(interpreters.is_running(interp))
505 if _interpreters.is_running({interp}):
516 interpreters.is_running(interp)
520 interpreters.is_running(1_000_000)
524 interpreters.is_running(-1)
768 self.assertTrue(interpreters.is_running(inter
[all...]
/third_party/node/deps/v8/src/logging/
H A Dcounters.cc94 bool is_running = (*active_timer.Pointer())[this]; in ToggleRunningState() local
95 DCHECK_NE(is_running, expect_to_run); in ToggleRunningState()
96 (*active_timer.Pointer())[this] = !is_running; in ToggleRunningState()
/third_party/python/Lib/test/support/
H A Dinterpreters.py80 def is_running(self): member in Interpreter
82 return _interpreters.is_running(self._id)
/third_party/python/Modules/
H A D_xxsubinterpretersmodule.c1851 int is_running = _is_running(interp); in _ensure_not_running() local
1852 if (is_running < 0) { in _ensure_not_running()
1855 if (is_running) { in _ensure_not_running()
2232 "O:is_running", kwlist, &id)) { in interp_is_running()
2240 int is_running = _is_running(interp); in interp_is_running() local
2241 if (is_running < 0) { in interp_is_running()
2244 if (is_running) { in interp_is_running()
2251 "is_running(id) -> bool\n\
2556 {"is_running", _PyCFunction_CAST(interp_is_running),
/third_party/pulseaudio/src/modules/bluetooth/
H A Dbluez5-util.h244 void pa_bluetooth_discovery_set_ofono_running(pa_bluetooth_discovery *y, bool is_running);
H A Dbluez5-util.c2110 void pa_bluetooth_discovery_set_ofono_running(pa_bluetooth_discovery *y, bool is_running) { in pa_bluetooth_discovery_set_ofono_running() argument
2113 pa_log_debug("oFono is running: %s", pa_yes_no(is_running)); in pa_bluetooth_discovery_set_ofono_running()
2117 pa_bluetooth_native_backend_enable_shared_profiles(y->native_backend, !is_running); in pa_bluetooth_discovery_set_ofono_running()
2121 if (is_running) { in pa_bluetooth_discovery_set_ofono_running()
/third_party/node/deps/v8/src/d8/
H A Dd8.h225 bool is_running() const;
H A Dd8.cc4122 bool Worker::is_running() const { return state_.load() == State::kRunning; } in is_running() function in v8::Worker
4167 if (!is_running()) return; in PostMessage()
4194 if (!is_running()) break; in GetMessage()
4225 if (!is_running()) return; in ProcessMessage()
4254 while (is_running() && v8::platform::PumpMessageLoop( in ProcessMessages()
4257 if (is_running()) { in ProcessMessages()
4339 CHECK(!is_running()); in ExecuteInThread()
/third_party/python/Lib/test/test_asyncio/
H A Dtest_events.py282 self.assertTrue(self.loop.is_running())
2487 NotImplementedError, loop.is_running)

Completed in 33 milliseconds