Lines Matching defs:utab
53 struct utab {
110 if (((const struct utab *)node1)->ut_uid > \
111 ((const struct utab *)node2)->ut_uid)
113 else if (((const struct utab *)node1)->ut_uid < \
114 ((const struct utab *)node2)->ut_uid)
123 struct utab **pt;
125 if ((ub = (struct utab *)malloc(sizeof (struct utab))) == NULL) {
139 if (*(pt = (struct utab **)tsearch((void *)ub, (void **)&root, \
158 tb.ta_uid = (*(struct utab **)node)->ut_uid;
159 CPYN(tb.ta_name, (char *)uidtonam((*(struct utab **)node)->ut_uid));
160 tb.ta_cpu[0] = (*(struct utab **)node)->ut_cpu[0];
161 tb.ta_cpu[1] = (*(struct utab **)node)->ut_cpu[1];
162 tb.ta_kcore[0] = (*(struct utab **)node)->ut_kcore[0];
163 tb.ta_kcore[1] = (*(struct utab **)node)->ut_kcore[1];
164 tb.ta_pc = (*(struct utab **)node)->ut_pc;
172 twalk((struct utab *)root, print_node);