Home
last modified time | relevance | path

Searched refs:c1 (Results 1 – 5 of 5) sorted by relevance

/webrtc/ice/src/control/
H A Dcontrol_test.rs20 let mut c1 = AttrControlled::default(); in test_controlled_get_from() localVariable
21 c1.get_from(&m1)?; in test_controlled_get_from()
23 assert_eq!(c1, c, "not equal"); in test_controlled_get_from()
57 let mut c1 = AttrControlling::default(); in test_controlling_get_from() localVariable
58 c1.get_from(&m1)?; in test_controlling_get_from()
60 assert_eq!(c1, c, "not equal"); in test_controlling_get_from()
110 let mut c1 = AttrControl::default(); in test_control_get_from() localVariable
111 c1.get_from(&m1)?; in test_control_get_from()
113 assert_eq!(c1, c, "not equal"); in test_control_get_from()
149 c1.get_from(&m1)?; in test_control_get_from()
[all …]
/webrtc/util/src/conn/
H A Dconn_pipe_test.rs6 let (c1, c2) = pipe(); in test_pipe()
8 let n = c1.send(&b1).await?; in test_pipe()
21 let n = c1.recv(&mut b1).await?; in test_pipe()
23 let n = c1.recv(&mut b1).await?; in test_pipe()
/webrtc/turn/src/client/
H A Dclient_test.rs77 let c1 = create_listening_test_client(0).await?; in test_client_with_stun_send_binding_request_to_parallel() localVariable
78 let c2 = c1.clone(); in test_client_with_stun_send_binding_request_to_parallel()
95 let resp = c1.send_binding_request_to(&to.to_string()).await?; in test_client_with_stun_send_binding_request_to_parallel()
100 c1.close().await?; in test_client_with_stun_send_binding_request_to_parallel()
/webrtc/mdns/src/message/
H A Dname.rs164 let c1 = msg[curr_off]; in unpack_compressed() localVariable
174 curr_off = ((c ^ 0xC0) as usize) << 8 | (c1 as usize); in unpack_compressed()
/webrtc/stun/src/
H A Dmessage.rs601 let c1 = (c & C1BIT) << CLASS_C1SHIFT; in value() localVariable
602 let class = c0 + c1; in value()
612 let c1 = (value >> CLASS_C1SHIFT) & C1BIT; in read_value() localVariable
613 let class = c0 + c1; in read_value()