Searched refs:net (Results 1 - 25 of 107) sorted by relevance

12345

/barrelfish-master/lib/devif/backends/net/mlx4/include/linux/
H A Dif_arp.h32 #include <net/if_arp.h>
H A Dinetdevice.h36 ip_dev_find(struct net *net, uint32_t addr) argument
/barrelfish-master/lib/libc/inet/
H A Dinet_makeaddr.c49 inet_makeaddr(in_addr_t net, in_addr_t host) argument
53 if (net < 128U)
54 a.s_addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST);
55 else if (net < 65536U)
56 a.s_addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST);
57 else if (net < 16777216L)
58 a.s_addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST);
60 a.s_addr = net | host;
/barrelfish-master/lib/devif/backends/net/mlx4/include/net/
H A Dtcp.h37 #include <net/ip.h>
H A Dip.h38 #include <net/if_types.h>
39 #include <net/if.h>
40 #include <net/if_var.h>
/barrelfish-master/lib/openssl-1.0.0d/crypto/des/
H A Denc_read.c95 static unsigned char *net=NULL;
112 if (net == NULL)
114 net=OPENSSL_malloc(BSIZE);
115 if (net == NULL) return(-1);
154 i=read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
156 i=_read(fd,(void *)&(net[net_num]),HDRSIZE-net_num);
165 /* we now have at net_num bytes in net */
166 p=net;
170 * we make sure that we have read a multiple of 8 bytes from the net.
180 i=read(fd,(void *)&(net[net_nu
[all...]
/barrelfish-master/lib/net/
H A Dnetworking_internal.h3 * net.h
25 #include <devif/backends/net/sfn5122f_devif.h>
26 #include <devif/backends/net/e10k_devif.h>
27 #include <devif/backends/net/e1000_devif.h>
28 #include <devif/backends/net/mlx4_devif.h>
34 #include <net/net_filter.h>
35 #include <net/net.h>
36 #include <net/netbufs.h>
37 #include <net/neti
[all...]
/barrelfish-master/include/net/
H A Ddhcp.h3 * net.h
19 #include <net/net.h>
22 #define NET_CONFIG_CURRENT_IP_RECORD_FORMAT "net.ipconfig " NET_CONFIG_IP_RECORD_FIELDS
23 #define NET_CONFIG_CURRENT_IP_RECORD_REGEX "net.ipconfig {ip: _, gw: _, netmask: _}"
24 #define NET_CONFIG_STATIC_IP_RECORD_FORMAT "net.static_ip " NET_CONFIG_IP_RECORD_FIELDS
25 #define NET_CONFIG_STATIC_IP_RECORD_REGEX "net.static_ip {ip: _, gw: _, netmask: _}"
/barrelfish-master/lib/libc/net/
H A Dif_indextoname.c33 #include <net/if_dl.h>
34 #include <net/if.h>
46 * #include <net/if.h>
52 * index is returned. (IF_NAMESIZE is also defined in <net/if.h> and
H A Dif_nameindex.c33 #include <net/if_dl.h>
34 #include <net/if.h>
45 * interface and is defined as a result of including the <net/if.h>
71 * #include <net/if.h>
H A Dif_nametoindex.c35 #include <net/if.h>
36 #include <net/if_dl.h>
53 * #include <net/if.h>
H A Dgetnetbydns.c265 uint32_t net; local
279 net = va_arg(ap, uint32_t);
308 for (nn = 4, net2 = net; net2; net2 >>= 8)
354 while ((net & 0xff) == 0 && net != 0)
355 net >>= 8;
356 ne.n_net = net;
373 const char *net; local
384 net = va_arg(ap, const char *);
410 strncpy(qbuf, net, sizeo
[all...]
/barrelfish-master/usr/eclipseclp/CPViz/viztool/src/components/
H A DExternalLinkContentViewerUI.java27 import java.net.URI;
28 import java.net.URL;
/barrelfish-master/usr/eclipseclp/JavaInterface/tests/
H A DTester.java30 import java.net.*;
/barrelfish-master/lib/net/test/
H A Dudp_echo.c21 #include <net/net.h>
22 #include <net/net_filter.h>
H A Darp.c33 #include <net/net.h>
34 #include <net/arp.h>
59 #define ARP_ENTRY "net.arp.%d {mac: %lu, ip: %d}"
77 debug_printf("oct_set net.arp.%d {mac: %lu (%lx)}\n", ip.addr, mac,mac);
H A Ddhcp.c33 #include <net/net.h>
34 #include <net/dhcp.h>
63 #define DHCP_RECORD_FORMAT "net.ipconfig " DHCP_RECORD_FIELDS
/barrelfish-master/lib/libc/tests/
H A DMakefile13 TESTS_SUBDIRS+= net
/barrelfish-master/include/devif/backends/net/
H A Dudp.h14 #include <devif/backends/net/ip.h>
/barrelfish-master/usr/webserver/
H A Dmain.c19 #include <net/net.h>
/barrelfish-master/lib/libc/tests/net/
H A DMakefile31 aton_ether_subr.c: gen_ether_subr ${SRCTOP}/sys/net/if_ethersubr.c
/barrelfish-master/lib/libc/tests/net/getaddrinfo/
H A DMakefile5 TESTSRC= ${SRCTOP}/contrib/netbsd-tests/lib/libc/net/${.CURDIR:T}
/barrelfish-master/lib/openssl-1.0.0d/VMS/
H A Dopenssl_utils.com6 $! byer@mail.all-net.net
/barrelfish-master/usr/eclipseclp/JavaInterface/src/com/parctechnologies/eclipse/
H A DAsyncEclipseQueue.java32 import java.net.Socket;
/barrelfish-master/include/netinet/
H A Dif_ether.h36 #include <net/ethernet.h>
37 #include <net/if_arp.h>

Completed in 211 milliseconds

12345