/aosp_15_r20/external/grpc-grpc/src/core/lib/promise/ |
H A D | poll.h | 48 Poll(Pending) : ready_(false) {} in Poll() function 49 Poll() : ready_(false) {} in Poll() function 50 Poll(const Poll& other) : ready_(other.ready_) { in Poll() function 53 Poll(Poll&& other) noexcept : ready_(other.ready_) { in Poll() function 86 Poll(U value) : ready_(true) { in Poll() function 90 Poll(T&& value) : ready_(true) { Construct(&value_, std::forward<T>(value)); } in Poll() function 144 Poll(Pending) : ready_(false) {} in Poll() function 145 Poll() : ready_(false) {} in Poll() function 151 Poll(Empty) : ready_(true) {} in Poll() function 183 class Poll<Pending>; variable [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/promise/ |
D | poll.h | 50 Poll(Pending) : ready_(false) {} in Poll() function 51 Poll() : ready_(false) {} in Poll() function 52 Poll(const Poll& other) : ready_(other.ready_) { in Poll() function 55 Poll(Poll&& other) noexcept : ready_(other.ready_) { in Poll() function 88 Poll(U value) : ready_(true) { in Poll() function 92 Poll(T&& value) : ready_(true) { Construct(&value_, std::forward<T>(value)); } in Poll() function 146 Poll(Pending) : ready_(false) {} in Poll() function 147 Poll() : ready_(false) {} in Poll() function 153 Poll(Empty) : ready_(true) {} in Poll() function 185 class Poll<Pending>; variable [all …]
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/src/task/ |
H A D | poll.rs | 12 pub enum Poll<T> { enum 28 impl<T> Poll<T> { implementation 98 impl<T, E> Poll<Result<T, E>> { implementation 155 impl<T, E> Poll<Option<Result<T, E>>> { implementation 216 impl<T> From<T> for Poll<T> { implementation 231 impl<T, E> ops::Try for Poll<Result<T, E>> { implementation 251 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>> for Poll<Result<T, F>> { implementation 261 impl<T, E> ops::Try for Poll<Option<Result<T, E>>> { implementation 282 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>>
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/src/task/ |
H A D | poll.rs | 12 pub enum Poll<T> { enum 28 impl<T> Poll<T> { implementation 98 impl<T, E> Poll<Result<T, E>> { implementation 155 impl<T, E> Poll<Option<Result<T, E>>> { impl 216 impl<T> From<T> for Poll<T> { implementation 231 impl<T, E> ops::Try for Poll<Result<T, E>> { implementation 251 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>> for Poll<Result<T, F>> { implementation 261 impl<T, E> ops::Try for Poll<Option<Result<T, E>>> { implementation 282 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>>
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/core/src/task/ |
H A D | poll.rs | 12 pub enum Poll<T> { enum 28 impl<T> Poll<T> { impl 98 impl<T, E> Poll<Result<T, E>> { implementation 155 impl<T, E> Poll<Option<Result<T, E>>> { implementation 216 impl<T> From<T> for Poll<T> { implementation 231 impl<T, E> ops::Try for Poll<Result<T, E>> { implementation 251 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>> for Poll<Result<T, F>> { implementation 261 impl<T, E> ops::Try for Poll<Option<Result<T, E>>> { implementation 282 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>>
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/core/src/task/ |
H A D | poll.rs | 12 pub enum Poll<T> { enum 28 impl<T> Poll<T> { implementation 98 impl<T, E> Poll<Result<T, E>> { implementation 155 impl<T, E> Poll<Option<Result<T, E>>> { impl 216 impl<T> From<T> for Poll<T> { implementation 231 impl<T, E> ops::Try for Poll<Result<T, E>> { implementation 251 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>> for Poll<Result<T, F>> { implementation 261 impl<T, E> ops::Try for Poll<Option<Result<T, E>>> { implementation 282 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>>
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/src/task/ |
H A D | poll.rs | 12 pub enum Poll<T> { enum 28 impl<T> Poll<T> { implementation 98 impl<T, E> Poll<Result<T, E>> { implementation 155 impl<T, E> Poll<Option<Result<T, E>>> { impl 216 impl<T> From<T> for Poll<T> { implementation 231 impl<T, E> ops::Try for Poll<Result<T, E>> { implementation 251 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>> for Poll<Result<T, F>> { implementation 261 impl<T, E> ops::Try for Poll<Option<Result<T, E>>> { implementation 282 impl<T, E, F: From<E>> ops::FromResidual<Result<convert::Infallible, E>>
|
/aosp_15_r20/external/pigweed/pw_async2/public/pw_async2/ |
H A D | poll.h | 75 constexpr Poll(const Poll<U>& other) : value_(other.value_) {} in Poll() function 78 explicit constexpr Poll(const Poll<U>& other) : value_(other.value_) {} in Poll() function 82 constexpr Poll(Poll<U>&& other) // NOLINT in Poll() function 86 explicit constexpr Poll(Poll<U>&& other) : value_(std::move(other.value_)) {} in Poll() function 97 constexpr Poll(U&& u) // NOLINT in Poll() function 102 explicit constexpr Poll(U&& u) // NOLINT in Poll() function 107 constexpr Poll(std::in_place_t, Args&&... args) in Poll() function 111 constexpr Poll(T&& value) : value_(std::move(value)) {} in Poll() function 118 constexpr Poll(PendingType) noexcept : value_() {} in Poll() function
|
/aosp_15_r20/external/pigweed/pw_async2/ |
H A D | poll_test.cc | 54 TEST(Poll, ConstructsReadyInPlace) { in TEST() argument 60 TEST(Poll, ConstructsReadyFromValueType) { in TEST() argument 66 TEST(Poll, ConstructsFromValueConvertibleToValueType) { in TEST() argument 72 TEST(Poll, ConstructsFromPollWithValueConvertibleToValueType) { in TEST() argument 79 TEST(Poll, ConstructsPendingFromPendingType) { in TEST() argument 84 TEST(Poll, ConstructorInfersValueType) { in TEST() argument 91 TEST(Poll, ReadinessOnReadyValueReturnsReadyWithoutValue) { in TEST() argument 97 TEST(Poll, ReadinessOnPendingValueReturnsPendingWithoutValue) { in TEST() argument 103 TEST(Poll, ReadyToString) { in TEST() argument 110 TEST(Poll, ReadyValueToString) { in TEST() argument [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/mio/src/ |
D | poll.rs | 267 pub struct Poll { struct 279 impl Poll { implementation 455 impl AsRawFd for Poll { implementation 461 impl fmt::Debug for Poll { implementation
|
/aosp_15_r20/prebuilts/runtime/mainline/platform/sdk/include/external/perfetto/include/perfetto/ext/base/threading/ |
H A D | future_combinators.h | 43 FuturePollResult<T> Poll(PollContext*) override { return std::move(value_); } in Poll() function 56 FuturePollResult<B> Poll(PollContext* context) override { in Poll() function
|
/aosp_15_r20/external/perfetto/include/perfetto/ext/base/threading/ |
H A D | future_combinators.h | 43 FuturePollResult<T> Poll(PollContext*) override { return std::move(value_); } in Poll() function 56 FuturePollResult<B> Poll(PollContext* context) override { in Poll() function
|
/aosp_15_r20/external/rust/android-crates-io/crates/futures-channel/src/ |
D | oneshot.rs | 154 fn poll_canceled(&self, cx: &mut Context<'_>) -> Poll<()> { in poll_canceled() 357 pub fn poll_canceled(&mut self, cx: &mut Context<'_>) -> Poll<()> { in poll_canceled() 411 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()
|
/aosp_15_r20/external/rust/android-crates-io/crates/h2/src/proto/ |
D | peer.rs | 12 type Poll: fmt::Debug; typedef 23 ) -> Result<Self::Poll, Error>; in convert_poll_message()
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/core/src/async_iter/ |
H A D | async_iter.rs | 116 impl<T> Poll<Option<T>> { impl
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/src/async_iter/ |
H A D | async_iter.rs | 116 impl<T> Poll<Option<T>> { implementation
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/src/async_iter/ |
H A D | async_iter.rs | 116 impl<T> Poll<Option<T>> { impl
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/core/src/async_iter/ |
H A D | async_iter.rs | 116 impl<T> Poll<Option<T>> { impl
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/src/async_iter/ |
H A D | async_iter.rs | 116 impl<T> Poll<Option<T>> { impl
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/tests/ |
D | sync_oneshot.rs | 27 fn poll_closed(&mut self, cx: &mut Context<'_>) -> Poll<()>; in poll_closed() 31 fn poll_closed(&mut self, cx: &mut Context<'_>) -> Poll<()> { in poll_closed()
|
D | task_local.rs | 53 fn poll(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<()> { in task_local_available_on_abort() 103 fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<()> { in task_local_available_on_completion_drop()
|
D | task_id.rs | 85 fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<()> { in task_id_future_destructor_completion() 113 fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<()> { in task_id_future_destructor_abort()
|
/aosp_15_r20/cts/common/device-side/bedstead/nene/src/main/java/com/android/bedstead/nene/utils/ |
H A D | Poll.java | 60 public final class Poll<E> { class 77 private Poll(String valueName, ValueSupplier<E> supplier) { in Poll() method in Poll
|
/aosp_15_r20/external/rust/android-crates-io/crates/tokio-util/src/sync/ |
D | cancellation_token.rs | 303 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll() 363 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()
|
/aosp_15_r20/hardware/google/aemu/base/include/aemu/base/ |
D | HealthMonitor.h | 128 struct Poll { struct 136 typename MonitoredEventType::EndMonitoring, typename MonitoredEventType::Poll>;
|