Home
last modified time | relevance | path

Searched refs:unbounded_channel_stream (Results 1 – 9 of 9) sorted by relevance

/external/rust/android-crates-io/crates/tokio-stream/tests/
Dstream_collect.rs45 let (tx, rx) = mpsc::unbounded_channel_stream(); in collect_vec_items()
66 let (tx, rx) = mpsc::unbounded_channel_stream(); in collect_string_items()
88 let (tx, rx) = mpsc::unbounded_channel_stream(); in collect_str_items()
110 let (tx, rx) = mpsc::unbounded_channel_stream(); in collect_results_ok()
132 let (tx, rx) = mpsc::unbounded_channel_stream(); in collect_results_err()
Dstream_merge.rs26 let (tx1, rx1) = mpsc::unbounded_channel_stream(); in merge_async_streams()
27 let (tx2, rx2) = mpsc::unbounded_channel_stream(); in merge_async_streams()
Dstream_stream_map.rs49 let (tx, rx) = mpsc::unbounded_channel_stream(); in single_entry()
88 let (tx1, rx1) = mpsc::unbounded_channel_stream(); in multiple_entries()
89 let (tx2, rx2) = mpsc::unbounded_channel_stream(); in multiple_entries()
147 let (tx, rx) = mpsc::unbounded_channel_stream(); in insert_remove()
177 let (tx1, rx1) = mpsc::unbounded_channel_stream(); in replace()
178 let (tx2, rx2) = mpsc::unbounded_channel_stream(); in replace()
Dstream_chain.rs54 let (tx1, rx1) = mpsc::unbounded_channel_stream(); in pending_first()
55 let (tx2, rx2) = mpsc::unbounded_channel_stream(); in pending_first()
/external/rust/android-crates-io/crates/tokio-stream/tests/support/
Dmpsc.rs5 pub fn unbounded_channel_stream<T: Unpin>() -> (UnboundedSender<T>, impl Stream<Item = T>) { in unbounded_channel_stream() function
/external/rust/android-crates-io/crates/tokio/tests/support/
Dmpsc_stream.rs18 pub fn unbounded_channel_stream<T: Unpin>() -> (UnboundedSender<T>, impl Stream<Item = T>) { in unbounded_channel_stream() function
/external/rust/android-crates-io/crates/tokio/tests/
Dtask_blocking.rs172 let (tx, rx) = support::mpsc_stream::unbounded_channel_stream(); in coop_disabled_in_block_in_place()
203 let (tx, rx) = support::mpsc_stream::unbounded_channel_stream(); in coop_disabled_in_block_in_place_in_block_on()
Drt_basic.rs80 let (tx, rx) = support::mpsc_stream::unbounded_channel_stream::<()>(); in no_extra_poll()
Dsync_mpsc.rs381 let (tx, rx) = support::mpsc_stream::unbounded_channel_stream::<i32>(); in send_recv_stream_unbounded()