| /external/openthread/tests/scripts/expect/ |
| D | cli-diags.exp | 37 send "diag start\n" 40 send "diag channel 11\n" 43 send "diag stats clear\n" 48 send "diag start\n" 51 send "diag channel 11\n" 54 send "diag stats clear\n" 57 send "diag send 10 100\n" 60 send "diag stats\n" 71 send "diag send async 10 100\n" 76 send "diag stats\n" [all …]
|
| D | cli-misc.exp | 37 send "leaderdata\n" 45 send "help\n" 48 send "bufferinfo\n" 51 send "ccathreshold -62\n" 53 send "ccathreshold\n" 57 send "parent\n" 60 send "delaytimermin 1\n" 62 send "delaytimermin\n" 65 send "delaytimermin 1 2\n" 66 send "counters mac 1\n" [all …]
|
| D | cli-dataset.exp | 36 send "dataset active\n" 48 send "dataset pending\n" 50 send "dataset init active\n" 52 send "dataset activetimestamp 100\n" 54 send "dataset activetimestamp\n" 58 send "dataset channel 18\n" 60 send "dataset channel\n" 64 send "dataset channel 11\n" 66 send "dataset channel\n" 70 send "dataset channelmask 0x03fff800\n" [all …]
|
| D | v1_2-linkmetricsmgr.exp | 36 send "linkmetricsmgr enable\n" 38 send "linkmetricsmgr\n" 48 send "ping $addr\n" 50 send "linkmetricsmgr show\n" 56 send "linkmetricsmgr disable\n" 58 send "linkmetricsmgr\n" 61 send "linkmetricsmgr show\n" 63 send "linkmetricsmgr xxx\n" 67 send "linkmetricsmgr enable\n" 69 send "linkmetricsmgr enable\n" [all …]
|
| D | cli-tcp-tls.exp | 39 send "tcp init tls\n" 43 send "tcp init tls\n" 46 send "tcp listen :: 30000\n" 48 send "tcp stoplistening\n" 52 send "tcp connect $addr_2 30000\n" 57 send "tcp listen :: 30000\n" 62 send "tcp bind $addr_1 25000\n" 64 send "tcp connect $addr_2 30000\n" 75 send "tcp send hello\n" 81 send "tcp send world\n" [all …]
|
| D | cli-macfilter.exp | 34 send "macfilter\n" 39 send "macfilter addr add aabbccddeeff0011\n" 42 send "macfilter addr\n" 47 send "macfilter addr allowlist\n" 50 send "macfilter addr\n" 55 send "macfilter\n" 61 send "macfilter addr add 2233445566778899\n" 64 send "macfilter addr remove aabbccddeeff0011\n" 67 send "macfilter addr denylist\n" 70 send "macfilter addr\n" [all …]
|
| D | cli-discerner.exp | 38 send "netdata typo check $discerner\n" 40 send "netdata steeringdata typo $discerner\n" 42 send "netdata steeringdata check $discerner/0\n" 44 send "netdata steeringdata check $discerner\n" 46 send "commissioner start\n" 49 send "commissioner joiner add 1/0 $pskd\n" 51 send "netdata steeringdata check 0xabc/12\n" 53 send "commissioner joiner add $discerner $pskd\n" 56 send "commissioner joiner remove $discerner\n" 59 send "commissioner joiner add $discerner $pskd\n" [all …]
|
| D | cli-commissioner.exp | 37 send "commissioner joiner add $eui64 J01NME\n" 40 send "commissioner joiner remove $eui64\n" 45 send "commissioner stop\n" 49 send "commissioner state\n" 52 send "commissioner id\n" 55 send "commissioner id 12345678901234567890123456789012345678901234567890123456789012345\n" 57 send "commissioner id 1234567890123456789012345678901234567890123456789012345678901234\n" 59 send "commissioner id customId\n" 61 send "commissioner id\n" 64 send "commissioner start\n" [all …]
|
| D | cli-udp.exp | 36 send "udp open\n" 38 send "udp bind :: 11001\n" 44 send "udp open\n" 46 send "udp bind :: 11002\n" 48 send "udp connect $addr_2 11001\n" 50 send "udp send -s 10\n" 52 send "udp send -x a68656c6c6f\n" 54 send "udp send -t there\n" 64 send "udp help\n" 66 send "udp connect something_invalid\n" [all …]
|
| /external/rust/android-crates-io/crates/tokio/tests/ |
| D | async_send_sync.rs | 15 // Send: Yes, Sync: Yes 20 // Send: Yes, Sync: No 27 // Send: No, Sync: No 35 type BoxFutureSync<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + Sync>>; 37 type BoxFutureSend<T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send>>; 42 type BoxAsyncRead = std::pin::Pin<Box<dyn tokio::io::AsyncBufRead + Send + Sync>>; 44 type BoxAsyncSeek = std::pin::Pin<Box<dyn tokio::io::AsyncSeek + Send + Sync>>; 46 type BoxAsyncWrite = std::pin::Pin<Box<dyn tokio::io::AsyncWrite + Send + Sync>>; 49 fn require_send<T: Send>(_t: &T) {} in require_send() 63 impl<T: ?Sized + Send> AmbiguousIfSend<Invalid> for T {} [all …]
|
| /external/rust/android-crates-io/crates/tokio-util/tests/ |
| D | mpsc.rs | 12 let (send, mut recv) = channel(3); in simple() 13 let mut send = PollSender::new(send); in simple() localVariable 16 let mut reserve = spawn(poll_fn(|cx| send.poll_reserve(cx))); in simple() 18 send.send_item(i).unwrap(); in simple() 21 let mut reserve = spawn(poll_fn(|cx| send.poll_reserve(cx))); in simple() 30 send.send_item(42).unwrap(); in simple() 37 let (send, mut recv) = channel(3); in simple_ref() 38 let mut send = PollSender::new(send); in simple_ref() localVariable 41 let mut reserve = spawn(poll_fn(|cx| send.poll_reserve(cx))); in simple_ref() 43 send.send_item(vi).unwrap(); in simple_ref() [all …]
|
| /external/mesa3d/src/intel/compiler/tests/gen9/ |
| D | send.asm | 1 send(8) null<1>F g123<8,8,1>F 0x8a080017 3 send(8) null<1>F g13<8,8,1>F 0x12080007 5 send(8) null<1>F g123<8,8,1>F 0x8a080027 7 send(16) g9<1>UD g2<0,1,0>UD 0x02280300 9 send(8) null<1>F g119<8,8,1>F 0x92080017 11 send(16) null<1>UW g127<8,8,1>UW 0x82000010 13 send(8) g124<1>UW g13<8,8,1>UD 0x0643a001 15 send(16) g120<1>UW g23<8,8,1>UD 0x0c85a001 17 send(8) g10<1>UD g2<8,8,1>UD 0x02480028 19 send(8) null<1>F g8<8,8,1>F 0x140a0017 [all …]
|
| /external/mesa3d/src/intel/compiler/elk/tests/gen7/ |
| D | send.asm | 1 send(8) null<1>F g113<4>F 0x8608c000 3 send(8) null<1>F g113<4>F 0x8a08c000 5 send(8) g2<1>UW g8<8,8,1>UD 0x08427001 7 send(16) g2<1>UW g14<8,8,1>UD 0x10847001 9 send(8) g50<1>D g51<4>UD 0x02194013 11 send(8) null<1>F g12<4>UD 0x04094019 13 send(8) null<1>F g13<4>UD 0x04094011 15 send(8) null<1>F g12<4>UD 0x04094009 17 send(8) null<1>F g12<4>UD 0x04094001 19 send(8) g14<1>D g15<4>UD 0x0219400b [all …]
|
| /external/mesa3d/src/intel/compiler/elk/tests/gen8/ |
| D | send.asm | 1 send(8) null<1>F g123<8,8,1>F 0x8a080017 3 send(8) null<1>F g13<8,8,1>F 0x12080007 5 send(8) null<1>F g123<8,8,1>F 0x8a080027 7 send(16) g9<1>UD g2<8,8,1>UD 0x02280300 9 send(8) null<1>F g119<8,8,1>F 0x92080017 11 send(8) null<1>UW g3<8,8,1>UD 0x0e0b5001 13 send(8) null<1>UW g1<8,8,1>UD 0x0e0b6001 15 send(16) null<1>UW g127<8,8,1>UW 0x82000010 17 send(8) g124<1>UW g13<8,8,1>UD 0x08427001 19 send(16) g120<1>UW g10<8,8,1>UD 0x10847001 [all …]
|
| /external/mesa3d/src/intel/compiler/elk/tests/gen7.5/ |
| D | send.asm | 1 send(8) null<1>F g113<4>F 0x8a08c000 3 send(8) null<1>F g113<4>F 0x8608c000 5 send(8) g124<1>UW g13<8,8,1>UD 0x08427001 7 send(16) g120<1>UW g10<8,8,1>UD 0x10847001 9 send(8) g50<1>D g51<4>UD 0x02194013 11 send(8) null<1>F g12<4>UD 0x04094019 13 send(8) null<1>F g13<4>UD 0x04094011 15 send(8) null<1>F g12<4>UD 0x04094009 17 send(8) null<1>F g12<4>UD 0x04094001 19 send(8) g14<1>D g15<4>UD 0x0219400b [all …]
|
| /external/mesa3d/src/intel/compiler/elk/tests/gen6/ |
| D | send.asm | 1 send(8) null<1>F m1<4>F 0x8608c400 3 send(8) null<1>F m1<4>F 0x8a08c400 5 send(8) g2<1>UW m2<8,8,1>F 0x08417001 7 send(16) g2<1>UW m2<8,8,1>F 0x10827001 9 send(8) g0<1>F m21<4>F 0x060920ff 11 send(8) g41<1>F m22<4>F 0x041840ff 13 send(8) null<1>F m1<4>F 0x8e08c400 15 send(8) g2<1>UW m1<8,8,1>F 0x16494001 17 send(8) g2<1>UW m1<8,8,1>F 0x0e494001 19 send(8) g3<1>UW m1<8,8,1>F 0x0e496001 [all …]
|
| /external/rust/android-crates-io/crates/futures/tests/ |
| D | auto_traits.rs | 4 //! Assert Send/Sync/Unpin for all public types. 18 type SendFuture<T = *const ()> = Pin<Box<dyn Future<Output = T> + Send>>; 22 type SendSyncFuture<T = *const ()> = Pin<Box<dyn Future<Output = T> + Send + Sync>>; 37 type SendStream<T = *const ()> = Pin<Box<dyn Stream<Item = T> + Send>>; 41 type SendSyncStream<T = *const ()> = Pin<Box<dyn Stream<Item = T> + Send + Sync>>; 55 type SendSink<T = *const (), E = *const ()> = Pin<Box<dyn Sink<T, Error = E> + Send>>; 75 /// Assert Send/Sync/Unpin for all public types in `futures::channel`. 80 assert_impl!(mpsc::Receiver<()>: Send); 81 assert_not_impl!(mpsc::Receiver<*const ()>: Send); 86 assert_impl!(mpsc::SendError: Send); [all …]
|
| D | future_basic_combinators.rs | 13 tx1.send(x).unwrap(); // Send 1 in basic_future_combinators() 14 tx1.send(2).unwrap(); // Send 2 in basic_future_combinators() 18 tx2.send(x).unwrap(); // Send 3 in basic_future_combinators() 19 tx2.send(4).unwrap(); // Send 4 in basic_future_combinators() 23 tx3.send(x).unwrap(); // Send 5 in basic_future_combinators() 49 tx1.send(x).unwrap(); // Send 1 in basic_try_future_combinators() 50 tx1.send(2).unwrap(); // Send 2 in basic_try_future_combinators() 54 tx2.send(x).unwrap(); // Should not run in basic_try_future_combinators() 55 tx2.send(-1).unwrap(); in basic_try_future_combinators() 59 tx3.send(x).unwrap(); // Send 3 in basic_try_future_combinators() [all …]
|
| /external/mesa3d/src/intel/compiler/elk/tests/gen5/ |
| D | send.asm | 1 send(8) 2 g2<1>F g2<8,8,1>F 0x02100001 3 send(8) 1 null<1>UW g0<8,8,1>UW 0x8c084c00 5 send(16) 2 g12<1>F g10<8,8,1>F 0x02100001 7 send(16) 1 null<1>UW g0<8,8,1>UW 0x94084800 9 send(8) 1 null<1>F g0<4>F 0x8a08c400 11 send(8) 2 g2<1>UW null<8,8,1>F 0x06410001 13 send(16) 2 g4<1>UW null<8,8,1>F 0x0c820001 15 send(8) 2 g2<1>UW null<8,8,1>F 0x04410001 17 send(16) 2 g4<1>UW null<8,8,1>F 0x08820001 19 send(8) 14 g3<1>UD g0<4>F 0x04181000 [all …]
|
| /external/mesa3d/src/intel/compiler/elk/tests/gen4/ |
| D | send.asm | 1 send(8) 2 g12<1>F g10<8,8,1>F 0x01110001 3 send(8) 2 g13<1>F g11<8,8,1>F 0x01110001 5 send(16) 1 null<1>UW g0<8,8,1>UW 0x85a04800 7 send(8) 1 null<1>F g0<4>F 0x8650c400 9 send(8) 1 null<1>F g0<4>F 0x8640c400 11 send(8) 13 g0<1>F g0<4>F 0x053190ff 13 send(8) 14 g10<1>F g0<4>F 0x042150ff 15 send(8) 1 null<1>F g0<4>F 0x8680c400 17 send(16) 1 g4<1>UW g0<8,8,1>UW 0x02780001 19 send(16) 1 g4<1>UW g0<8,8,1>UW 0x02580001 [all …]
|
| /external/mesa3d/src/intel/compiler/elk/tests/gen4.5/ |
| D | send.asm | 1 send(16) 2 g12<1>F g10<8,8,1>F 0x01110001 3 send(16) 1 null<1>UW g0<8,8,1>UW 0x85a04800 5 send(8) 1 g8<1>.wF g6<4>.wF 0x01110001 7 send(8) 1 null<1>F g0<4>F 0x8650c400 9 send(8) 1 null<1>F g0<4>F 0x8640c400 11 send(8) 13 g0<1>F g0<4>F 0x053190ff 13 send(8) 14 g9<1>F g0<4>F 0x042150ff 15 send(8) 1 null<1>F g0<4>F 0x8680c400 17 send(16) 1 g4<1>UW g0<8,8,1>UW 0x02780001 19 send(16) 1 g4<1>UW g0<8,8,1>UW 0x02580001 [all …]
|
| /external/openthread/include/openthread/ |
| D | tcp_ext.h | 54 * Represents a circular send buffer for use with a TCP endpoint. 56 * Using a circular send buffer is optional. Applications can use a TCP 57 * endpoint to send data by managing otLinkedBuffers directly. However, some 58 * applications may find it more convenient to have a circular send buffer; 60 * circular send buffer to a TCP endpoint and send out data on that TCP 61 * endpoint, relying on the circular send buffer to manage the underlying 71 * data to the send buffer. 74 * when space becomes available in the circular send buffer. On an 80 * management of otLinkedBuffers is handled by the circular send buffer. 83 * should only interact with it via the TCP Circular Send Buffer API functions [all …]
|
| /external/mesa3d/src/gallium/drivers/nouveau/nvc0/mme/ |
| D | com9097.mme | 16 send (extrshl $r3 $r2 0x1 0x0) 37 send (extrinsrt 0x0 $r1 0x0 0x1 0x0) 38 send (extrinsrt 0x0 $r1 0x1 0x1 0x0) 39 send (extrinsrt 0x0 $r1 0x2 0x1 0x0) 40 send (extrinsrt 0x0 $r1 0x3 0x1 0x0) 41 send (extrinsrt 0x0 $r1 0x4 0x1 0x0) 42 send (extrinsrt 0x0 $r1 0x5 0x1 0x0) 43 exit send (extrinsrt 0x0 $r1 0x6 0x1 0x0) 44 send (extrinsrt 0x0 $r1 0x7 0x1 0x0) 70 send $r4 [all …]
|
| /external/python/cpython3/Lib/test/ |
| D | test__interpchannels.py | 134 if self.end not in ('same', 'opposite', 'send', 'recv'): 137 if self.end not in ('both', 'same', 'opposite', 'send', 'recv'): 148 return 'recv' if end == 'send' else 'send' 215 if end == 'send': 216 _channels.send(cid, b'spam', blocking=False) 233 if end in ('recv', 'send'): 241 if end in ('recv', 'send'): 276 cid = _channels._channel_id(10, send=True, force=True) 277 self.assertEqual(cid.end, 'send') 279 cid = _channels._channel_id(10, send=True, recv=False, force=True) [all …]
|
| /external/bc/tests/ |
| D | history.py | 87 # Send data to a child. This makes sure the buffers are empty first. 88 # @param child The child to send data to. 89 # @param data The data to send. 90 def send(child, data): function 92 child.send(data) 110 send(child, "\n") 119 send(child, c) 156 send(child, utf8_stress_strs[idx]) 157 send(child, "\n") 160 send(child, "quit") [all …]
|