Searched refs:ifp (Results 51 - 64 of 64) sorted by relevance

123

/illumos-gate/usr/src/lib/nsswitch/dns/common/
H A Ddns_common.c334 struct ifaddrs *ifp, *i; local
341 if (getifaddrs(&ifp) != 0)
344 for (i = ifp; i != NULL; i = i->ifa_next) {
372 freeifaddrs(ifp);
/illumos-gate/usr/src/cmd/svc/milestone/
H A Dnet-install103 ifp=`echo $net_install_name | /usr/bin/cut -f1 -d'/'`
104 details="$details $net_install_route -ifp $ifp"
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxencons.h129 volatile struct xencons_interface *ifp; /* console ring buffers */ member in struct:xencons
/illumos-gate/usr/src/boot/include/net/
H A Dethernet.h35 #define ETHER_MAX_FRAME(ifp, etype, hasfcs) \
36 ((ifp)->if_mtu + ETHER_HDR_LEN + \
/illumos-gate/usr/src/uts/common/inet/ipf/
H A Dip_state.c1124 void *ifp; local
1453 if (((ifp = fr->fr_ifas[1]) != NULL) &&
1454 (ifp != (void *)-1)) {
1455 COPYIFNAME(ifp, is->is_ifname[(out << 1) + 1], fr->fr_v);
1457 if (((ifp = fr->fr_ifas[2]) != NULL) &&
1458 (ifp != (void *)-1)) {
1459 COPYIFNAME(ifp, is->is_ifname[(1 - out) << 1], fr->fr_v);
1461 if (((ifp = fr->fr_ifas[3]) != NULL) &&
1462 (ifp != (void *)-1)) {
1463 COPYIFNAME(ifp, i
2111 void *ifp; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Droute.c118 {"ifp", K_IFP},
2644 struct sockaddr_dl *ifp = NULL; local
2686 ifp = (struct sockaddr_dl *)sa;
2711 if (ifp != NULL) {
2716 ifp->sdl_nlen, ifp->sdl_data, ifp->sdl_index);
2717 for (i = ifp->sdl_nlen;
2718 i < ifp->sdl_nlen + ifp
[all...]
/illumos-gate/usr/src/uts/common/net/
H A Dif.h39 * (*ifp->if_output)(ifp, m, dst)
191 * Output queues (ifp->if_snd) and internetwork datagram level (pup level 1)
230 #define IF_DEQUEUEIF(ifq, m, ifp) { \
237 (ifp) = *(mtod((m), struct ifnet **)); \
686 ushort_t ifm_index; /* index for associated ifp */
700 ushort_t ifam_index; /* index for associated ifp */
/illumos-gate/usr/src/cmd/picl/plugins/lib/picld_pluginutil/
H A Dpicld_pluginutil.c1634 FILE *ifp; local
1656 ifp = fopen(filename, "r");
1657 if (ifp == NULL) {
1666 err = check_conffile_syntax(cmds, ifp);
1668 (void) fclose(ifp);
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_cc.c1803 dt_preproc(dtrace_hdl_t *dtp, FILE *ifp) argument
1831 if (isatty(fileno(ifp)) == 0 && (off = ftello64(ifp)) != -1) {
1832 if ((c = fgetc(ifp)) == '#' && (c = fgetc(ifp)) == '!') {
1834 if ((c = fgetc(ifp)) == EOF)
1840 (void) fflush(ifp);
1841 (void) fseeko64(ifp, off, SEEK_SET);
1844 (void) snprintf(ipath, sizeof (ipath), "/dev/fd/%d", fileno(ifp));
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipadm/
H A Dipadm.c689 ipadm_if_info_t *ifinfo, *ifp; local
754 for (ifp = ifinfo; ifp; ifp = ifp->ifi_next) {
755 (void) strlcpy(state.sps_ifname, ifp->ifi_name, LIFNAMSIZ);
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip_if.c2782 ill_if_t *ifp; local
2801 ifp = IP_VX_ILL_G_LIST(ctx->ctx_current_list, ipst);
2802 if (ifp != (ill_if_t *)
2804 avl_tree = &ifp->illif_avl_by_ppa;
2807 * ill is guaranteed to be non NULL or ifp should have
2831 ill_if_t *ifp; local
2843 ifp = lastill->ill_ifptr->illif_next;
2846 while (ifp ==
2850 ifp = IP_VX_ILL_G_LIST(ctx->ctx_current_list, ipst);
2853 return (avl_first(&ifp
2908 ill_if_t *ifp; local
3096 ill_alloc_ppa(ill_if_t *ifp, ill_t *ill) argument
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipqosconf/
H A Dipqosconf.c9479 FILE *ifp; local
9491 ifp = stdin;
9493 ifp = fopen(ifile, "r");
9494 if (ifp == NULL) {
9504 res = readconf(ifp, &conf);
9642 (void) fclose(ifp);
9647 (void) fclose(ifp);
9848 FILE *ifp; local
9852 ifp = fopen(cfile, "r");
9853 if (ifp
[all...]
/illumos-gate/usr/src/cmd/zoneadmd/
H A Dvplat.c2007 struct sockaddr_dl *ifp = NULL; local
2100 ifp = (struct sockaddr_dl *)sa;
2103 if (ifp == NULL) {
2118 (void) strncpy(lifr->lifr_name, ifp->sdl_data, ifp->sdl_nlen);
2119 lifr->lifr_name[ifp->sdl_nlen] = '\0';
2381 argv[2] = "-ifp";
/illumos-gate/usr/src/uts/common/inet/nca/
H A Dnca.h1189 if_t *ifp; /* Interface for this connection */ member in struct:nca_conn_s

Completed in 1933 milliseconds

123