Searched refs:tup (Results 1 – 5 of 5) sorted by relevance
/titanic_44/usr/src/cmd/ipf/lib/common/ |
H A D | printtunable.c | 8 void printtunable(tup) in printtunable() argument 9 ipftune_t *tup; in printtunable() 12 tup->ipft_name, tup->ipft_min, tup->ipft_max); 13 if (tup->ipft_sz == sizeof(u_long)) 14 printf("%lu\n", tup->ipft_vlong); 15 else if (tup->ipft_sz == sizeof(u_int)) 16 printf("%u\n", tup->ipft_vint); 17 else if (tup->ipft_sz == sizeof(u_short)) 18 printf("%hu\n", tup->ipft_vshort); 19 else if (tup->ipft_sz == sizeof(u_char)) [all …]
|
/titanic_44/usr/src/tools/ndrgen/ |
H A D | ndr_anal.c | 42 struct tup { struct 43 struct tup *up; argument 48 static void type_ident_decl1(struct tup *, char *, size_t, char *); argument 189 type_ident_decl1(struct tup *tup, char *funcbuf, size_t buflen, char *ident) in type_ident_decl1() argument 195 if (!tup) { in type_ident_decl1() 199 ti = tup->ti; in type_ident_decl1() 204 type_ident_decl1(tup->up, fb, NDLBUFSZ, ident); in type_ident_decl1() 210 type_ident_decl1(tup->up, fb, NDLBUFSZ, ident); in type_ident_decl1() 216 type_ident_decl1(tup->up, fb, NDLBUFSZ, ident); in type_ident_decl1() 223 type_ident_decl1(tup->up, funcbuf+1, buflen - 1, ident); in type_ident_decl1() [all …]
|
/titanic_44/usr/src/cmd/truss/ |
H A D | expound.c | 4741 sof_socktuple32_t *tup; in show_sockconfig_filter_prop32() local 4775 sz = props.sfp_socktuple_cnt * sizeof (*tup); in show_sockconfig_filter_prop32() 4776 tup = my_malloc(sz, "socket tuple buffer"); in show_sockconfig_filter_prop32() 4777 if (Pread(Proc, tup, sz, (uintptr_t)props.sfp_socktuple) == sz) in show_sockconfig_filter_prop32() 4781 tup[i].sofst_family, tup[i].sofst_type, in show_sockconfig_filter_prop32() 4782 tup[i].sofst_protocol); in show_sockconfig_filter_prop32() 4793 sof_socktuple_t *tup; in show_sockconfig_filter_prop() local 4827 sz = props.sfp_socktuple_cnt * sizeof (*tup); in show_sockconfig_filter_prop() 4828 tup = my_malloc(sz, "socket tuple buffer"); in show_sockconfig_filter_prop() 4829 if (Pread(Proc, tup, sz, (uintptr_t)props.sfp_socktuple) == sz) in show_sockconfig_filter_prop() [all …]
|
/titanic_44/usr/src/uts/common/inet/ipf/ |
H A D | fil.c | 1552 u_short tup, po; local 1555 tup = *pop; 1564 if (tup != po) /* EQUAL */ 1568 if (tup == po) /* NOTEQUAL */ 1572 if (tup >= po) /* LESSTHAN */ 1576 if (tup <= po) /* GREATERTHAN */ 1580 if (tup > po) /* LT or EQ */ 1584 if (tup < po) /* GT or EQ */ 1588 if (tup >= po && tup <= frp->frp_top) /* Out of range */ 1592 if (tup <= po || tup >= frp->frp_top) /* In range */ [all …]
|
/titanic_44/usr/src/uts/common/fs/sockfs/ |
H A D | socksyscalls.c | 1795 sof_socktuple_t *tup = ent->sofe_socktuple; in sockconfig_add_filter() local 1798 tup = ent->sofe_socktuple; in sockconfig_add_filter() 1799 for (i = 0; i < ent->sofe_socktuple_cnt; i++, tup++) { in sockconfig_add_filter() 1800 ASSERT(tup < ent->sofe_socktuple + tuplesz); in sockconfig_add_filter() 1806 tup->sofst_family = tup32.sofst_family; in sockconfig_add_filter() 1807 tup->sofst_type = tup32.sofst_type; in sockconfig_add_filter() 1808 tup->sofst_protocol = tup32.sofst_protocol; in sockconfig_add_filter()
|