Lines Matching +refs:val +refs:current

568 	 * We use this label as the current zone's security label.
1699 prval(char *str, Counter val)
1701 (void) printf("\t%-20s=%6u", str, val);
1707 prval64(char *str, Counter64 val)
1709 (void) printf("\t%-20s=%6llu", str, val);
1715 pr_int_val(char *str, int val)
1717 (void) printf("\t%-20s=%6d", str, val);
1723 pr_sctp_rtoalgo(char *str, int val)
1726 switch (val) {
1736 (void) printf("%6d", val);
2882 * total values for current interval.
2887 * current list, and there's no easy way
2892 * involving "current" interfaces when
3197 * total values for current interval.
3202 * current list, and there's no easy way
3207 * involving "current" interfaces when
5204 const mib2_sctpConnRemoteEntry_t *current, uint32_t associd)
5209 for (; item != NULL; item = item->next_item, current = NULL) {
5215 if (current != NULL) {
5218 ((const char *)current + sctpRemoteEntrySize);
5239 const mib2_sctpConnLocalEntry_t *current, uint32_t associd)
5244 for (; item != NULL; item = item->next_item, current = NULL) {
5250 if (current != NULL) {
5253 ((const char *)current + sctpLocalEntrySize);
5695 "current maximum total failures");
6216 uint_t val;
6221 val = 0;
6225 val |= 1 << (cp - flag_list);
6228 return (val);
6241 int val;
6293 val = strtol(arg, &cp, 0);
6294 if (val <= 0 || arg == cp || cp[0] != '\0') {
6295 if ((val = if_nametoindex(arg)) == 0) {
6326 val = strtol(cp, &cp2, 0);
6340 if (val < 0 || val >= maxv)
6342 val, maxv - 1);
6344 val += IPV6_ABITS - IP_ABITS;
6346 while (val >= 8)
6347 *ucp++ = 0xff, val -= 8;
6348 *ucp++ = (0xff << (8 - val)) & 0xff;