Symbol: action_type
crypto/krb5/src/clients/kinit/kinit.c
110
action_type action;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1007
if (ctx->action_type != OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1032
if (ctx->action_type != OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1074
if (ctx->action_type != OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1100
if (ctx->action_type != OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1149
if (ctx->action_type != OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1199
if (!ossl_assert(ctx->action_type == OSSL_ACTION_NONE))
crypto/openssl/crypto/evp/ctrl_params_translate.c
1204
ctx->action_type = OSSL_ACTION_GET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1206
ctx->action_type = OSSL_ACTION_SET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1208
ctx->action_type = OSSL_ACTION_SET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1211
if (!ossl_assert(ctx->action_type != OSSL_ACTION_NONE))
crypto/openssl/crypto/evp/ctrl_params_translate.c
1213
} else if (state == POST_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_NONE) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1214
ctx->action_type = OSSL_ACTION_GET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
1220
if (state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_SET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1230
if (state == POST_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1238
} else if (state == PRE_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1240
} else if (state == POST_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1267
if (state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1282
} else if (state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_SET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1303
} else if (state == POST_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1328
ctx->action_type, state, ctx->p1);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1346
if ((ctx->action_type == OSSL_ACTION_SET && state == PRE_PARAMS_TO_CTRL)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1347
|| (ctx->action_type == OSSL_ACTION_GET && state == POST_CTRL_TO_PARAMS)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1358
ctx->action_type, state, (const char *)ctx->p2);
crypto/openssl/crypto/evp/ctrl_params_translate.c
1387
if (state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1403
} else if ((ctx->action_type == OSSL_ACTION_SET && state == PRE_CTRL_TO_PARAMS)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1404
|| (ctx->action_type == OSSL_ACTION_GET && state == POST_PARAMS_TO_CTRL)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1425
if ((ctx->action_type == OSSL_ACTION_SET && state == PRE_PARAMS_TO_CTRL)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1426
|| (ctx->action_type == OSSL_ACTION_GET && state == POST_CTRL_TO_PARAMS)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1467
if ((ctx->action_type == OSSL_ACTION_SET && state == PRE_CTRL_TO_PARAMS)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1468
|| (ctx->action_type == OSSL_ACTION_GET && state == POST_PARAMS_TO_CTRL)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
1484
if ((ctx->action_type == OSSL_ACTION_SET && state == PRE_PARAMS_TO_CTRL)
crypto/openssl/crypto/evp/ctrl_params_translate.c
1485
|| (ctx->action_type == OSSL_ACTION_GET && state == POST_CTRL_TO_PARAMS)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
181
enum action action_type;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2036
ctx->action_type = OSSL_ACTION_NONE;
crypto/openssl/crypto/evp/ctrl_params_translate.c
235
enum action action_type;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2623
if (item->action_type != OSSL_ACTION_NONE
crypto/openssl/crypto/evp/ctrl_params_translate.c
2624
&& item->action_type != OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
2661
if ((item->action_type != OSSL_ACTION_NONE
crypto/openssl/crypto/evp/ctrl_params_translate.c
2662
&& tmpl->action_type != item->action_type)
crypto/openssl/crypto/evp/ctrl_params_translate.c
2727
ctx.action_type = translation->action_type;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2737
switch (ctx.action_type) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
2782
tmpl.action_type = OSSL_ACTION_SET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2792
ctx.action_type = translation->action_type;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2796
ctx.action_type = OSSL_ACTION_SET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2807
switch (ctx.action_type) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
2833
enum action action_type,
crypto/openssl/crypto/evp/ctrl_params_translate.c
2850
ctx.action_type = tmpl.action_type = action_type;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2866
if (ret > 0 && ctx.action_type != OSSL_ACTION_NONE)
crypto/openssl/crypto/evp/ctrl_params_translate.c
2910
enum action action_type,
crypto/openssl/crypto/evp/ctrl_params_translate.c
2925
tmpl.action_type = action_type;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2932
ctx.action_type = translation->action_type;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2943
|| !ossl_assert(translation->action_type == OSSL_ACTION_GET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
323
if (!ossl_assert(translation->action_type != OSSL_ACTION_GET)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
408
"[action:%d, state:%d]", ctx->action_type, state);
crypto/openssl/crypto/evp/ctrl_params_translate.c
419
if (ctx->action_type == OSSL_ACTION_NONE) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
425
"[action:%d, state:%d]", ctx->action_type, state);
crypto/openssl/crypto/evp/ctrl_params_translate.c
470
if (ctx->action_type == OSSL_ACTION_SET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
494
ctx->action_type, state);
crypto/openssl/crypto/evp/ctrl_params_translate.c
526
if (ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
553
if (ctx->action_type != OSSL_ACTION_SET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
556
ctx->action_type, state);
crypto/openssl/crypto/evp/ctrl_params_translate.c
587
ctx->action_type, state,
crypto/openssl/crypto/evp/ctrl_params_translate.c
618
if (state == PRE_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_SET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
651
ctx->action_type, state,
crypto/openssl/crypto/evp/ctrl_params_translate.c
656
&& ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
697
ctx->action_type, state,
crypto/openssl/crypto/evp/ctrl_params_translate.c
701
} else if (state == PRE_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
759
if (state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
770
} else if (state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_SET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
780
} else if (state == POST_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
788
if (state == POST_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
795
} else if (state == PRE_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_SET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
829
&& ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
864
if (!ossl_assert(ctx->action_type == OSSL_ACTION_NONE))
crypto/openssl/crypto/evp/ctrl_params_translate.c
879
ctx->action_type = OSSL_ACTION_GET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
881
ctx->action_type = OSSL_ACTION_SET;
crypto/openssl/crypto/evp/ctrl_params_translate.c
888
if ((state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
889
|| (state == POST_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
906
if ((state == POST_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_GET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
907
|| (state == PRE_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_SET)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
918
} else if (state == PRE_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
963
if ((state == PRE_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
964
|| (state == POST_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_GET)) {
crypto/openssl/crypto/evp/ctrl_params_translate.c
981
if ((state == PRE_PARAMS_TO_CTRL && ctx->action_type == OSSL_ACTION_SET)
crypto/openssl/crypto/evp/ctrl_params_translate.c
982
|| (state == POST_CTRL_TO_PARAMS && ctx->action_type == OSSL_ACTION_GET)) {
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
1561
MLX5_SET(copy_action_in, action, action_type, MLX5_ACTION_TYPE_COPY);
sys/dev/mlx5/mlx5_accel/mlx5_ipsec_fs.c
357
MLX5_SET(set_action_in, action, action_type, MLX5_ACTION_TYPE_SET);
sys/dev/mlx5/mlx5_ifc.h
5584
u8 action_type[0x4];
sys/dev/mlx5/mlx5_ifc.h
5595
u8 action_type[0x4];
sys/dev/mlx5/mlx5_ifc.h
5603
u8 action_type[0x4];