Lines Matching refs:ch
32 DEFINE_LIST_OF_IMPL(ch, QUIC_CHANNEL);
268 QUIC_CHANNEL *ch; in ossl_quic_port_set_net_wbio() local
276 OSSL_LIST_FOREACH(ch, ch, &port->channel_list) in ossl_quic_port_set_net_wbio()
277 ossl_qtx_set_bio(ch->qtx, net_wbio); in ossl_quic_port_set_net_wbio()
309 QUIC_CHANNEL *ch; in port_make_channel() local
324 ch = ossl_quic_channel_new(&args); in port_make_channel()
325 if (ch == NULL) { in port_make_channel()
332 return ch; in port_make_channel()
342 QUIC_CHANNEL *ch; in ossl_quic_port_create_incoming() local
346 ch = port_make_channel(port, tls, /*is_server=*/1); in ossl_quic_port_create_incoming()
347 port->tserver_ch = ch; in ossl_quic_port_create_incoming()
349 return ch; in ossl_quic_port_create_incoming()
364 QUIC_CHANNEL *ch; in ossl_quic_port_subtick() local
376 OSSL_LIST_FOREACH(ch, ch, &port->channel_list) { in ossl_quic_port_subtick()
379 ossl_quic_channel_subtick(ch, &subr, flags); in ossl_quic_port_subtick()
501 QUIC_CHANNEL *ch = NULL, *new_ch = NULL; in port_default_packet_handler() local
512 (void **)&ch)) { in port_default_packet_handler()
513 assert(ch != NULL); in port_default_packet_handler()
514 ossl_quic_channel_inject(ch, e); in port_default_packet_handler()
587 QUIC_CHANNEL *ch; in ossl_quic_port_raise_net_error() local
606 OSSL_LIST_FOREACH(ch, ch, &port->channel_list) in ossl_quic_port_raise_net_error()
607 if (ch != triggering_ch) in ossl_quic_port_raise_net_error()
608 ossl_quic_channel_raise_net_error(ch); in ossl_quic_port_raise_net_error()