Symbol: TLS_HW
include/net/tls.h
513
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
1284
if (tls_ctx->tx_conf != TLS_HW) {
net/tls/tls_device.c
1339
if (ctx->tx_conf == TLS_HW)
net/tls/tls_device.c
1342
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
783
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
1102
case TLS_HW:
net/tls/tls_main.c
1145
if (ctx->tx_conf == TLS_HW && ctx->zerocopy_sendfile) {
net/tls/tls_main.c
306
if (ctx->tx_conf == TLS_HW)
net/tls/tls_main.c
349
} else if (ctx->tx_conf == TLS_HW) {
net/tls/tls_main.c
357
} else if (ctx->rx_conf == TLS_HW) {
net/tls/tls_main.c
374
free_ctx = ctx->tx_conf != TLS_HW && ctx->rx_conf != TLS_HW;
net/tls/tls_main.c
389
if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW)
net/tls/tls_main.c
523
if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW)
net/tls/tls_main.c
718
conf = TLS_HW;
net/tls/tls_main.c
738
conf = TLS_HW;
net/tls/tls_main.c
830
if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW) {
net/tls/tls_main.c
959
ops[TLS_HW ][TLS_BASE] = ops[TLS_BASE][TLS_BASE];
net/tls/tls_main.c
961
ops[TLS_HW ][TLS_SW ] = ops[TLS_BASE][TLS_SW ];
net/tls/tls_main.c
963
ops[TLS_BASE][TLS_HW ] = ops[TLS_BASE][TLS_SW ];
net/tls/tls_main.c
965
ops[TLS_SW ][TLS_HW ] = ops[TLS_SW ][TLS_SW ];
net/tls/tls_main.c
967
ops[TLS_HW ][TLS_HW ] = ops[TLS_HW ][TLS_SW ];
net/tls/tls_sw.c
1474
if (tls_ctx->rx_conf != TLS_HW)