Lines Matching refs:next
298 struct sh_list_st *next;
376 temp->next = *(SH_LIST **)list;
377 OPENSSL_assert(temp->next == NULL || WITHIN_ARENA(temp->next));
380 if (temp->next != NULL) {
381 OPENSSL_assert((char **)temp->next->p_next == list);
382 temp->next->p_next = &(temp->next);
393 if (temp->next != NULL)
394 temp->next->p_next = temp->p_next;
395 *temp->p_next = temp->next;
396 if (temp->next == NULL)
399 temp2 = temp->next;