Lines Matching defs:filprop
1694 struct sockconfig_filter_props filprop;
1710 if (copyin(ufilpropp, &filprop, sizeof (filprop)) != 0) {
1723 filprop.sfp_modname = (char *)(uintptr_t)filprop32.sfp_modname;
1724 filprop.sfp_autoattach = filprop32.sfp_autoattach;
1725 filprop.sfp_hint = filprop32.sfp_hint;
1726 filprop.sfp_hintarg = (char *)(uintptr_t)filprop32.sfp_hintarg;
1727 filprop.sfp_socktuple_cnt = filprop32.sfp_socktuple_cnt;
1728 filprop.sfp_socktuple =
1733 if ((error = copyinstr(filprop.sfp_modname, ent->sofe_modname,
1742 if (filprop.sfp_socktuple_cnt == 0 ||
1743 filprop.sfp_socktuple_cnt > SOF_MAXSOCKTUPLECNT) {
1747 ent->sofe_flags = filprop.sfp_autoattach ? SOFEF_AUTO : SOFEF_PROG;
1748 ent->sofe_hint = filprop.sfp_hint;
1756 if ((error = copyinstr(filprop.sfp_hintarg, hintbuf,
1780 ent->sofe_socktuple_cnt = filprop.sfp_socktuple_cnt;
1785 if (copyin(filprop.sfp_socktuple, ent->sofe_socktuple,
1794 caddr_t data = (caddr_t)filprop.sfp_socktuple;