HomeSort by relevance Sort by last modified time
    Searched refs:udp (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/syslinux/gpxe/src/net/
udp.c 12 #include <gpxe/udp.h>
16 * UDP protocol
22 * A UDP connection
28 /** List of UDP connections */
41 * List of registered UDP connections
50 * Bind UDP connection to local port
52 * @v udp UDP connection
55 * Opens the UDP connection and binds to the specified local port. If
58 static int udp_bind ( struct udp_connection *udp ) {
105 struct udp_connection *udp; local
244 struct udp_connection *udp; local
273 struct udp_connection *udp; local
360 struct udp_connection *udp = local
376 struct udp_connection *udp = local
401 struct udp_connection *udp = local
    [all...]
  /external/syslinux/efi/
udp.c 14 * This UDP binding is configured to operate in promiscuous mode. It is
22 * Try to configure this UDP socket
24 * @param:udp, the EFI_UDP4 socket to configure
31 EFI_STATUS core_udp_configure(EFI_UDP4 *udp, EFI_UDP4_CONFIG_DATA *udata,
40 status = uefi_call_wrapper(udp->Configure, 2, udp, udata);
69 EFI_UDP4 *udp; local
81 udp = (EFI_UDP4 *)udp_reader->this;
85 status = core_udp_configure(udp, &udata, L"core_udp_open");
96 status = uefi_call_wrapper(udp->GetModeData, 5, udp
144 EFI_UDP4 *udp; local
174 EFI_UDP4 *udp; local
216 EFI_UDP4 *udp; local
290 EFI_UDP4 *udp = (EFI_UDP4 *)b->this; local
352 EFI_UDP4 *udp; local
    [all...]
  /external/ltp/testcases/network/stress/udp/multi-diffip/
Makefile 2 # network/stress/udp/multi-diffip testcases Makefile.
27 INSTALL_TARGETS := udp*
  /external/ltp/testcases/network/stress/udp/multi-diffnic/
Makefile 2 # network/stress/udp/multi-diffnic testcases Makefile.
27 INSTALL_TARGETS := udp*
  /external/ltp/testcases/network/stress/udp/multi-diffport/
Makefile 2 # network/stress/udp/multi-diffport testcases Makefile.
27 INSTALL_TARGETS := udp*
  /external/ltp/testcases/network/stress/udp/uni-basic/
Makefile 2 # network/stress/udp/uni-basic testcases Makefile.
27 INSTALL_TARGETS := udp*
  /system/core/libnetutils/
packet.c 26 #include <netinet/udp.h>
93 struct udphdr udp; local
103 ip.tot_len = htons(sizeof(ip) + sizeof(udp) + size);
113 udp.source = htons(sport);
114 udp.dest = htons(dport);
115 udp.len = htons(sizeof(udp) + size);
116 udp.check = 0;
123 temp = udp.len;
126 /* Add in the checksum for the udp header *
162 struct udphdr udp; member in struct:dhcp_packet
    [all...]
  /bionic/libc/include/netinet/
udp.h 35 #include <linux/udp.h>
  /external/iproute2/include/libiptc/
ipt_kernel_headers.h 12 #include <netinet/udp.h>
  /external/iptables/include/libiptc/
ipt_kernel_headers.h 12 #include <netinet/udp.h>
  /external/ltp/testcases/network/stress/udp/
udp_ipsec_vti.sh 29 tst_netload -H $ip_rmt_tun -T udp -n $p -N $p \
udp_ipsec.sh 38 tst_netload -H $(tst_ipaddr rhost) -T udp -n $p -N $p \
  /device/generic/goldfish/dhcp/common/
socket.cpp 25 #include <netinet/udp.h>
33 // used for checksum calculations for IP and UDP.
59 // Finalize the IP or UDP |checksum| by inverting and truncating it.
173 struct udphdr udp; local
178 ip.tot_len = htons(sizeof(ip) + sizeof(udp) + message.size());
188 udp.source = htons(sourcePort);
189 udp.dest = htons(destinationPort);
190 udp.len = htons(sizeof(udp) + message.size());
191 udp.check = 0
271 struct udphdr udp; local
    [all...]
  /prebuilts/go/darwin-x86/src/net/
server_test.go 211 {snet: "udp", saddr: ":0", tnet: "udp", taddr: "127.0.0.1"},
212 {snet: "udp", saddr: "0.0.0.0:0", tnet: "udp", taddr: "127.0.0.1"},
213 {snet: "udp", saddr: "[::ffff:0.0.0.0]:0", tnet: "udp", taddr: "127.0.0.1"},
214 {snet: "udp", saddr: "[::]:0", tnet: "udp", taddr: "::1"},
216 {snet: "udp", saddr: ":0", tnet: "udp", taddr: "::1"}
    [all...]
  /prebuilts/go/linux-x86/src/net/
server_test.go 211 {snet: "udp", saddr: ":0", tnet: "udp", taddr: "127.0.0.1"},
212 {snet: "udp", saddr: "0.0.0.0:0", tnet: "udp", taddr: "127.0.0.1"},
213 {snet: "udp", saddr: "[::ffff:0.0.0.0]:0", tnet: "udp", taddr: "127.0.0.1"},
214 {snet: "udp", saddr: "[::]:0", tnet: "udp", taddr: "::1"},
216 {snet: "udp", saddr: ":0", tnet: "udp", taddr: "::1"}
    [all...]
  /external/android-clat/
dump.h 23 void dump_udp(const struct udphdr *udp, const struct iphdr *ip,
31 void dump_udp6(const struct udphdr *udp, const struct ip6_hdr *ip6,
clatd_microbenchmark.c 39 #include <netinet/udp.h>
89 struct udphdr udp = { local
92 .len = htons(len + sizeof(udp)),
98 .tot_len = htons(len + sizeof(ip) + sizeof(udp)),
109 { &udp, sizeof(udp) }, // Transport header
119 sum = ipv4_pseudo_header_checksum(&ip, ntohs(udp.len));
120 sum = ip_checksum_add(sum, &udp, sizeof(udp));
122 udp.check = ip_checksum_finish(sum)
    [all...]
dump.c 26 #include <netinet/udp.h>
132 /* print udp header */
133 void dump_udp_generic(const struct udphdr *udp, uint32_t temp_checksum,
137 temp_checksum = ip_checksum_add(temp_checksum, udp, sizeof(struct udphdr));
141 printf("UDP\n");
142 printf("source = %x\n",ntohs(udp->source));
143 printf("dest = %x\n",ntohs(udp->dest));
144 printf("len = %x\n",ntohs(udp->len));
145 printf("check = %x (mine %x)\n",udp->check,my_checksum);
148 /* print ipv4/udp header *
    [all...]
  /external/iptables/include/linux/netfilter/
nf_conntrack_tuple_common.h 22 } udp; member in union:nf_conntrack_man_proto
  /external/ltp/testcases/network/rpc/basic_tests/rpcinfo/
rpcinfo01 37 # Create file with 1 tcp and 1 udp line. Use for variable assignments.
39 rpcinfo -p $(tst_ipaddr) | grep udp | sed -n 2p >> rpc_out
48 UPNUM=`grep udp rpc_out | awk '{print $1}'`
49 UVNUM=`grep udp rpc_out | awk '{print $2}'`
50 UDPNAME=`grep udp rpc_out | awk '{print $5}'`
  /bionic/libc/kernel/uapi/linux/netfilter/
nf_conntrack_tuple_common.h 36 } udp; member in union:nf_conntrack_man_proto
  /cts/hostsidetests/incident/src/com/android/server/cts/
UsbIncidentTest.java 81 for (UsbDeviceProto udp : uhmp.getDevicesList()) {
82 verifyUsbDeviceProto(udp, filterLevel);
86 private static void verifyUsbDeviceProto(UsbDeviceProto udp, final int filterLevel) throws Exception {
88 assertTrue(udp.getSerialNumber().isEmpty());
  /external/iptables/extensions/
libxt_udp.c 16 "udp match options:\n"
68 if ((service = getservbyport(htons(port), "udp")))
108 const struct xt_udp *udp = (struct xt_udp *)match->data; local
110 printf(" udp");
111 print_ports("spt", udp->spts[0], udp->spts[1],
112 udp->invflags & XT_UDP_INV_SRCPT,
114 print_ports("dpt", udp->dpts[0], udp->dpts[1],
115 udp->invflags & XT_UDP_INV_DSTPT
    [all...]
  /external/kernel-headers/original/uapi/linux/netfilter/
nf_conntrack_tuple_common.h 29 } udp; member in union:nf_conntrack_man_proto
  /external/ltp/testcases/network/dccp/
dccp01.sh 38 tst_resm TINFO "compare UDP/DCCP performance"
40 tst_netload -H $(tst_ipaddr rhost) -T udp

Completed in 883 milliseconds

1 2 3 4 5 6 7