Home
last modified time | relevance | path

Searched refs:coop (Results 1 – 25 of 34) sorted by relevance

12

/external/rust/crates/tokio/src/
Dcoop.rs225 let coop = assert_ready!(task::spawn(()).enter(|cx, _| poll_proceed(cx))); in bugeting() localVariable
228 drop(coop); in bugeting()
234 let coop = assert_ready!(task::spawn(()).enter(|cx, _| poll_proceed(cx))); in bugeting() localVariable
236 drop(coop); in bugeting()
240 let coop = assert_ready!(task::spawn(()).enter(|cx, _| poll_proceed(cx))); in bugeting() localVariable
242 coop.made_progress(); in bugeting()
243 drop(coop); in bugeting()
247 let coop = assert_ready!(task::spawn(()).enter(|cx, _| poll_proceed(cx))); in bugeting() localVariable
249 coop.made_progress(); in bugeting()
250 drop(coop); in bugeting()
[all …]
Dlib.rs375 pub(crate) mod coop; module
/external/rust/crates/tokio/src/sync/
Doneshot.rs475 let coop = ready!(crate::coop::poll_proceed(cx)); in poll_closed() localVariable
482 coop.made_progress(); in poll_closed()
495 coop.made_progress(); in poll_closed()
513 coop.made_progress(); in poll_closed()
727 let coop = ready!(crate::coop::poll_proceed(cx)); in poll_recv() localVariable
733 coop.made_progress(); in poll_recv()
739 coop.made_progress(); in poll_recv()
753 coop.made_progress(); in poll_recv()
774 coop.made_progress(); in poll_recv()
Dbatch_semaphore.rs440 let coop = ready!(crate::coop::poll_proceed(cx)); in poll() localVariable
450 coop.made_progress(); in poll()
/external/rust/crates/tokio/src/runtime/task/
Djoin.rs209 let coop = ready!(crate::coop::poll_proceed(cx)); in poll() localVariable
234 coop.made_progress(); in poll()
/external/rust/crates/tokio/src/time/driver/
Dsleep.rs229 let coop = ready!(crate::coop::poll_proceed(cx)); in poll_elapsed() localVariable
232 coop.made_progress(); in poll_elapsed()
/external/rust/crates/tokio/src/sync/mpsc/
Dchan.rs220 let coop = ready!(crate::coop::poll_proceed(cx)); in recv() localVariable
230 coop.made_progress(); in recv()
241 coop.made_progress(); in recv()
259 coop.made_progress(); in recv()
/external/rust/crates/tokio/src/io/driver/
Dregistration.rs156 let coop = ready!(crate::coop::poll_proceed(cx)); in poll_ready() localVariable
163 coop.made_progress(); in poll_ready()
/external/rust/crates/tokio/src/runtime/thread_pool/
Dworker.rs7 use crate::coop;
182 struct Reset(coop::Budget); in block_in_place()
195 coop::set(self.0); in block_in_place()
262 let _reset = Reset(coop::stop()); in block_in_place()
348 coop::budget(|| { in run_task()
367 if coop::has_budget_remaining() { in run_task()
/external/rust/crates/tokio-stream/tests/
Dstream_iter.rs7 async fn coop() { in coop() function
/external/rust/crates/tokio/src/runtime/blocking/
Dtask.rs40 crate::coop::stop(); in poll()
/external/rust/crates/tokio/src/task/
Dunconstrained.rs24 crate::coop::with_unconstrained(|| inner.poll(cx))
Dlocal.rs514 Some(task) => crate::coop::budget(|| task.run()), in tick()
634 if let Poll::Ready(output) = crate::coop::budget(|| f.poll(cx)) { in poll()
/external/rust/crates/tokio/src/process/
Dmod.rs848 let coop = ready!(crate::coop::poll_proceed(cx)); in poll() localVariable
858 coop.made_progress(); in poll()
/external/rust/crates/tokio/tests/
Dfs_file.rs54 async fn coop() { in coop() function
Drt_common.rs993 fn coop() {
/external/rust/crates/tokio/src/runtime/
Dshell.rs111 if let Ready(v) = crate::coop::budget(|| f.as_mut().poll(&mut cx)) { in block_on()
Dbasic_scheduler.rs213 if let Ready(v) = crate::coop::budget(|| future.as_mut().poll(&mut cx)) { in block_on()
254 Entry::Schedule(task) => crate::coop::budget(|| task.run()), in block_on()
Denter.rs176 if let Ready(v) = crate::coop::budget(|| f.as_mut().poll(&mut cx)) {
/external/rust/crates/tokio/src/park/
Dthread.rs263 if let Ready(v) = crate::coop::budget(|| f.as_mut().poll(&mut cx)) { in block_on()
/external/protobuf/docs/
Doptions.md45 * Website: http://www.plausible.coop
/external/llvm-project/mlir/include/mlir/Dialect/SPIRV/
DSPIRVCooperativeMatrixOps.td246 coop-matrix-store-op ::= `spv.CooperativeMatrixStoreNV `
/external/icu/icu4c/source/test/testdata/
Dregextst.txt2112 …]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$…
2113 …]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$…
2114 …]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$…
2115 …]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$…
2116 …]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$…
2117 …]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,3})|(aero|coop|info|museum|name))$…
/external/rust/crates/tokio/
DCHANGELOG.md85 - coop: expose an `unconstrained()` opt-out ([#3547])
584 - coop: returning `Poll::Pending` no longer decrements the task budget ([#2549])
/external/python/cpython2/Modules/_ctypes/libffi/
DChangeLog3375 Author: Landon Fuller <landonf@plausible.coop>

12