Searched defs:existing_list (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftObjectUtil.c1180 move_into_list(soft_object_t **existing_list, soft_object_t **new_list, argument
1185 if (objp == *existing_list) {
1188 *existing_list = objp->next;
1191 *existing_list = NULL;
1207 * Insert "new_list" into "existing_list", new list will always be inserted
1211 insert_list_into_list(soft_object_t **existing_list, argument
1219 if (*existing_list == NULL) {
1220 *existing_list = new_list;
1222 (*existing_list)->prev = end_new_list;
1223 end_new_list->next = *existing_list;
[all...]

Completed in 55 milliseconds