| /webrtc/media/src/ |
| H A D | lib.rs | 85 fn eq(&self, other: &Self) -> bool { in eq() 87 if self.data != other.data { in eq() 91 != other.timestamp.elapsed().unwrap().as_secs() in eq() 95 if self.duration != other.duration { in eq() 98 if self.packet_timestamp != other.packet_timestamp { in eq() 101 if self.prev_dropped_packets != other.prev_dropped_packets { in eq() 104 if self.prev_padding_packets != other.prev_padding_packets { in eq()
|
| H A D | error.rs | 61 fn eq(&self, other: &Self) -> bool { in eq() 62 self.0.kind() == other.0.kind() in eq()
|
| /webrtc/dtls/src/handshake/ |
| H A D | handshake_message_client_hello.rs | 34 fn eq(&self, other: &Self) -> bool { in eq() 35 if !(self.version == other.version in eq() 36 && self.random == other.random in eq() 37 && self.cookie == other.cookie in eq() 38 && self.compression_methods == other.compression_methods in eq() 39 && self.extensions == other.extensions in eq() 40 && self.cipher_suites.len() == other.cipher_suites.len()) in eq() 46 if self.cipher_suites[i] != other.cipher_suites[i] { in eq()
|
| H A D | handshake_message_server_hello.rs | 33 fn eq(&self, other: &Self) -> bool { in eq() 34 self.version == other.version in eq() 35 && self.random == other.random in eq() 36 && self.compression_method == other.compression_method in eq() 37 && self.extensions == other.extensions in eq() 38 && self.cipher_suite == other.cipher_suite in eq()
|
| /webrtc/data/src/ |
| H A D | error.rs | 56 fn eq(&self, other: &util::Error) -> bool { in eq() 57 if let Some(down) = other.downcast_ref::<Error>() { in eq() 65 fn eq(&self, other: &Error) -> bool { in eq() 67 return other == down; in eq()
|
| /webrtc/webrtc/src/rtp_transceiver/fmtp/ |
| H A D | mod.rs | 25 fn equal(&self, other: &(dyn Fmtp)) -> bool; in equal() 30 fn eq(&self, other: &Self) -> bool { in eq() 31 self.equal(other) in eq()
|
| /webrtc/turn/src/proto/ |
| H A D | chandata.rs | 32 fn eq(&self, other: &Self) -> bool { in eq() 33 self.data == other.data && self.number == other.number in eq()
|
| H A D | addr.rs | 45 pub fn equal_ip(&self, other: &Addr) -> bool { in equal_ip() 46 self.ip == other.ip in equal_ip()
|
| /webrtc/webrtc/src/rtp_transceiver/fmtp/generic/ |
| H A D | mod.rs | 55 fn equal(&self, other: &(dyn Fmtp)) -> bool { in equal() 56 other in equal()
|
| /webrtc/rtp/src/ |
| H A D | error.rs | 72 fn eq(&self, other: &util::Error) -> bool { in eq() 73 if let Some(down) = other.downcast_ref::<Error>() { in eq()
|
| /webrtc/rtcp/src/ |
| H A D | error.rs | 114 fn eq(&self, other: &util::Error) -> bool { in eq() 115 if let Some(down) = other.downcast_ref::<Error>() { in eq()
|
| /webrtc/sdp/src/ |
| H A D | error.rs | 47 fn eq(&self, other: &Self) -> bool { in eq() 48 self.0.kind() == other.0.kind() in eq()
|
| /webrtc/ice/src/candidate/ |
| H A D | candidate_base.rs | 285 fn equal(&self, other: &dyn Candidate) -> bool { in equal() 286 self.network_type() == other.network_type() in equal() 287 && self.candidate_type() == other.candidate_type() in equal() 288 && self.address() == other.address() in equal() 289 && self.port() == other.port() in equal() 290 && self.tcp_type() == other.tcp_type() in equal() 291 && self.related_address() == other.related_address() in equal()
|
| H A D | mod.rs | 83 fn equal(&self, other: &dyn Candidate) -> bool; in equal() 279 fn eq(&self, other: &Self) -> bool { in eq() 280 self.local.equal(&*other.local) && self.remote.equal(&*other.remote) in eq()
|
| /webrtc/mdns/src/ |
| H A D | error.rs | 78 fn eq(&self, other: &Self) -> bool { in eq() 79 self.0.kind() == other.0.kind() in eq()
|
| /webrtc/webrtc/src/rtp_transceiver/fmtp/h264/ |
| H A D | mod.rs | 92 fn equal(&self, other: &(dyn Fmtp)) -> bool { in equal() 93 other in equal()
|
| /webrtc/stun/src/ |
| H A D | error.rs | 82 fn eq(&self, other: &Self) -> bool { in eq() 83 self.0.kind() == other.0.kind() in eq()
|
| /webrtc/rtcp/src/extended_report/ |
| H A D | unknown.rs | 43 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal() 44 other in equal()
|
| H A D | rrt.rs | 55 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal() 56 other in equal()
|
| H A D | prt.rs | 70 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal() 71 other in equal()
|
| /webrtc/webrtc/src/rtp_transceiver/ |
| H A D | rtp_transceiver_direction.rs | 84 pub fn intersect(&self, other: RTCRtpTransceiverDirection) -> RTCRtpTransceiverDirection { in intersect() 86 self.has_send() && other.has_send(), in intersect() 87 self.has_recv() && other.has_recv(), in intersect()
|
| /webrtc/rtp/src/extension/ |
| H A D | mod.rs | 40 pub fn is_same(&self, other: &Self) -> bool { in is_same() 42 match (self, other) { in is_same()
|
| /webrtc/srtp/src/ |
| H A D | error.rs | 103 fn eq(&self, other: &Self) -> bool { in eq() 104 self.0.kind() == other.0.kind() in eq()
|
| /webrtc/rtcp/src/payload_feedbacks/picture_loss_indication/ |
| H A D | mod.rs | 58 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal() 59 other in equal()
|
| /webrtc/rtcp/src/transport_feedbacks/rapid_resynchronization_request/ |
| H A D | mod.rs | 60 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal() 61 other in equal()
|