Home
last modified time | relevance | path

Searched defs:Ready (Results 1 – 25 of 500) sorted by relevance

12345678910>>...20

/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/io/
Dready.rs21 pub struct Ready(usize); struct
23 impl Ready { impl
57 pub(crate) fn from_mio(event: &mio::event::Event) -> Ready { in from_mio()
226 pub(crate) fn from_usize(val: usize) -> Ready { in from_usize()
238 pub(crate) fn from_interest(interest: Interest) -> Ready { in from_interest()
264 pub(crate) fn intersection(self, interest: Interest) -> Ready { in intersection()
273 impl ops::BitOr<Ready> for Ready { implementation
277 fn bitor(self, other: Ready) -> Ready { in bitor()
282 impl ops::BitOrAssign<Ready> for Ready { implementation
284 fn bitor_assign(&mut self, other: Ready) { in bitor_assign()
[all …]
Dasync_fd.rs1058 pub fn clear_ready_matching(&mut self, ready: Ready) { in clear_ready_matching()
1089 pub fn ready(&self) -> Ready { in ready()
1282 pub fn clear_ready_matching(&mut self, ready: Ready) { in clear_ready_matching()
1313 pub fn ready(&self) -> Ready { in ready()
/aosp_15_r20/external/rust/android-crates-io/crates/futures-util/src/future/
Dready.rs9 pub struct Ready<T>(Option<T>); struct
11 impl<T> Ready<T> { impl
19 impl<T> Unpin for Ready<T> {} implementation
21 impl<T> FusedFuture for Ready<T> { implementation
27 impl<T> Future for Ready<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tower/src/util/
Dready.rs70 pub struct Ready<'a, T, Request>(ReadyOneshot<&'a mut T, Request>); struct
81 impl<'a, T, Request> Unpin for Ready<'a, T, Request> {} implementation
83 impl<'a, T, Request> Ready<'a, T, Request> implementation
93 impl<'a, T, Request> Future for Ready<'a, T, Request> implementation
104 impl<'a, T, Request> fmt::Debug for Ready<'a, T, Request> implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/core/src/future/
H A Dready.rs12 pub struct Ready<T>(Option<T>); struct
15 impl<T> Unpin for Ready<T> {} implementation
18 impl<T> Future for Ready<T> { implementation
27 impl<T> Ready<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/src/future/
H A Dready.rs12 pub struct Ready<T>(Option<T>); struct
15 impl<T> Unpin for Ready<T> {} implementation
18 impl<T> Future for Ready<T> { implementation
27 impl<T> Ready<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/core/src/future/
H A Dready.rs12 pub struct Ready<T>(Option<T>); struct
15 impl<T> Unpin for Ready<T> {} implementation
18 impl<T> Future for Ready<T> { implementation
27 impl<T> Ready<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/src/future/
H A Dready.rs12 pub struct Ready<T>(Option<T>); struct
15 impl<T> Unpin for Ready<T> {} implementation
18 impl<T> Future for Ready<T> { implementation
27 impl<T> Ready<T> { impl
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/src/future/
H A Dready.rs12 pub struct Ready<T>(Option<T>); struct
15 impl<T> Unpin for Ready<T> {} implementation
18 impl<T> Future for Ready<T> { implementation
27 impl<T> Ready<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tower/tests/ready_cache/
Dmain.rs211 struct Ready(ReadyCache<&'static str, tower_test::mock::Mock<(), ()>, ()>); in cancelation_observed() struct
212 impl Unpin for Ready {} in cancelation_observed() implementation
213 impl std::future::Future for Ready { in cancelation_observed() implementation
/aosp_15_r20/external/pigweed/pw_async2/public/pw_async2/
H A Dpoll.h237 inline constexpr Poll<> Ready() { return Poll(ReadyType{}); } in Ready() function
242 constexpr Poll<T> Ready(std::in_place_t, Args&&... args) { in Ready() function
248 constexpr Poll<std::remove_reference_t<T>> Ready(T&& value) { in Ready() function
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/panel/component/anc/domain/model/
H A DAncSlices.kt24 data class Ready( dataClass
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SystemUI/SystemUI-core/android_common/kapt/gen/stubs/com/android/systemui/volume/panel/component/anc/domain/model/
DAncSlices.java12 …public static final class Ready implements com.android.systemui.volume.panel.component.anc.domain.… class
18 public Ready(@org.jetbrains.annotations.NotNull() in Ready() method in AncSlices.Ready
/aosp_15_r20/external/jetpack-camera-app/feature/preview/src/main/java/com/google/jetpackcamera/feature/preview/
H A DPreviewUiState.kt29 data class Ready( class
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp56 SmallVector<InstRef, 4> Ready; in issueInstruction() local
97 SmallVector<InstRef, 4> Ready; in cycleStart() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/Stages/
H A DExecuteStage.cpp56 SmallVector<InstRef, 4> Ready; in issueInstruction() local
97 SmallVector<InstRef, 4> Ready; in cycleStart() local
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp119 bool Scheduler::promoteToReadySet(SmallVectorImpl<InstRef> &Ready) { in promoteToReadySet()
267 SmallVectorImpl<InstRef> &Ready) { in cycleEvent()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/net/unix/
Dsplit.rs79 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
213 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
Dsplit_owned.rs134 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
296 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
Dpipe.rs519 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
1015 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/MCA/HardwareUnits/
H A DScheduler.cpp119 bool Scheduler::promoteToReadySet(SmallVectorImpl<InstRef> &Ready) { in promoteToReadySet()
267 SmallVectorImpl<InstRef> &Ready) { in cycleEvent()
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/net/tcp/
Dsplit.rs165 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
302 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
Dsplit_owned.rs220 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
384 pub async fn ready(&self, interest: Interest) -> io::Result<Ready> { in ready()
/aosp_15_r20/packages/modules/adb/daemon/
Dservices.cpp189 virtual void Ready() {} in Ready() function
234 void Ready() { in Ready() function
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/io/
Dscheduled_io.rs209 pub(super) fn set_readiness(&self, tick_op: Tick, f: impl Fn(Ready) -> Ready) { in set_readiness()
238 pub(super) fn wake(&self, ready: Ready) { in wake()

12345678910>>...20