/third_party/vulkan-loader/tests/live_verification/ |
H A D | macos_static_loader_build.cpp | 35 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 D | coroutines.py | 67 def is_running(coro): function 86 if is_running(coro):
|
H A D | base_events.py | 421 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 D | events.py | 227 def is_running(self): member in AbstractEventLoop
|
H A D | unix_events.py | 933 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 D | proactor_events.py | 685 if self.is_running():
|
H A D | selector_events.py | 87 if self.is_running():
|
/third_party/python/Lib/test/ |
H A D | test_interpreters.py | 247 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 D | test__xxsubinterpreters.py | 50 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 D | counters.cc | 94 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 D | interpreters.py | 80 def is_running(self): member in Interpreter 82 return _interpreters.is_running(self._id)
|
/third_party/python/Modules/ |
H A D | _xxsubinterpretersmodule.c | 1851 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 D | bluez5-util.h | 244 void pa_bluetooth_discovery_set_ofono_running(pa_bluetooth_discovery *y, bool is_running);
|
H A D | bluez5-util.c | 2110 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 D | d8.h | 225 bool is_running() const;
|
H A D | d8.cc | 4122 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 D | test_events.py | 282 self.assertTrue(self.loop.is_running()) 2487 NotImplementedError, loop.is_running)
|