HomeSort by: relevance | last modified time | path
    Searched refs:ifv (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/net/
if_vlan.c 333 struct ifvlan *ifv; local
337 ifv = malloc(sizeof(struct ifvlan), M_DEVBUF, M_WAITOK | M_ZERO);
339 ifp = &ifv->ifv_if;
340 LIST_INIT(&ifv->ifv_mc_listhead);
341 cprng_fast(ifv->ifv_lladdr, sizeof(ifv->ifv_lladdr));
342 ifv->ifv_lladdr[0] &= 0xFE; /* clear I/G bit */
343 ifv->ifv_lladdr[0] |= 0x02; /* set G/L bit */
345 mib->ifvm_ifvlan = ifv;
349 mutex_init(&ifv->ifv_lock, MUTEX_DEFAULT, IPL_NONE)
382 struct ifvlan *ifv = ifp->if_softc; local
563 struct ifvlan *ifv = ifp->if_softc; local
815 struct ifvlan *ifv = ifp->if_softc; local
851 struct ifvlan *ifv = ifp->if_softc; local
1229 struct ifvlan *ifv = ifp->if_softc; local
1344 struct ifvlan *ifv = ifp->if_softc; local
1452 struct ifvlan *ifv; local
1519 struct ifvlan *ifv = xifv; local
    [all...]
  /src/external/bsd/dhcpcd/dist/src/
dhcpcd.h 132 char **ifv; /* listed interfaces */ member in struct:dhcpcd_ctx
privsep-control.c 57 setproctitle("[control proxy] %s%s%s", ctx->ifv[0],
71 ctx->options & DHCPCD_MANAGER ? NULL : *ctx->ifv, af);
dhcpcd.c 1255 ifaces = if_discover(ctx, &ifaddrs, ctx->ifc, ctx->ifv);
2267 ctx.ifv = argv + optind;
2340 ifname = *ctx.ifv;
2450 ctx.ifv[0][0] == '-' && ctx.ifv[0][1] == '\0') {
2747 ctx.ifaces = if_discover(&ctx, &ifaddrs, ctx.ifc, ctx.ifv);
2753 if ((ifp = if_find(ctx.ifaces, ctx.ifv[i])) == NULL)
2754 logerrx("%s: interface not found", ctx.ifv[i]);
2757 ctx.ifv[i]);
privsep-inet.c 127 ctx->ifc != 0 ? ctx->ifv[0] : "",
if.c 532 if (fnmatch(ctx->ifv[i], spec.devname, 0) == 0)
privsep-root.c 686 setproctitle("[privileged proxy] %s%s%s", ctx->ifv[0],
privsep.c 1186 strlcpy(psp->psp_ifname, ctx->ifv[0],
  /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
ir.go 1396 func (b Builder) CreateCondBr(ifv Value, thenb, elseb BasicBlock) (rv Value) {
1397 rv.C = C.LLVMBuildCondBr(b.C, ifv.C, thenb.C, elseb.C)
1841 func (b Builder) CreateSelect(ifv, thenv, elsev Value, name string) (v Value) {
1844 v.C = C.LLVMBuildSelect(b.C, ifv.C, thenv.C, elsev.C, cname)

Completed in 84 milliseconds