/external/honggfuzz/examples/linux_kernel_ip/ |
D | linux-kernel-4.10.0.patch | 47 diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c 49 --- a/net/ipv4/icmp.c 50 +++ b/net/ipv4/icmp.c 60 diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c 62 --- a/net/ipv4/ip_input.c 63 +++ b/net/ipv4/ip_input.c 75 diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c 77 --- a/net/ipv4/tcp_input.c 78 +++ b/net/ipv4/tcp_input.c 97 diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c [all …]
|
/external/ltp/testcases/network/stress/multicast/grp-operation/ |
D | mcast-lib.sh | 37 SYSFS_IGMP_MAX_MEMBERSHIPS=$(sysctl -b net.ipv4.igmp_max_memberships) 38 SYSFS_IGMP_MAX_MSF=$(sysctl -b net.ipv4.igmp_max_msf) 39 SYSFS_FORCE_IGMP_VERSION=$(sysctl -b net.ipv4.conf.$(tst_iface).force_igmp_version) 40 SYSFS_ALL_FORCE_IGMP_VERSION=$(sysctl -b net.ipv4.conf.all.force_igmp_version) 45 ROD sysctl -qw net.ipv4.igmp_max_memberships=$igmp_max_memberships 46 ROD sysctl -qw net.ipv4.igmp_max_msf=10 47 ROD sysctl -qw net.ipv4.conf.$(tst_iface).force_igmp_version=0 48 ROD sysctl -qw net.ipv4.conf.all.force_igmp_version=0 77 …[ -n "$SYSFS_IGMP_MAX_MEMBERSHIPS" ] && sysctl -qw net.ipv4.igmp_max_memberships=$SYSFS_IGMP_MAX_M… 78 [ -n "$SYSFS_IGMP_MAX_MSF" ] && sysctl -qw net.ipv4.igmp_max_msf=$SYSFS_IGMP_MAX_MSF [all …]
|
/external/ltp/runtest/ |
D | containers | 28 netns_breakns_ns_exec_ipv4_netlink netns_breakns.sh ns_exec ipv4 netlink 30 netns_breakns_ns_exec_ipv4_ioctl netns_breakns.sh ns_exec ipv4 ioctl 32 netns_breakns_ip_ipv4_netlink netns_breakns.sh ip ipv4 netlink 34 netns_breakns_ip_ipv4_ioctl netns_breakns.sh ip ipv4 ioctl 36 netns_comm_ns_exec_ipv4_netlink netns_comm.sh ns_exec ipv4 netlink 38 netns_comm_ns_exec_ipv4_ioctl netns_comm.sh ns_exec ipv4 ioctl 40 netns_comm_ip_ipv4_netlink netns_comm.sh ip ipv4 netlink 42 netns_comm_ip_ipv4_ioctl netns_comm.sh ip ipv4 ioctl
|
/external/ltp/testcases/network/stress/tcp/uni-basic/ |
D | tcp4-uni-basic01 | 149 sysctl -w net.ipv4.tcp_window_scaling=1 >/dev/null 2>&1 152 sysctl -w net.ipv4.tcp_dsack=1 >/dev/null 2>&1 155 sysctl -w net.ipv4.tcp_sack=1 >/dev/null 2>&1 264 sysctl -w net.ipv4.tcp_window_scaling=1 >/dev/null 270 sysctl -w net.ipv4.tcp_window_scaling=0 >/dev/null 2>&1 275 sysctl -w net.ipv4.tcp_dsack=1 >/dev/null 281 sysctl -w net.ipv4.tcp_dsack=0 >/dev/null 2>&1 286 sysctl -w net.ipv4.tcp_sack=1 >/dev/null 292 sysctl -w net.ipv4.tcp_sack=0 >/dev/null 2>&1
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/impl/ |
D | address.ipp | 29 : type_(ipv4), 36 : type_(ipv4), 81 type_ = ipv4; 97 if (type_ != ipv4) 154 tmp.type_ = ipv4; 175 return (type_ == ipv4) 182 return (type_ == ipv4) 189 return (type_ == ipv4)
|
/external/android-clat/ |
D | config.c | 258 in_addr_t ipv4 = ntohl(ip->s_addr); in config_select_ipv4_address() local 259 in_addr_t first_ipv4 = ipv4; in config_select_ipv4_address() 260 in_addr_t prefix = ipv4 & mask; in config_select_ipv4_address() 265 if (config_is_ipv4_address_free(htonl(ipv4))) { in config_select_ipv4_address() 266 chosen = htonl(ipv4); in config_select_ipv4_address() 269 ipv4 = prefix | ((ipv4 + 1) & ~mask); in config_select_ipv4_address() 270 } while (ipv4 != first_ipv4); in config_select_ipv4_address()
|
D | Android.mk | 4 LOCAL_SRC_FILES:=clatd.c dump.c checksum.c translate.c icmp.c ipv4.c ipv6.c config.c dns64.c loggin… 37 LOCAL_SRC_FILES := clatd_test.cpp checksum.c translate.c icmp.c ipv4.c ipv6.c logging.c config.c tu…
|
/external/libcups/cups/ |
D | http-addrlist.c | 632 memcpy(&(temp->addr.ipv4), current->ai_addr, in httpAddrGetList() 633 sizeof(temp->addr.ipv4)); in httpAddrGetList() 721 first->addr.ipv4.sin_family = AF_INET; in httpAddrGetList() 722 first->addr.ipv4.sin_addr.s_addr = htonl((((((((unsigned)ip[0] << 8) | in httpAddrGetList() 726 first->addr.ipv4.sin_port = htons(portnum); in httpAddrGetList() 760 temp->addr.ipv4.sin_family = AF_INET; in httpAddrGetList() 761 memcpy(&(temp->addr.ipv4.sin_addr), host->h_addr_list[i], in httpAddrGetList() 762 sizeof(temp->addr.ipv4)); in httpAddrGetList() 763 temp->addr.ipv4.sin_port = htons(portnum); in httpAddrGetList() 881 temp->addr.ipv4.sin_family = AF_INET; in httpAddrGetList() [all …]
|
D | http-addr.c | 50 ntohl(addr->ipv4.sin_addr.s_addr) == 0x00000000) in httpAddrAny() 117 return (addr1->ipv4.sin_addr.s_addr == addr2->ipv4.sin_addr.s_addr); in httpAddrEqual() 144 return (sizeof(addr->ipv4)); in httpAddrLength() 303 (ntohl(addr->ipv4.sin_addr.s_addr) & 0xff000000) == 0x7f000000) in httpAddrLocalhost() 410 host = gethostbyaddr((char *)&(addr->ipv4.sin_addr), in httpAddrLookup() 465 return (ntohs(addr->ipv4.sin_port)); in httpAddrPort() 488 addr->ipv4.sin_port = htons(port); in _httpAddrSetPort() 531 temp = ntohl(addr->ipv4.sin_addr.s_addr); in httpAddrString()
|
/external/ltp/testcases/network/stress/multicast/query-flood/ |
D | mcast4-queryfld04 | 157 sysctl -w net.ipv4.igmp_max_memberships=20 >/dev/null 163 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 164 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 165 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
D | mcast4-queryfld02 | 157 sysctl -w net.ipv4.igmp_max_memberships=20 >/dev/null 163 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 164 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 165 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
D | mcast4-queryfld03 | 163 sysctl -w net.ipv4.igmp_max_memberships=20 >/dev/null 169 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 170 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 171 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
D | mcast4-queryfld01 | 154 sysctl -w net.ipv4.igmp_max_memberships=20 >/dev/null 160 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 161 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 162 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
D | mcast4-queryfld05 | 157 sysctl -w net.ipv4.igmp_max_memberships=20 >/dev/null 163 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 164 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 165 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
D | mcast4-queryfld06 | 163 sysctl -w net.ipv4.igmp_max_memberships=20 >/dev/null 169 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 170 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 171 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
/external/ltp/testcases/network/stress/multicast/packet-flood/ |
D | mcast4-pktfld01 | 157 sysctl -w net.ipv4.igmp_max_memberships=20 >/dev/null 163 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 164 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 165 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
D | mcast4-pktfld02 | 160 sysctl -w net.ipv4.igmp_max_memberships=$MCASTNUM_NORMAL >/dev/null 166 sysctl -w net.ipv4.igmp_max_msf=10 >/dev/null 167 sysctl -w net.ipv4.conf.${lhost_ifname}.force_igmp_version=0 >/dev/null 168 sysctl -w net.ipv4.conf.all.force_igmp_version=0 >/dev/null
|
/external/mdnsresponder/mDNSWindows/DNSServiceBrowser/WindowsCE/Sources/ |
D | BrowserDialog.cpp | 208 inEvent->data.resolved->address.u.ipv4.addr.v8[ 0 ], in OnBrowserCallBack() 209 inEvent->data.resolved->address.u.ipv4.addr.v8[ 1 ], in OnBrowserCallBack() 210 inEvent->data.resolved->address.u.ipv4.addr.v8[ 2 ], in OnBrowserCallBack() 211 inEvent->data.resolved->address.u.ipv4.addr.v8[ 3 ], in OnBrowserCallBack() 212 ( inEvent->data.resolved->address.u.ipv4.port.v8[ 0 ] << 8 ) | in OnBrowserCallBack() 213 inEvent->data.resolved->address.u.ipv4.port.v8[ 1 ] ); in OnBrowserCallBack()
|
/external/guava/guava-tests/test/com/google/common/net/ |
D | InetAddressesTest.java | 445 InetAddress ipv4 = InetAddresses.forString(ipv4Str); in test6to4Addresses() local 448 assertEquals(ipv4, InetAddresses.get6to4IPv4Address((Inet6Address) ip)); in test6to4Addresses() 501 InetAddress ipv4 = InetAddresses.forString("1.2.3.4"); in testIsatapAddresses() local 522 assertEquals("checking '" + validIsatapAddresses[i] + "'", ipv4, in testIsatapAddresses() 552 InetAddress ipv4 = InetAddresses.forString("1.2.3.4"); in testGetEmbeddedIPv4ClientAddress() local 553 assertEquals(ipv4, InetAddresses.getEmbeddedIPv4ClientAddress(testIp)); in testGetEmbeddedIPv4ClientAddress() 558 ipv4 = InetAddresses.forString("1.2.3.4"); in testGetEmbeddedIPv4ClientAddress() 559 assertEquals(ipv4, InetAddresses.getEmbeddedIPv4ClientAddress(testIp)); in testGetEmbeddedIPv4ClientAddress() 565 ipv4 = InetAddresses.forString("192.0.2.45"); in testGetEmbeddedIPv4ClientAddress() 566 assertEquals(ipv4, InetAddresses.getEmbeddedIPv4ClientAddress(testIp)); in testGetEmbeddedIPv4ClientAddress()
|
/external/iproute2/ |
D | README.lnstat | 12 (ipv4, ipv6, atm, decnet) 14 (ipv4) 16 (ipv4)
|
/external/ltp/testcases/network/dctcp/ |
D | dctcp01.sh | 33 tst_set_sysctl net.ipv4.tcp_congestion_control $alg safe 39 tst_set_sysctl net.ipv4.tcp_congestion_control $prev_alg
|
/external/perf_data_converter/src/quipper/testdata/ |
D | perf.data.intel_pt-4.14.buildids | 39 089a6a9b25ee8b5518385cecb25762a7054b8d13 /lib/modules/4.14.18/kernel/net/ipv4/netfilter/ipt_MASQUER… 40 f06bf714d7054122e13d626dbfbe6a025dd4d1a3 /lib/modules/4.14.18/kernel/net/ipv4/netfilter/nf_nat_masq… 41 73c652ae2b15513562dbd5fe2dcb24f824b00519 /lib/modules/4.14.18/kernel/net/ipv4/netfilter/iptable_nat… 42 e9b689119e6da2c454a42d8ce0423c8a0fd54aef /lib/modules/4.14.18/kernel/net/ipv4/netfilter/nf_nat_ipv4…
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
D | p2p-action-udhcp.sh | 58 sysctl net.ipv4.ip_forward=1 65 sysctl net.ipv4.ip_forward=0
|
/external/ltp/testcases/network/stress/route/ |
D | route4-redirect | 156 sysctl -w net.ipv4.conf.${lhost_ifname}.accept_redirects=1 >/dev/null 157 sysctl -w net.ipv4.conf.${lhost_ifname}.secure_redirects=0 >/dev/null
|
/external/scapy/scapy/contrib/ |
D | gtp_v2.uts | 169 ie.PDN_type == 1 and ie.ipv4 == '127.0.0.3' 172 ie = IE_PAA(ietype='PAA', length=5, PDN_type='IPv4', ipv4='127.0.0.3') 173 ie.ietype == 79 and ie.PDN_type == 1 and ie.ipv4 == '127.0.0.3' 222 ie.GRE_Key == 4242 and ie.ipv4 == '127.0.0.2' 226 InterfaceType=10, GRE_Key=0x1092, ipv4='127.0.0.2') 227 …ie.ipv4_present == 1 and ie.InterfaceType == 10 and ie.GRE_Key == 0x1092 and ie.ipv4 == '127.0.0.2' 234 …1].ietype == 87 and ie.IE_list[1].ipv4 == '127.0.0.2' and ie.IE_list[2].ietype == 80 and ie.IE_lis…
|