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