Searched refs:ip (Results 726 - 750 of 1028) sorted by relevance

<<21222324252627282930>>

/freebsd-11-stable/sbin/dump/
H A Dtraverse.c391 union dinode *ip; local
422 ip = getino(dp->d_ino, &mode);
425 *tapesize -= blockest(ip);
/freebsd-11-stable/crypto/openssl/util/
H A Dmkdef.pl987 my $ip = join ',',map({ /^!(.*)$/ ? $1 : "!".$_ } split /,/, $p);
993 $platform{$s} = &reduce_platforms($platform{$s}.','.$ip.','.$ip);
/freebsd-11-stable/sys/netinet6/
H A Din6_pcb.c1302 struct ip6_hdr *ip; local
1304 ip = mtod(m, struct ip6_hdr *);
1308 sin6->sin6_addr = ip->ip6_src;
/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Dbio.h477 # define BIO_set_conn_ip(b,ip) BIO_ctrl(b,BIO_C_SET_CONNECT,2,(char *)ip)
750 int BIO_get_host_ip(const char *str, unsigned char *ip);
H A Dbss_dgram.c500 int *ip; local
535 ip = (int *)ptr;
536 if (ip != NULL)
537 *ip = b->num;
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dtrap.c536 int32_t ip; local
552 if (snmp_pdu_auth_access(&pdu, &ip) != SNMP_CODE_OK) {
619 if (snmp_pdu_auth_access(&pdu, &ip) != SNMP_CODE_OK) {
/freebsd-11-stable/sys/dev/vmware/vmxnet3/
H A Dif_vmx.c54 #include <netinet/ip.h>
2713 struct ip *ip = NULL; local
2714 struct ip iphdr;
2734 if (__predict_false(m->m_len < offset + sizeof(struct ip))) {
2735 m_copydata(m, offset, sizeof(struct ip),
2737 ip = &iphdr;
2739 ip = mtodo(m, offset);
2740 *proto = ip->ip_p;
2741 *start = offset + (ip
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw_private.h175 struct ip;
183 u_short offset, uint32_t tablearg, struct ip *ip);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_x86_64.cpp368 {DEFINE_FPU_UINT(ip),
689 value = fpu.ip;
815 fpu.ip = value.GetAsUInt32();
/freebsd-11-stable/contrib/libcxxrt/
H A Dexception.cc681 void *ip = reinterpret_cast<void*>(_Unwind_GetIP(context)); local
683 if (dladdr(ip, &info) != 0)
687 printf("%p:%s() in %s\n", ip, info.dli_sname, info.dli_fname);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_printf.c1254 uint_t nrecs, const void *buf, size_t len, int *ip)
1271 *ip = (int)*((int8_t *)addr);
1274 *ip = (int)*((int16_t *)addr);
1277 *ip = (int)*((int32_t *)addr);
1280 *ip = (int)*((int64_t *)addr);
1253 dt_printf_getint(dtrace_hdl_t *dtp, const dtrace_recdesc_t *recp, uint_t nrecs, const void *buf, size_t len, int *ip) argument
/freebsd-11-stable/contrib/wpa/src/tls/
H A Dx509v3.c33 os_free(name->ip);
35 name->ip = NULL;
966 os_free(name->ip);
967 name->ip = os_memdup(pos, len);
968 if (name->ip == NULL)
/freebsd-11-stable/sys/dev/xen/netback/
H A Dnetback.c68 #include <netinet/ip.h>
2151 struct ip *iph;
2161 iph = (struct ip*)(eh + 1);
2170 size_t tcplen = ntohs(iph->ip_len) - sizeof(struct ip);
2181 size_t udplen = ntohs(iph->ip_len) - sizeof(struct ip);
/freebsd-11-stable/sys/cddl/contrib/opensolaris/common/nvpair/
H A Dopensolaris_nvpair.c1878 * If 'ip' is non-NULL and the last name component is an array, return the
1879 * value of the "...[index]" array index in *ip. For an array reference that
1880 * is not indexed, *ip will be returned as -1. If there is a syntax error in
1886 nvpair_t **ret, int *ip, char **ep)
1896 if (ip)
1897 *ip = -1; /* not indexed */
2012 if (ip && idxp)
2013 *ip = (int)idx; /* return index */
2063 const char *name, nvpair_t **ret, int *ip, char **ep)
2065 return (nvlist_lookup_nvpair_ei_sep(nvl, name, '.', ret, ip, e
1885 nvlist_lookup_nvpair_ei_sep(nvlist_t *nvl, const char *name, const char sep, nvpair_t **ret, int *ip, char **ep) argument
2062 nvlist_lookup_nvpair_embedded_index(nvlist_t *nvl, const char *name, nvpair_t **ret, int *ip, char **ep) argument
[all...]
/freebsd-11-stable/sys/netinet/
H A Dsctp_input.c5900 struct ip *ip; local
5944 ip = mtod(m, struct ip *);
5945 sh = (struct sctphdr *)((caddr_t)ip + iphlen);
5952 src.sin_addr = ip->ip_src;
5957 dst.sin_addr = ip->ip_dst;
5958 length = ntohs(ip->ip_len);
5973 ecn_bits = ip->ip_tos;
6010 struct ip *i local
[all...]
/freebsd-11-stable/sys/dev/e1000/
H A Dif_lem.c84 #include <netinet/ip.h>
1655 (m_head->m_len < ETHER_HDR_LEN + sizeof(struct ip))) {
1656 m_head = m_pullup(m_head, ETHER_HDR_LEN + sizeof(struct ip));
2947 struct ip *ip = NULL; local
2979 ip = (struct ip *)(mp->m_data + ehdrlen);
2980 ip_hlen = ip->ip_hl << 2;
2995 ehdrlen + offsetof(struct ip, ip_sum);
3001 ipproto = ip
[all...]
/freebsd-11-stable/sys/dev/alc/
H A Dif_alc.c63 #include <netinet/ip.h>
2694 struct ip *ip; local
2706 ip = NULL;
2751 m = m_pullup(m, ip_off + sizeof(struct ip));
2756 ip = (struct ip *)(mtod(m, char *) + ip_off);
2757 poff = ip_off + (ip->ip_hl << 2);
2783 ip = (struct ip *)(mto
[all...]
/freebsd-11-stable/sys/dev/mge/
H A Dif_mge.c63 #include <netinet/ip.h>
1929 struct ip *ip; local
1949 ip = (struct ip *)(m0->m_data + ehlen);
1950 cmd_status |= MGE_TX_IP_HDR_SIZE(ip->ip_hl);
/freebsd-11-stable/sys/dev/wl/
H A Dif_wl.c220 #include <netinet/ip.h>
2467 * That is probably fine for mobile ip.
2500 * index is MAC address, but an ip src gets stored too
2503 * throw out non-ip (on by default, but can be turned off)
2510 struct ip *ip = NULL; /* Avoid GCC warning */ local
2518 * 1. ip only
2537 /* find the ip header. we want to store the ip_src
2539 * to typecast m to struct ip *
2542 ip
[all...]
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dipfstat.c1583 sprintf(str4, "src ip");
1589 sprintf(str4, "dest ip");
1913 static void parse_ipportstr(argument, ip, port)
1915 i6addr_t *ip;
1943 /* get ip address */
1945 ip->in4.s_addr = INADDR_ANY;
1948 ip->in6 = in6addr_any;
1949 } else if (use_inet6 && !use_inet4 && inet_pton(AF_INET6, s, &ip->in6)) {
1952 } else if (inet_aton(s, &ip->in4))
2241 " "ip
[all...]
/freebsd-11-stable/sbin/restore/
H A Dtape.c206 int i, j, *ip; local
244 ip = (int *)&endoftapemark;
248 i += *ip++;
/freebsd-11-stable/sys/kern/
H A Dkern_resource.c1087 long *ip, *ip2; local
1092 ip = &ru->ru_first;
1095 *ip++ += *ip2++;
/freebsd-11-stable/sbin/newfs/
H A Dmkfs.c1017 iput(union dinode *ip, ino_t ino) argument
1042 ip->dp1;
1045 ip->dp2;
/freebsd-11-stable/contrib/jemalloc/src/
H A Dprof.c339 void *ip; local
343 ip = (void *)_Unwind_GetIP(context);
344 if (ip == NULL)
346 data->bt->vec[data->bt->len] = ip;
/freebsd-11-stable/sbin/dhclient/
H A Dbpf.c54 #include <netinet/ip.h>
94 * 'ip and udp and src port bootps and dst port (bootps or bootpc)'

Completed in 497 milliseconds

<<21222324252627282930>>