/external/adhd/scripts/audio_thread_log_viewer/ |
D | log.test | 8 496098.524565708 DEV_SLEEP_TIME dev:8 wake:000496098.545892346 13 496098.546001355 DEV_SLEEP_TIME dev:8 wake:000496098.567328258 18 496098.567623059 DEV_SLEEP_TIME dev:8 wake:000496098.588949912 23 496098.589248133 DEV_SLEEP_TIME dev:8 wake:000496098.610574976 28 496098.610862050 DEV_SLEEP_TIME dev:8 wake:000496098.632188948 33 496098.632483289 DEV_SLEEP_TIME dev:8 wake:000496098.653810157 38 496098.654101015 DEV_SLEEP_TIME dev:8 wake:000496098.675427884 43 496098.675716210 DEV_SLEEP_TIME dev:8 wake:000496098.697043620 48 496098.697332439 DEV_SLEEP_TIME dev:8 wake:000496098.718659357 53 496098.718799116 DEV_SLEEP_TIME dev:8 wake:000496098.740125964 [all …]
|
/external/autotest/server/site_tests/power_WakeSources/ |
D | README.md | 7 On Chrome device, several wake sources are expected to wake the system from 8 sleep. Not all wake sources will turn the display back on after resume (if 44 5. If any of the wake source did not result in expected behavior, the results 46 did not trigger a full wake. 47 6. If any of the valid wake sources for a given platform is `SKIPPED`, please 48 [test it manually](#Testing-wake-source-manually). 49 7. If you see a valid wake source for a given platform missing from the list, 50 please [test it manually](#Testing-wake-source-manually). For example 53 ## Testing wake source manually 55 The steps below describe how to test wake sources manually. [all …]
|
/external/rust/crates/tokio/src/sync/task/ |
D | atomic_waker.rs | 214 waker.wake(); in do_register() 223 waker.wake(); in do_register() 246 pub(crate) fn wake(&self) { in wake() method 248 waker.wake(); in wake() 301 fn wake(self); in wake() method 306 fn wake(self) { in wake() method 307 self.wake() in wake() 316 fn wake(self) { in wake() method
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | bugprone-spuriously-wake-up-functions.rst | 1 .. title:: clang-tidy - bugprone-spuriously-wake-up-functions 3 bugprone-spuriously-wake-up-functions 25 `CON54-CPP. Wrap functions that can spuriously wake up in a loop 26 …du/confluence/display/cplusplus/CON54-CPP.+Wrap+functions+that+can+spuriously+wake+up+in+a+loop>`_. 28 `CON36-C. Wrap functions that can spuriously wake up in a loop 29 <https://wiki.sei.cmu.edu/confluence/display/c/CON36-C.+Wrap+functions+that+can+spuriously+wake+up+…
|
D | cert-con54-cpp.rst | 3 :http-equiv=refresh: 5;URL=bugprone-spuriously-wake-up-functions.html 9 `bugprone-spuriously-wake-up-functions <bugprone-spuriously-wake-up-functions.html>`_
|
D | cert-con36-c.rst | 3 :http-equiv=refresh: 5;URL=bugprone-spuriously-wake-up-functions.html 9 `bugprone-spuriously-wake-up-functions <bugprone-spuriously-wake-up-functions.html>`_
|
/external/rust/crates/mio/src/sys/unix/ |
D | waker.rs | 33 pub fn wake(&self) -> io::Result<()> { in wake() method 41 self.wake() in wake() 92 pub fn wake(&self) -> io::Result<()> { in wake() method 93 self.selector.wake(self.token) in wake() 139 pub fn wake(&self) -> io::Result<()> { in wake() method 152 self.wake() in wake() 154 Err(ref err) if err.kind() == io::ErrorKind::Interrupted => self.wake(), in wake()
|
/external/rust/crates/tokio/src/util/ |
D | mod.rs | 21 mod wake; 22 pub(crate) use wake::WakerRef; 23 pub(crate) use wake::{waker_ref, Wake};
|
D | wake.rs | 10 fn wake(self: Arc<Self>); in wake() method 32 pub(crate) fn waker_ref<W: Wake>(wake: &Arc<W>) -> WakerRef<'_> { in waker_ref() 33 let ptr = &**wake as *const _ as *const (); in waker_ref() 71 Wake::wake(arc); in wake_arc_raw()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/ |
D | rx-newthread.hpp | 59 mutable std::condition_variable wake; member 87 keepAlive->wake.notify_one(); in new_worker() 104 keepAlive->wake.wait(guard, [keepAlive](){ in new_worker() 117 keepAlive->wake.wait_until(guard, peek.when); in new_worker() 143 state->wake.notify_one(); in schedule()
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/power/bw_hwmon_meas/ |
D | format | 12 field:int wake; offset:32; size:4; signed:1; 14 print fmt: "dev: %s, mbps = %lu, us = %lu, wake = %d", __get_str(name), REC->mbps, REC->us, REC->wa…
|
/external/autotest/server/site_tests/firmware_ECPowerButton/ |
D | control | 22 - Short press wake system from G3 (shutdown for more than 10 sec) 23 - Short press wake system from S5 (shutdown for less than 10 sec) 24 - Long press wake system from G3 (shutdown for more than 10 sec) 25 - Long press wake system from S5 (shutdown for less than 10 sec)
|
/external/rust/crates/grpcio/src/task/ |
D | promise.rs | 52 task.map(|t| t.wake()); in read_one_msg() 69 task.map(|t| t.wake()); in finish_response() 82 task.map(|t| t.wake()); in handle_unary_response() 124 task.map(|t| t.wake()); in resolve()
|
/external/rust/crates/futures-task/src/ |
D | waker.rs | 19 pub fn waker<W>(wake: Arc<W>) -> Waker in waker() 23 let ptr = Arc::into_raw(wake) as *const (); in waker() 49 ArcWake::wake(arc); in wake_arc_raw()
|
D | waker_ref.rs | 58 pub fn waker_ref<W>(wake: &Arc<W>) -> WakerRef<'_> in waker_ref() 64 let ptr = (&**wake as *const W) as *const (); in waker_ref()
|
/external/rust/crates/tokio-test/src/ |
D | task.rs | 198 fn wake(&self) { in wake() method 219 static VTABLE: RawWakerVTable = RawWakerVTable::new(clone, wake, wake_by_ref, drop_waker); 238 unsafe fn wake(raw: *const ()) { in wake() function 240 waker.wake(); in wake() 245 waker.wake(); in wake_by_ref()
|
/external/rust/crates/async-task/tests/ |
D | waker_ready.rs | 101 fn wake() { in wake() function 116 get_waker().wake(); in wake() 131 get_waker().wake(); in wake() 195 w4.wake(); in clone() 205 w3.wake(); in clone() 241 waker.wake(); in wake_dropped() 264 waker.wake(); in wake_completed() 272 get_waker().wake(); in wake_completed()
|
/external/rust/crates/futures-core/src/task/__internal/ |
D | atomic_waker.rs | 317 waker.wake(); in register() 357 pub fn wake(&self) { in wake() method 359 waker.wake(); in wake()
|
/external/rust/crates/mio/src/ |
D | waker.rs | 93 pub fn wake(&self) -> io::Result<()> { in wake() method 94 self.inner.wake() in wake()
|
/external/rust/crates/tokio/src/sync/tests/ |
D | atomic_waker.rs | 20 waker.wake(); in basic_usage() 28 waker.wake(); in wake_without_register()
|
/external/ltp/testcases/realtime/func/prio-wake/ |
D | prio-wake.c | 137 nsec_t start, wake; in worker_thread() local 156 wake = rt_gettime() - beginrun; in worker_thread() 160 wake / NS_PER_US, j, mypri); in worker_thread()
|
/external/rust/crates/async-trait/tests/executor/ |
D | mod.rs | 13 unsafe fn wake(_null: *const ()) { in block_on_simple() function 24 let vtable = &RawWakerVTable::new(clone, wake, wake_by_ref, drop); in block_on_simple()
|
/external/rust/crates/async-task/src/ |
D | raw.rs | 90 Self::wake, 182 unsafe fn wake(ptr: *const ()) { in wake() function 465 abort_on_panic(|| w.wake()); in run() 533 abort_on_panic(|| w.wake()); in run() 584 abort_on_panic(|| w.wake()); in run() 647 abort_on_panic(|| w.wake()); in run() 674 abort_on_panic(|| w.wake()); in run()
|
/external/autotest/server/site_tests/network_WiFi_DarkResumeActiveScans/ |
D | control | 15 When wake on WiFi is supported and enabled, our system could wake up from 33 triggering these wake events and analyzing packet captures to ensure that the
|
/external/rust/crates/tokio/src/io/util/ |
D | mem.rs | 157 waker.wake(); in close() 176 waker.wake(); in poll_read() 207 waker.wake(); in poll_write()
|