Lines Matching refs:clist
1326 class_lst_t *clist, *next_clist; in free_cached_registration() local
1330 clist = SH_CLASS_HASH(shp)[i]; in free_cached_registration()
1331 while (clist != NULL) { in free_cached_registration()
1332 sc_list = clist->cl_subclass_list; in free_cached_registration()
1339 free(clist->cl_name); in free_cached_registration()
1340 next_clist = clist->cl_next; in free_cached_registration()
1341 free(clist); in free_cached_registration()
1342 clist = next_clist; in free_cached_registration()
1358 class_lst_t *clist; in create_cached_registration() local
1385 clist = (class_lst_t *) in create_cached_registration()
1387 if (clist == NULL) { in create_cached_registration()
1391 clist->cl_name = strdup(class_name); in create_cached_registration()
1392 if (clist->cl_name == NULL) { in create_cached_registration()
1393 free(clist); in create_cached_registration()
1403 free(clist->cl_name); in create_cached_registration()
1404 free(clist); in create_cached_registration()
1408 clist->cl_next = class_hash[i]; in create_cached_registration()
1409 class_hash[i] = clist; in create_cached_registration()
1419 sc_list->sl_next = clist->cl_subclass_list; in create_cached_registration()
1420 clist->cl_subclass_list = sc_list; in create_cached_registration()