Searched refs:tup (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dprinttunable.c8 void printtunable(tup)
9 ipftune_t *tup;
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
[all...]
/illumos-gate/usr/src/tools/ndrgen/
H A Dndr_anal.c42 struct tup { struct
43 struct tup *up;
48 static void type_ident_decl1(struct tup *, char *, size_t, char *);
189 type_ident_decl1(struct tup *tup, char *funcbuf, size_t buflen, char *ident) argument
195 if (!tup) {
199 ti = tup->ti;
204 type_ident_decl1(tup->up, fb, NDLBUFSZ, ident);
210 type_ident_decl1(tup->up, fb, NDLBUFSZ, ident);
216 type_ident_decl1(tup
265 struct tup *tup; local
[all...]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c1809 sof_socktuple_t *tup = ent->sofe_socktuple; local
1812 tup = ent->sofe_socktuple;
1813 for (i = 0; i < ent->sofe_socktuple_cnt; i++, tup++) {
1814 ASSERT(tup < ent->sofe_socktuple + tuplesz);
1820 tup->sofst_family = tup32.sofst_family;
1821 tup->sofst_type = tup32.sofst_type;
1822 tup->sofst_protocol = tup32.sofst_protocol;
/illumos-gate/usr/src/uts/common/inet/ipf/
H A Dfil.c1551 u_short tup, po; local
1554 tup = *pop;
1563 if (tup != po) /* EQUAL */
1567 if (tup == po) /* NOTEQUAL */
1571 if (tup >= po) /* LESSTHAN */
1575 if (tup <= po) /* GREATERTHAN */
1579 if (tup > po) /* LT or EQ */
1583 if (tup < po) /* GT or EQ */
1587 if (tup >= po && tup <
[all...]
/illumos-gate/usr/src/cmd/truss/
H A Dexpound.c4757 sof_socktuple32_t *tup; local
4791 sz = props.sfp_socktuple_cnt * sizeof (*tup);
4792 tup = my_malloc(sz, "socket tuple buffer");
4793 if (Pread(Proc, tup, sz, (uintptr_t)props.sfp_socktuple) == sz)
4797 tup[i].sofst_family, tup[i].sofst_type,
4798 tup[i].sofst_protocol);
4809 sof_socktuple_t *tup; local
4843 sz = props.sfp_socktuple_cnt * sizeof (*tup);
4844 tup
[all...]

Completed in 94 milliseconds