Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 73) sorted by relevance

123

/webrtc/media/src/
H A Dlib.rs85 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 Derror.rs61 fn eq(&self, other: &Self) -> bool { in eq()
62 self.0.kind() == other.0.kind() in eq()
/webrtc/dtls/src/handshake/
H A Dhandshake_message_client_hello.rs34 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 Dhandshake_message_server_hello.rs33 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 Derror.rs56 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 Dmod.rs25 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 Dchandata.rs32 fn eq(&self, other: &Self) -> bool { in eq()
33 self.data == other.data && self.number == other.number in eq()
H A Daddr.rs45 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 Dmod.rs55 fn equal(&self, other: &(dyn Fmtp)) -> bool { in equal()
56 other in equal()
/webrtc/rtp/src/
H A Derror.rs72 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 Derror.rs114 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 Derror.rs47 fn eq(&self, other: &Self) -> bool { in eq()
48 self.0.kind() == other.0.kind() in eq()
/webrtc/ice/src/candidate/
H A Dcandidate_base.rs285 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 Dmod.rs83 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 Derror.rs78 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 Dmod.rs92 fn equal(&self, other: &(dyn Fmtp)) -> bool { in equal()
93 other in equal()
/webrtc/stun/src/
H A Derror.rs82 fn eq(&self, other: &Self) -> bool { in eq()
83 self.0.kind() == other.0.kind() in eq()
/webrtc/rtcp/src/extended_report/
H A Dunknown.rs43 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal()
44 other in equal()
H A Drrt.rs55 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal()
56 other in equal()
H A Dprt.rs70 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal()
71 other in equal()
/webrtc/webrtc/src/rtp_transceiver/
H A Drtp_transceiver_direction.rs84 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 Dmod.rs40 pub fn is_same(&self, other: &Self) -> bool { in is_same()
42 match (self, other) { in is_same()
/webrtc/srtp/src/
H A Derror.rs103 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 Dmod.rs58 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 Dmod.rs60 fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool { in equal()
61 other in equal()

123