Searched refs:fu_data (Results 1 – 3 of 3) sorted by relevance
314 fu_data_t *fu_data; in dofusers() local332 fu_data = kmem_alloc(fu_data_size(v_proc), KM_SLEEP); in dofusers()333 fu_data->fud_user_max = v_proc; in dofusers()334 fu_data->fud_user_count = 0; in dofusers()603 ASSERT(pcnt < fu_data->fud_user_max); in dofusers()604 fu_data->fud_user[pcnt].fu_flags = use_flag; in dofusers()605 fu_data->fud_user[pcnt].fu_pid = pid; in dofusers()606 fu_data->fud_user[pcnt].fu_uid = uid; in dofusers()620 fu_data->fud_user_count = pcnt; in dofusers()621 return (fu_data); in dofusers()[all …]
142 fu_data_t fu_header, *fu_data; in get_f_user_buf() local178 fu_data = (fu_data_t *)malloc(fu_data_size(count)); in get_f_user_buf()179 if (fu_data == NULL) { in get_f_user_buf()184 fu_data->fud_user_max = count; in get_f_user_buf()185 fu_data->fud_user_count = 0; in get_f_user_buf()186 return (fu_data); in get_f_user_buf()377 report(fu_data_t *fu_data, int options, int sig) in report() argument383 for (err = i = 0; (err == 0) && (i < fu_data->fud_user_count); i++) { in report()385 f_user = &(fu_data->fud_user[i]); in report()454 fu_data_t *fu_data; in main() local[all …]
80 typedef struct fu_data { struct