Searched refs:ERR_PACK (Results 1 - 25 of 48) sorted by relevance

12

/freebsd-9.3-release/crypto/openssl/crypto/err/
H A Derr_str.c124 {ERR_PACK(ERR_LIB_NONE, 0, 0), "unknown library"},
125 {ERR_PACK(ERR_LIB_SYS, 0, 0), "system library"},
126 {ERR_PACK(ERR_LIB_BN, 0, 0), "bignum routines"},
127 {ERR_PACK(ERR_LIB_RSA, 0, 0), "rsa routines"},
128 {ERR_PACK(ERR_LIB_DH, 0, 0), "Diffie-Hellman routines"},
129 {ERR_PACK(ERR_LIB_EVP, 0, 0), "digital envelope routines"},
130 {ERR_PACK(ERR_LIB_BUF, 0, 0), "memory buffer routines"},
131 {ERR_PACK(ERR_LIB_OBJ, 0, 0), "object identifier routines"},
132 {ERR_PACK(ERR_LIB_PEM, 0, 0), "PEM routines"},
133 {ERR_PACK(ERR_LIB_DS
[all...]
/freebsd-9.3-release/crypto/openssl/demos/engines/cluster_labs/
H A Dhw_cluster_labs_err.c69 {ERR_PACK(0, CL_F_CLUSTER_LABS_CTRL, 0), "CLUSTER_LABS_CTRL"},
70 {ERR_PACK(0, CL_F_CLUSTER_LABS_DSA_SIGN, 0), "CLUSTER_LABS_DSA_SIGN"},
71 {ERR_PACK(0, CL_F_CLUSTER_LABS_DSA_VERIFY, 0), "CLUSTER_LABS_DSA_VERIFY"},
72 {ERR_PACK(0, CL_F_CLUSTER_LABS_FINISH, 0), "CLUSTER_LABS_FINISH"},
73 {ERR_PACK(0, CL_F_CLUSTER_LABS_INIT, 0), "CLUSTER_LABS_INIT"},
74 {ERR_PACK(0, CL_F_CLUSTER_LABS_MOD_EXP, 0), "CLUSTER_LABS_MOD_EXP"},
75 {ERR_PACK(0, CL_F_CLUSTER_LABS_MOD_EXP_CRT, 0),
77 {ERR_PACK(0, CL_F_CLUSTER_LABS_RAND_BYTES, 0), "CLUSTER_LABS_RAND_BYTES"},
78 {ERR_PACK(0, CL_F_CLUSTER_LABS_RSA_MOD_EXP, 0),
80 {ERR_PACK(
[all...]
/freebsd-9.3-release/crypto/openssl/demos/engines/zencod/
H A Dhw_zencod_err.c69 {ERR_PACK(0, ZENCOD_F_ZENCOD_BN_MOD_EXP, 0), "ZENCOD_BN_MOD_EXP"},
70 {ERR_PACK(0, ZENCOD_F_ZENCOD_CTRL, 0), "ZENCOD_CTRL"},
71 {ERR_PACK(0, ZENCOD_F_ZENCOD_DH_COMPUTE, 0), "ZENCOD_DH_COMPUTE"},
72 {ERR_PACK(0, ZENCOD_F_ZENCOD_DH_GENERATE, 0), "ZENCOD_DH_GENERATE"},
73 {ERR_PACK(0, ZENCOD_F_ZENCOD_DSA_DO_SIGN, 0), "ZENCOD_DSA_DO_SIGN"},
74 {ERR_PACK(0, ZENCOD_F_ZENCOD_DSA_DO_VERIFY, 0), "ZENCOD_DSA_DO_VERIFY"},
75 {ERR_PACK(0, ZENCOD_F_ZENCOD_FINISH, 0), "ZENCOD_FINISH"},
76 {ERR_PACK(0, ZENCOD_F_ZENCOD_INIT, 0), "ZENCOD_INIT"},
77 {ERR_PACK(0, ZENCOD_F_ZENCOD_RAND, 0), "ZENCOD_RAND"},
78 {ERR_PACK(
[all...]
/freebsd-9.3-release/crypto/openssl/demos/engines/ibmca/
H A Dhw_ibmca_err.c69 {ERR_PACK(0, IBMCA_F_IBMCA_CTRL, 0), "IBMCA_CTRL"},
70 {ERR_PACK(0, IBMCA_F_IBMCA_FINISH, 0), "IBMCA_FINISH"},
71 {ERR_PACK(0, IBMCA_F_IBMCA_INIT, 0), "IBMCA_INIT"},
72 {ERR_PACK(0, IBMCA_F_IBMCA_MOD_EXP, 0), "IBMCA_MOD_EXP"},
73 {ERR_PACK(0, IBMCA_F_IBMCA_MOD_EXP_CRT, 0), "IBMCA_MOD_EXP_CRT"},
74 {ERR_PACK(0, IBMCA_F_IBMCA_RAND_BYTES, 0), "IBMCA_RAND_BYTES"},
75 {ERR_PACK(0, IBMCA_F_IBMCA_RSA_MOD_EXP, 0), "IBMCA_RSA_MOD_EXP"},
123 IBMCA_lib_name->error = ERR_PACK(IBMCA_lib_error_code, 0, 0);
/freebsd-9.3-release/crypto/openssl/crypto/comp/
H A Dcomp_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_COMP,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/
H A Dcpt_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_CRYPTO,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_CRYPTO,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/ecdh/
H A Dech_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDH,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDH,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/objects/
H A Dobj_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_OBJ,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_OBJ,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/buffer/
H A Dbuf_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_BUF,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_BUF,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/ui/
H A Dui_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_UI,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_UI,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/dh/
H A Ddh_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_DH,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_DH,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/ecdsa/
H A Decs_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDSA,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDSA,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/jpake/
H A Djpake_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_JPAKE,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_JPAKE,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/rand/
H A Drand_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_RAND,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_RAND,0,reason)
/freebsd-9.3-release/crypto/openssl/engines/
H A De_sureware_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
128 SUREWARE_lib_name->error = ERR_PACK(SUREWARE_lib_error_code, 0, 0);
H A De_ubsec_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
128 UBSEC_lib_name->error = ERR_PACK(UBSEC_lib_error_code, 0, 0);
H A De_nuron_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
116 NURON_lib_name->error = ERR_PACK(NURON_lib_error_code, 0, 0);
H A De_4758cca_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
127 CCA4758_lib_name->error = ERR_PACK(CCA4758_lib_error_code, 0, 0);
H A De_chil_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
131 HWCRHK_lib_name->error = ERR_PACK(HWCRHK_lib_error_code, 0, 0);
H A De_cswift_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
124 CSWIFT_lib_name->error = ERR_PACK(CSWIFT_lib_error_code, 0, 0);
H A De_gmp_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
111 GMP_lib_name->error = ERR_PACK(GMP_lib_error_code, 0, 0);
H A De_aep_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
133 AEPHK_lib_name->error = ERR_PACK(AEPHK_lib_error_code, 0, 0);
H A De_atalla_err.c69 # define ERR_FUNC(func) ERR_PACK(0,func,0)
70 # define ERR_REASON(reason) ERR_PACK(0,0,reason)
119 ATALLA_lib_name->error = ERR_PACK(ATALLA_lib_error_code, 0, 0);
/freebsd-9.3-release/crypto/openssl/crypto/dsa/
H A Ddsa_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_DSA,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_DSA,0,reason)
/freebsd-9.3-release/crypto/openssl/crypto/conf/
H A Dconf_err.c69 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_CONF,func,0)
70 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_CONF,0,reason)

Completed in 200 milliseconds

12