Home
last modified time | relevance | path

Searched refs:existing_list (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftObjectUtil.c1180 move_into_list(soft_object_t **existing_list, soft_object_t **new_list, in move_into_list() argument
1185 if (objp == *existing_list) { in move_into_list()
1188 *existing_list = objp->next; in move_into_list()
1191 *existing_list = NULL; in move_into_list()
1211 insert_list_into_list(soft_object_t **existing_list, in insert_list_into_list() argument
1219 if (*existing_list == NULL) { in insert_list_into_list()
1220 *existing_list = new_list; in insert_list_into_list()
1222 (*existing_list)->prev = end_new_list; in insert_list_into_list()
1223 end_new_list->next = *existing_list; in insert_list_into_list()
1224 *existing_list = new_list; in insert_list_into_list()