Lines Matching refs:TLS_BASE

378 	if (ctx->tx_conf != TLS_BASE || ctx->rx_conf != TLS_BASE)  in tls_sk_proto_close()
940 ops[TLS_BASE][TLS_BASE] = *base; in build_proto_ops()
942 ops[TLS_SW ][TLS_BASE] = ops[TLS_BASE][TLS_BASE]; in build_proto_ops()
943 ops[TLS_SW ][TLS_BASE].splice_eof = tls_sw_splice_eof; in build_proto_ops()
945 ops[TLS_BASE][TLS_SW ] = ops[TLS_BASE][TLS_BASE]; in build_proto_ops()
946 ops[TLS_BASE][TLS_SW ].splice_read = tls_sw_splice_read; in build_proto_ops()
947 ops[TLS_BASE][TLS_SW ].poll = tls_sk_poll; in build_proto_ops()
948 ops[TLS_BASE][TLS_SW ].read_sock = tls_sw_read_sock; in build_proto_ops()
950 ops[TLS_SW ][TLS_SW ] = ops[TLS_SW ][TLS_BASE]; in build_proto_ops()
956 ops[TLS_HW ][TLS_BASE] = ops[TLS_BASE][TLS_BASE]; in build_proto_ops()
958 ops[TLS_HW ][TLS_SW ] = ops[TLS_BASE][TLS_SW ]; in build_proto_ops()
960 ops[TLS_BASE][TLS_HW ] = ops[TLS_BASE][TLS_SW ]; in build_proto_ops()
1005 prot[TLS_BASE][TLS_BASE] = *base; in build_protos()
1006 prot[TLS_BASE][TLS_BASE].setsockopt = tls_setsockopt; in build_protos()
1007 prot[TLS_BASE][TLS_BASE].getsockopt = tls_getsockopt; in build_protos()
1008 prot[TLS_BASE][TLS_BASE].disconnect = tls_disconnect; in build_protos()
1009 prot[TLS_BASE][TLS_BASE].close = tls_sk_proto_close; in build_protos()
1011 prot[TLS_SW][TLS_BASE] = prot[TLS_BASE][TLS_BASE]; in build_protos()
1012 prot[TLS_SW][TLS_BASE].sendmsg = tls_sw_sendmsg; in build_protos()
1013 prot[TLS_SW][TLS_BASE].splice_eof = tls_sw_splice_eof; in build_protos()
1015 prot[TLS_BASE][TLS_SW] = prot[TLS_BASE][TLS_BASE]; in build_protos()
1016 prot[TLS_BASE][TLS_SW].recvmsg = tls_sw_recvmsg; in build_protos()
1017 prot[TLS_BASE][TLS_SW].sock_is_readable = tls_sw_sock_is_readable; in build_protos()
1018 prot[TLS_BASE][TLS_SW].close = tls_sk_proto_close; in build_protos()
1020 prot[TLS_SW][TLS_SW] = prot[TLS_SW][TLS_BASE]; in build_protos()
1026 prot[TLS_HW][TLS_BASE] = prot[TLS_BASE][TLS_BASE]; in build_protos()
1027 prot[TLS_HW][TLS_BASE].sendmsg = tls_device_sendmsg; in build_protos()
1028 prot[TLS_HW][TLS_BASE].splice_eof = tls_device_splice_eof; in build_protos()
1030 prot[TLS_HW][TLS_SW] = prot[TLS_BASE][TLS_SW]; in build_protos()
1034 prot[TLS_BASE][TLS_HW] = prot[TLS_BASE][TLS_SW]; in build_protos()
1076 ctx->tx_conf = TLS_BASE; in tls_init()
1077 ctx->rx_conf = TLS_BASE; in tls_init()
1108 case TLS_BASE: in tls_user_config()