Home
last modified time | relevance | path

Searched defs:Poll (Results 1 – 25 of 52) sorted by relevance

123

/external/rust/crates/grpcio-sys/grpc/src/core/lib/promise/
Dpoll.h50 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 …]
/external/grpc-grpc/src/core/lib/promise/
Dpoll.h48 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 …]
/external/pigweed/pw_async2/public/pw_async2/
Dpoll.h73 constexpr Poll(const Poll<U>& other) : value_(other.value_) {} in Poll() function
76 explicit constexpr Poll(const Poll<U>& other) : value_(other.value_) {} in Poll() function
80 constexpr Poll(Poll<U>&& other) // NOLINT in Poll() function
84 explicit constexpr Poll(Poll<U>&& other) : value_(std::move(other.value_)) {} in Poll() function
95 constexpr Poll(U&& u) // NOLINT in Poll() function
100 explicit constexpr Poll(U&& u) // NOLINT in Poll() function
105 constexpr Poll(std::in_place_t, Args&&... args) in Poll() function
109 constexpr Poll(T&& value) : value_(std::move(value)) {} in Poll() function
116 constexpr Poll(PendingType) noexcept : value_() {} in Poll() function
/external/pigweed/pw_async2/
Dpoll_test.cc53 TEST(Poll, ConstructsReadyInPlace) { in TEST() argument
59 TEST(Poll, ConstructsReadyFromValueType) { in TEST() argument
65 TEST(Poll, ConstructsFromValueConvertibleToValueType) { in TEST() argument
71 TEST(Poll, ConstructsFromPollWithValueConvertibleToValueType) { in TEST() argument
78 TEST(Poll, ConstructsPendingFromPendingType) { in TEST() argument
83 TEST(Poll, ConstructorInfersValueType) { in TEST() argument
90 TEST(Poll, ReadinessOnReadyValueReturnsReadyWithoutValue) { in TEST() argument
96 TEST(Poll, ReadinessOnPendingValueReturnsPendingWithoutValue) { in TEST() argument
102 TEST(Poll, ReadyToString) { in TEST() argument
109 TEST(Poll, ReadyValueToString) { in TEST() argument
[all …]
/external/rust/crates/mio/src/
Dpoll.rs249 pub struct Poll { struct
258 impl Poll { impl
416 impl AsRawFd for Poll { implementation
422 impl fmt::Debug for Poll { implementation
/external/perfetto/include/perfetto/ext/base/threading/
Dfuture_combinators.h43 FuturePollResult<T> Poll(PollContext*) override { return std::move(value_); } in Poll() function
56 FuturePollResult<B> Poll(PollContext* context) override { in Poll() function
Dfuture.h126 FuturePollResult<T> Poll(PollContext* ctx) { return pollable_->Poll(ctx); } in Poll() function
/external/rust/crates/h2/src/proto/
Dpeer.rs12 type Poll: fmt::Debug; typedef
23 ) -> Result<Self::Poll, Error>; in convert_poll_message()
/external/pigweed/pw_async2/public/pw_async2/internal/
Dpoll_internal.h24 class [[nodiscard]] Poll; variable
/external/rust/crates/tokio/tests/
Dtask_local.rs53 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()
Dsync_oneshot.rs25 fn poll_closed(&mut self, cx: &mut Context<'_>) -> Poll<()>; in poll_closed()
28 fn poll_closed(&mut self, cx: &mut Context<'_>) -> Poll<()> { in poll_closed()
Dtask_id.rs89 fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<()> { in task_id_future_destructor_completion()
117 fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<()> { in task_id_future_destructor_abort()
/external/crosvm/cros_async/src/sys/linux/
Derror.rs11 Poll(#[from] super::poll_source::Error), enumerator
/external/pigweed/pw_log/
Drate_limited.cc19 RateLimiter::PollResult RateLimiter::Poll( in Poll() function in pw::log::internal::RateLimiter
/external/rust/crates/tokio/src/task/
Dyield_now.rs48 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in yield_now()
/external/rust/crates/futures/tests/
Dfuture_obj.rs19 fn poll(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<()> { in dropping_drops_the_future()
/external/rust/crates/futures-channel/src/
Doneshot.rs154 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()
/external/rust/crates/tokio-util/src/sync/
Dcancellation_token.rs257 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()
317 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()
/external/rust/crates/futures-util/src/stream/stream/
Dfor_each.rs64 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()
Dfor_each_concurrent.rs73 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()
/external/rust/crates/tokio/src/
Dlib.rs578 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in async_trace_leaf()
/external/mesa3d/src/gfxstream/guest/android-emu/aemu/base/
DAndroidHealthMonitor.h127 struct Poll { struct
135 typename MonitoredEventType::EndMonitoring, typename MonitoredEventType::Poll>;
/external/uwb/src/rust/uwb_core/src/
Dutils.rs35 fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()
/external/armnn/profiling/common/src/
DNetworkSockets.cpp92 int Poll(PollFd* fds, nfds_t numFds, int timeout) in Poll() function
/external/rust/crates/futures-util/src/future/future/
Dremote_handle.rs95 fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { in poll()

123