rcipher 74 crypto/crypto_user_base.c struct crypto_report_cipher rcipher; rcipher 76 crypto/crypto_user_base.c memset(&rcipher, 0, sizeof(rcipher)); rcipher 78 crypto/crypto_user_base.c strscpy(rcipher.type, "cipher", sizeof(rcipher.type)); rcipher 80 crypto/crypto_user_base.c rcipher.blocksize = alg->cra_blocksize; rcipher 81 crypto/crypto_user_base.c rcipher.min_keysize = alg->cra_cipher.cia_min_keysize; rcipher 82 crypto/crypto_user_base.c rcipher.max_keysize = alg->cra_cipher.cia_max_keysize; rcipher 85 crypto/crypto_user_base.c sizeof(rcipher), &rcipher); rcipher 50 crypto/crypto_user_stat.c struct crypto_stat_cipher rcipher; rcipher 52 crypto/crypto_user_stat.c memset(&rcipher, 0, sizeof(rcipher)); rcipher 54 crypto/crypto_user_stat.c strscpy(rcipher.type, "cipher", sizeof(rcipher.type)); rcipher 56 crypto/crypto_user_stat.c rcipher.stat_encrypt_cnt = atomic64_read(&alg->stats.cipher.encrypt_cnt); rcipher 57 crypto/crypto_user_stat.c rcipher.stat_encrypt_tlen = atomic64_read(&alg->stats.cipher.encrypt_tlen); rcipher 58 crypto/crypto_user_stat.c rcipher.stat_decrypt_cnt = atomic64_read(&alg->stats.cipher.decrypt_cnt); rcipher 59 crypto/crypto_user_stat.c rcipher.stat_decrypt_tlen = atomic64_read(&alg->stats.cipher.decrypt_tlen); rcipher 60 crypto/crypto_user_stat.c rcipher.stat_err_cnt = atomic64_read(&alg->stats.cipher.err_cnt); rcipher 62 crypto/crypto_user_stat.c return nla_put(skb, CRYPTOCFGA_STAT_CIPHER, sizeof(rcipher), &rcipher);