Symbol: TLS_HW
include/net/tls.h
509
return tls_get_ctx(sk)->rx_conf == TLS_HW;
net/tls/tls_device.c
108
async_cleanup = netdev && ctx->tx_conf == TLS_HW;
net/tls/tls_device.c
1282
if (tls_ctx->tx_conf != TLS_HW) {
net/tls/tls_device.c
1337
if (ctx->tx_conf == TLS_HW)
net/tls/tls_device.c
1340
if (ctx->rx_conf == TLS_HW &&
net/tls/tls_device.c
204
if (tls_ctx->tx_conf == TLS_HW) {
net/tls/tls_device.c
60
if (ctx->tx_conf == TLS_HW)
net/tls/tls_device.c
63
if (ctx->rx_conf == TLS_HW)
net/tls/tls_device.c
781
if (tls_ctx->rx_conf != TLS_HW)
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
1031
prot[TLS_HW][TLS_SW].sendmsg = tls_device_sendmsg;
net/tls/tls_main.c
1032
prot[TLS_HW][TLS_SW].splice_eof = tls_device_splice_eof;
net/tls/tls_main.c
1034
prot[TLS_BASE][TLS_HW] = prot[TLS_BASE][TLS_SW];
net/tls/tls_main.c
1036
prot[TLS_SW][TLS_HW] = prot[TLS_SW][TLS_SW];
net/tls/tls_main.c
1038
prot[TLS_HW][TLS_HW] = prot[TLS_HW][TLS_SW];
net/tls/tls_main.c
1112
case TLS_HW:
net/tls/tls_main.c
1157
if (ctx->tx_conf == TLS_HW && ctx->zerocopy_sendfile) {
net/tls/tls_main.c
308
if (ctx->tx_conf == TLS_HW)
net/tls/tls_main.c
351
} else if (ctx->tx_conf == TLS_HW) {
net/tls/tls_main.c
359
} else if (ctx->rx_conf == TLS_HW) {
net/tls/tls_main.c
376
free_ctx = ctx->tx_conf != TLS_HW && ctx->rx_conf != TLS_HW;
net/tls/tls_main.c
391
if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW)
net/tls/tls_main.c
531
if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW)
net/tls/tls_main.c
715
conf = TLS_HW;
net/tls/tls_main.c
735
conf = TLS_HW;
net/tls/tls_main.c
827
if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW) {
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 ];
net/tls/tls_main.c
962
ops[TLS_SW ][TLS_HW ] = ops[TLS_SW ][TLS_SW ];
net/tls/tls_main.c
964
ops[TLS_HW ][TLS_HW ] = ops[TLS_HW ][TLS_SW ];
net/tls/tls_sw.c
1731
if (tls_ctx->rx_conf != TLS_HW)