Lines Matching refs:clist
1327 class_lst_t *clist, *next_clist; in free_cached_registration() local
1331 clist = SH_CLASS_HASH(shp)[i]; in free_cached_registration()
1332 while (clist != NULL) { in free_cached_registration()
1333 sc_list = clist->cl_subclass_list; in free_cached_registration()
1340 free(clist->cl_name); in free_cached_registration()
1341 next_clist = clist->cl_next; in free_cached_registration()
1342 free(clist); in free_cached_registration()
1343 clist = next_clist; in free_cached_registration()
1359 class_lst_t *clist; in create_cached_registration() local
1386 clist = (class_lst_t *) in create_cached_registration()
1388 if (clist == NULL) { in create_cached_registration()
1392 clist->cl_name = strdup(class_name); in create_cached_registration()
1393 if (clist->cl_name == NULL) { in create_cached_registration()
1394 free(clist); in create_cached_registration()
1404 free(clist->cl_name); in create_cached_registration()
1405 free(clist); in create_cached_registration()
1409 clist->cl_next = class_hash[i]; in create_cached_registration()
1410 class_hash[i] = clist; in create_cached_registration()
1420 sc_list->sl_next = clist->cl_subclass_list; in create_cached_registration()
1421 clist->cl_subclass_list = sc_list; in create_cached_registration()