Home
last modified time | relevance | path

Searched refs:source_ip (Results 1 – 10 of 10) sorted by relevance

/external/cronet/net/third_party/quiche/src/quiche/quic/masque/
Dmasque_encapsulated_client_session.cc86 absl::string_view source_ip; in ProcessIpPacket() local
87 if (!reader.ReadStringPiece(&source_ip, 16)) { in ProcessIpPacket()
93 server_ip.FromPackedString(source_ip.data(), source_ip.length()); in ProcessIpPacket()
133 absl::string_view source_ip; in ProcessIpPacket() local
134 if (!reader.ReadStringPiece(&source_ip, 4)) { in ProcessIpPacket()
140 server_ip.FromPackedString(source_ip.data(), source_ip.length()); in ProcessIpPacket()
/external/cronet/net/third_party/quiche/src/quiche/quic/qbone/bonnet/
Dicmp_reachable.cc148 QuicIpAddress source_ip; in OnEvent() local
149 if (!source_ip.FromPackedString( in OnEvent()
154 source = source_ip.ToString(); in OnEvent()
/external/autotest/client/cros/networking/
Dshill_xmlrpc_server.py534 def add_wake_packet_source(self, wifi_interface, source_ip): argument
547 device_object.AddWakeOnPacketConnection(source_ip)
552 def remove_wake_packet_source(self, wifi_interface, source_ip): argument
565 device_object.RemoveWakeOnPacketConnection(source_ip)
/external/webrtc/test/network/
Dnetwork_emulation.cc189 void EmulatedNetworkStatsBuilder::OnPacketDropped(rtc::IPAddress source_ip, in OnPacketDropped() argument
192 auto it = incoming_stats_per_source_.find(source_ip); in OnPacketDropped()
195 .emplace(source_ip, in OnPacketDropped()
205 rtc::IPAddress source_ip, in OnPacketReceived() argument
208 auto it = incoming_stats_per_source_.find(source_ip); in OnPacketReceived()
211 .emplace(source_ip, in OnPacketReceived()
Dnetwork_emulation.h102 void OnPacketDropped(rtc::IPAddress source_ip, DataSize packet_size);
105 rtc::IPAddress source_ip,
/external/autotest/server/cros/network/
Dwifi_client.py757 def add_wake_packet_source(self, source_ip): argument
766 self.wifi_if, source_ip)
769 def remove_wake_packet_source(self, source_ip): argument
778 self.wifi_if, source_ip)
/external/rust/crates/grpcio-sys/grpc/src/core/ext/xds/
Dxds_server_config_fetcher.cc127 const grpc_resolved_address* source_ip, absl::string_view port) { in FindFilterChainDataForSourceIp() argument
142 if (grpc_sockaddr_match_subnet(source_ip, &entry.prefix_range->address, in FindFilterChainDataForSourceIp()
Dxds_api.cc645 for (const auto& source_ip : in ToString() local
647 for (const auto& source_port_pair : source_ip.ports_map) { in ToString()
656 if (source_ip.prefix_range.has_value()) { in ToString()
658 *source_ip.prefix_range); in ToString()
/external/webrtc/test/
Drtp_file_reader.cc358 uint32_t source_ip; member
523 TRY_PCAP(Read(&marker->source_ip, true)); in ReadXxpIpHeader()
/external/webrtc/test/pc/e2e/
Dstats_based_network_quality_metrics_reporter.cc252 const rtc::IPAddress& source_ip = income_stats_entry.first; in GetStats() local
253 auto it = ip_to_peer_.find(source_ip); in GetStats()