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