Lines Matching refs:next
320 BIO *next = BIO_next(b); in ebcdic_read() local
324 if (next == NULL) in ebcdic_read()
327 ret = BIO_read(next, out, outl); in ebcdic_read()
336 BIO *next = BIO_next(b); in ebcdic_write() local
342 if (next == NULL) in ebcdic_write()
362 ret = BIO_write(next, wbuf->buff, inl); in ebcdic_write()
370 BIO *next = BIO_next(b); in ebcdic_ctrl() local
372 if (next == NULL) in ebcdic_ctrl()
379 ret = BIO_ctrl(next, cmd, num, ptr); in ebcdic_ctrl()
388 BIO *next = BIO_next(bp); in ebcdic_gets() local
390 if (next == NULL) in ebcdic_gets()
3834 struct simple_ssl_session_st *next; member
3872 sess->next = first; in add_session()
3883 for (sess = first; sess; sess = sess->next) { in get_session()
3901 for (sess = first; sess; sess = sess->next) { in del_session()
3904 prev->next = sess->next; in del_session()
3906 first = sess->next; in del_session()
3933 sess = sess->next; in free_sessions()