Home
last modified time | relevance | path

Searched defs:Sender (Results 1 – 25 of 167) sorted by relevance

1234567

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/hpke/
Dhpke.go111 type Sender struct { struct
112 aead cipher.AEAD
113 kem *dhKEM
115 sharedSecret []byte
117 suiteID []byte
119 key []byte
120 baseNonce []byte
121 exporterSecret []byte
123 seqNum uint128
204 func (s *Sender) nextNonce() []byte {
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/mpmc/
H A Dmod.rs79 pub struct Sender<T> { struct
80 flavor: SenderFlavor<T>, argument
95 unsafe impl<T: Send> Send for Sender<T> {} implementation
96 unsafe impl<T: Send> Sync for Sender<T> {} implementation
98 impl<T> UnwindSafe for Sender<T> {} implementation
99 impl<T> RefUnwindSafe for Sender<T> {} implementation
101 impl<T> Sender<T> { impl
142 impl<T> Sender<T> { impl
226 impl<T> Drop for Sender<T> { implementation
238 impl<T> Clone for Sender<T> { implementation
[all …]
H A Dcounter.rs34 pub(crate) struct Sender<C> { struct
38 impl<C> Sender<C> { impl
72 impl<C> ops::Deref for Sender<C> { implementation
80 impl<C> PartialEq for Sender<C> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/mpmc/
H A Dmod.rs79 pub struct Sender<T> { struct
80 flavor: SenderFlavor<T>, argument
95 unsafe impl<T: Send> Send for Sender<T> {} implementation
96 unsafe impl<T: Send> Sync for Sender<T> {} implementation
98 impl<T> UnwindSafe for Sender<T> {} implementation
99 impl<T> RefUnwindSafe for Sender<T> {} implementation
101 impl<T> Sender<T> { implementation
142 impl<T> Sender<T> { impl
226 impl<T> Drop for Sender<T> { implementation
238 impl<T> Clone for Sender<T> { implementation
[all …]
H A Dcounter.rs34 pub(crate) struct Sender<C> { struct
38 impl<C> Sender<C> { impl
72 impl<C> ops::Deref for Sender<C> { implementation
80 impl<C> PartialEq for Sender<C> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sync/mpmc/
H A Dmod.rs79 pub struct Sender<T> { struct
80 flavor: SenderFlavor<T>, argument
95 unsafe impl<T: Send> Send for Sender<T> {} implementation
96 unsafe impl<T: Send> Sync for Sender<T> {} implementation
98 impl<T> UnwindSafe for Sender<T> {} implementation
99 impl<T> RefUnwindSafe for Sender<T> {} implementation
101 impl<T> Sender<T> { impl
142 impl<T> Sender<T> { implementation
226 impl<T> Drop for Sender<T> { implementation
238 impl<T> Clone for Sender<T> { implementation
[all …]
H A Dcounter.rs34 pub(crate) struct Sender<C> { struct
38 impl<C> Sender<C> { implementation
72 impl<C> ops::Deref for Sender<C> { implementation
80 impl<C> PartialEq for Sender<C> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/mpmc/
H A Dmod.rs79 pub struct Sender<T> { struct
80 flavor: SenderFlavor<T>, argument
95 unsafe impl<T: Send> Send for Sender<T> {} implementation
96 unsafe impl<T: Send> Sync for Sender<T> {} implementation
98 impl<T> UnwindSafe for Sender<T> {} implementation
99 impl<T> RefUnwindSafe for Sender<T> {} implementation
101 impl<T> Sender<T> { impl
142 impl<T> Sender<T> { impl
226 impl<T> Drop for Sender<T> { implementation
238 impl<T> Clone for Sender<T> { implementation
[all …]
H A Dcounter.rs34 pub(crate) struct Sender<C> { struct
38 impl<C> Sender<C> { argument
72 impl<C> ops::Deref for Sender<C> { implementation
80 impl<C> PartialEq for Sender<C> { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/mpmc/
H A Dmod.rs79 pub struct Sender<T> { struct
80 flavor: SenderFlavor<T>, argument
95 unsafe impl<T: Send> Send for Sender<T> {} implementation
96 unsafe impl<T: Send> Sync for Sender<T> {} implementation
98 impl<T> UnwindSafe for Sender<T> {} implementation
99 impl<T> RefUnwindSafe for Sender<T> {} implementation
101 impl<T> Sender<T> { impl
142 impl<T> Sender<T> { implementation
226 impl<T> Drop for Sender<T> { implementation
238 impl<T> Clone for Sender<T> { implementation
[all …]
H A Dcounter.rs34 pub(crate) struct Sender<C> { struct
38 impl<C> Sender<C> { impl
72 impl<C> ops::Deref for Sender<C> { implementation
80 impl<C> PartialEq for Sender<C> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/net/unix/
Dpipe.rs255 pub fn open_sender<P: AsRef<Path>>(&self, path: P) -> io::Result<Sender> { in open_sender()
290 Sender, enumerator
365 pub struct Sender { struct
366 io: PollEvented<mio_pipe::Sender>, argument
369 impl Sender { impl
370 fn from_mio(mio_tx: mio_pipe::Sender) -> io::Result<Sender> { in from_mio()
394 pub fn from_file(file: File) -> io::Result<Sender> { in from_file()
419 pub fn from_owned_fd(owned_fd: OwnedFd) -> io::Result<Sender> { in from_owned_fd()
474 pub fn from_file_unchecked(file: File) -> io::Result<Sender> { in from_file_unchecked()
494 pub fn from_owned_fd_unchecked(owned_fd: OwnedFd) -> io::Result<Sender> { in from_owned_fd_unchecked()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/common/
Dwatch.rs18 pub(crate) fn channel(initial: Value) -> (Sender, Receiver) { in channel()
37 pub(crate) struct Sender { struct
50 impl Sender { implementation
58 impl Drop for Sender { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/crossbeam-channel/src/
Dchannel.rs355 pub struct Sender<T> { struct
356 flavor: SenderFlavor<T>, argument
371 unsafe impl<T: Send> Send for Sender<T> {} implementation
372 unsafe impl<T: Send> Sync for Sender<T> {} implementation
374 impl<T> UnwindSafe for Sender<T> {} implementation
375 impl<T> RefUnwindSafe for Sender<T> {} implementation
377 impl<T> Sender<T> { implementation
655 impl<T> Drop for Sender<T> { implementation
667 impl<T> Clone for Sender<T> { implementation
679 impl<T> fmt::Debug for Sender<T> { implementation
[all …]
Dcounter.rs38 pub(crate) struct Sender<C> { struct
42 impl<C> Sender<C> { implementation
78 impl<C> ops::Deref for Sender<C> { implementation
86 impl<C> PartialEq for Sender<C> { implementation
/aosp_15_r20/external/webrtc/rtc_base/
H A Dvirtual_socket_unittest.cc57 struct Sender { struct
58 Sender(Thread* th, Socket* s, uint32_t rt) in Sender() function
79 TimeDelta NextDelay() { in NextDelay()
84 Thread* thread;
85 std::unique_ptr<AsyncUDPSocket> socket;
86 rtc::PacketOptions options;
87 RepeatingTaskHandle periodic;
88 uint32_t rate; // bytes per second
89 uint32_t count;
90 int64_t last_send;
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/futures-channel/src/
Doneshot.rs26 pub struct Sender<T> { struct
32 impl<T> Unpin for Sender<T> {} implementation
331 impl<T> Sender<T> { impl
387 impl<T> Drop for Sender<T> { implementation
393 impl<T> fmt::Debug for Sender<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/oneshot-uniffi/src/
Dlib.rs201 pub struct Sender<T> { struct
224 // Covariance is the right choice here. Consider the example presented in Sender, and you'll argument
229 unsafe impl<T: Send> Send for Sender<T> {} implementation
233 impl<T> Sender<T> { implementation
344 impl<T> Drop for Sender<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/mpsc/
H A Dmod.rs340 pub struct Sender<T> { struct
341 inner: mpmc::Sender<T>, argument
347 unsafe impl<T: Send> Send for Sender<T> {} implementation
350 unsafe impl<T: Send> Sync for Sender<T> {} implementation
583 impl<T> Sender<T> { implementation
618 impl<T> Clone for Sender<T> { implementation
630 impl<T> fmt::Debug for Sender<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/mpsc/
H A Dmod.rs340 pub struct Sender<T> { struct
341 inner: mpmc::Sender<T>, argument
347 unsafe impl<T: Send> Send for Sender<T> {} implementation
350 unsafe impl<T: Send> Sync for Sender<T> {} implementation
583 impl<T> Sender<T> { implementation
618 impl<T> Clone for Sender<T> { implementation
630 impl<T> fmt::Debug for Sender<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/std/src/sync/mpsc/
H A Dmod.rs340 pub struct Sender<T> { struct
341 inner: mpmc::Sender<T>, argument
347 unsafe impl<T: Send> Send for Sender<T> {} implementation
350 unsafe impl<T: Send> Sync for Sender<T> {} implementation
583 impl<T> Sender<T> { impl
618 impl<T> Clone for Sender<T> { implementation
630 impl<T> fmt::Debug for Sender<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/std/src/sync/mpsc/
H A Dmod.rs340 pub struct Sender<T> { struct
341 inner: mpmc::Sender<T>, argument
347 unsafe impl<T: Send> Send for Sender<T> {} implementation
350 unsafe impl<T: Send> Sync for Sender<T> {} implementation
583 impl<T> Sender<T> { impl
618 impl<T> Clone for Sender<T> { implementation
630 impl<T> fmt::Debug for Sender<T> { implementation
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/std/src/sync/mpsc/
H A Dmod.rs340 pub struct Sender<T> { struct
341 inner: mpmc::Sender<T>, argument
347 unsafe impl<T: Send> Send for Sender<T> {} implementation
350 unsafe impl<T: Send> Sync for Sender<T> {} implementation
583 impl<T> Sender<T> { implementation
618 impl<T> Clone for Sender<T> { implementation
630 impl<T> fmt::Debug for Sender<T> { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/body/
Dbody.rs111 pub struct Sender { struct
113 data_tx: BodySender, argument
114 trailers_tx: Option<TrailersSender>, argument
144 pub(crate) fn new_channel(content_length: DecodedLength, wanter: bool) -> (Sender, Body) { in new_channel()
553 impl Sender { implementation
625 impl fmt::Debug for Sender { implementation
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/src/runtime/tests/
Dloom_oneshot.rs18 pub(crate) struct Sender<T> { struct
31 impl<T> Sender<T> { implementation

1234567