Home
last modified time | relevance | path

Searched refs:copied (Results 1 – 7 of 7) sorted by relevance

/webrtc/util/src/buffer/
H A Dmod.rs211 let mut copied = count; in read() localVariable
212 if copied > packet.len() { in read()
213 copied = packet.len(); in read()
217 if b.head + copied < b.data.len() { in read()
218 packet[..copied].copy_from_slice(&b.data[b.head..b.head + copied]); in read()
222 packet[k..copied].copy_from_slice(&b.data[..copied - k]); in read()
240 if copied < count { in read()
243 return Ok(copied); in read()
/webrtc/examples/examples/broadcast/
H A DREADME.md29 * Run `curl localhost:8080/sdp -d "$BROWSER_OFFER"`. `$BROWSER_OFFER` is the value you copied in th…
38 * Run `curl localhost:8080/sdp -d "$BROWSER_OFFER"`. `$BROWSER_OFFER` is the value you copied in th…
/webrtc/examples/examples/ortc/
H A DREADME.md24 Run the second client. This should be launched with the message you copied in the previous step as …
/webrtc/dtls/src/crypto/
H A Dpadding.rs22 let padding_length = data.last().copied().unwrap_or(1) as usize; in unpad()
/webrtc/turn/src/allocation/
H A Dallocation_manager.rs188 reservations.get(reservation_token).copied() in get_reservation()
/webrtc/ice/src/udp_mux/
H A Dudp_mux_conn.rs240 addresses.iter().copied().collect() in get_addresses()
/webrtc/ice/src/agent/
H A Dagent_gather.rs416 .or_else(|| local_ips.iter().copied().next()); in gather_candidates_local_udp_mux()