Lines Matching defs:tu
6686 ipftune_t tu;
6690 error = fr_inobj(data, &tu, IPFOBJ_TUNEABLE);
6694 tu.ipft_name[sizeof(tu.ipft_name) - 1] = '\0';
6695 cookie = tu.ipft_cookie;
6711 ta = fr_findtunebycookie(cookie, &tu.ipft_cookie, ifs);
6714 tu.ipft_cookie = ta + 1;
6721 if (ta->ipft_sz > sizeof(tu.ipft_un))
6724 tu.ipft_vlong = 0;
6726 tu.ipft_vlong = *ta->ipft_plong;
6728 tu.ipft_vint = *ta->ipft_pint;
6730 tu.ipft_vshort = *ta->ipft_pshort;
6732 tu.ipft_vchar = *ta->ipft_pchar;
6734 tu.ipft_sz = ta->ipft_sz;
6735 tu.ipft_min = ta->ipft_min;
6736 tu.ipft_max = ta->ipft_max;
6737 tu.ipft_flags = ta->ipft_flags;
6738 bcopy(ta->ipft_name, tu.ipft_name,
6739 MIN(sizeof(tu.ipft_name),
6742 error = fr_outobj(data, &tu, IPFOBJ_TUNEABLE);
6756 } else if (tu.ipft_name[0] != '\0') {
6757 ta = fr_findtunebyname(tu.ipft_name, ifs);
6768 tu.ipft_vlong = 0;
6770 tu.ipft_vlong = *ta->ipft_plong;
6772 tu.ipft_vint = *ta->ipft_pint;
6774 tu.ipft_vshort = *ta->ipft_pshort;
6776 tu.ipft_vchar = *ta->ipft_pchar;
6777 tu.ipft_cookie = ta;
6778 tu.ipft_sz = ta->ipft_sz;
6779 tu.ipft_min = ta->ipft_min;
6780 tu.ipft_max = ta->ipft_max;
6781 tu.ipft_flags = ta->ipft_flags;
6782 error = fr_outobj(data, &tu, IPFOBJ_TUNEABLE);
6798 in = tu.ipft_vlong;
6805 tu.ipft_vlong = *ta->ipft_plong;
6808 tu.ipft_vint = *ta->ipft_pint;
6811 tu.ipft_vshort = *ta->ipft_pshort;
6814 tu.ipft_vchar = *ta->ipft_pchar;
6817 error = fr_outobj(data, &tu, IPFOBJ_TUNEABLE);