/third_party/openssl/demos/pkey/ |
H A D | EVP_PKEY_EC_keygen.c | 21 static int get_key_values(EVP_PKEY *pkey); 27 * pkey = EVP_EC_gen(curvename); OR 28 * pkey = EVP_PKEY_Q_keygen(libctx, propq, "EC", curvename); 85 static int get_key_values(EVP_PKEY *pkey) in get_key_values() argument 94 if (!EVP_PKEY_get_utf8_string_param(pkey, OSSL_PKEY_PARAM_GROUP_NAME, in get_key_values() 101 if (!EVP_PKEY_get_octet_string_param(pkey, OSSL_PKEY_PARAM_PUB_KEY, in get_key_values() 108 if (!EVP_PKEY_get_bn_param(pkey, OSSL_PKEY_PARAM_PRIV_KEY, &out_priv)) { in get_key_values() 135 EVP_PKEY *pkey; in main() local 137 pkey = do_ec_keygen(); in main() 138 if (pkey in main() [all...] |
/third_party/openssl/demos/encode/ |
H A D | ec_encode.c | 32 EVP_PKEY *pkey = NULL; in load_key() local 46 dctx = OSSL_DECODER_CTX_new_for_pkey(&pkey, "PEM", NULL, "EC", in load_key() 83 * pkey is created by OSSL_DECODER_CTX_new_for_pkey, but we in load_key() 88 EVP_PKEY_free(pkey); in load_key() 89 pkey = NULL; in load_key() 92 return pkey; in load_key() 101 static int store_key(EVP_PKEY *pkey, FILE *f, const char *passphrase) in store_key() argument 125 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, "PEM", NULL, propq); in store_key() 178 EVP_PKEY *pkey = NULL; in main() local 189 pkey in main() [all...] |
H A D | rsa_encode.c | 32 EVP_PKEY *pkey = NULL; in load_key() local 46 dctx = OSSL_DECODER_CTX_new_for_pkey(&pkey, "PEM", NULL, "RSA", in load_key() 83 * pkey is created by OSSL_DECODER_CTX_new_for_pkey, but we in load_key() 88 EVP_PKEY_free(pkey); in load_key() 89 pkey = NULL; in load_key() 92 return pkey; in load_key() 101 static int store_key(EVP_PKEY *pkey, FILE *f, const char *passphrase) in store_key() argument 125 ectx = OSSL_ENCODER_CTX_new_for_pkey(pkey, selection, "PEM", NULL, propq); in store_key() 175 EVP_PKEY *pkey = NULL; in main() local 186 pkey in main() [all...] |
/third_party/ltp/testcases/kernel/syscalls/pkeys/ |
H A D | pkey.h | 20 inline int ltp_pkey_mprotect(void *addr, size_t len, int prot, int pkey) in ltp_pkey_mprotect() argument 22 return tst_syscall(__NR_pkey_mprotect, addr, len, prot, pkey); in ltp_pkey_mprotect() 30 inline int ltp_pkey_free(int pkey) in ltp_pkey_free() argument 32 return tst_syscall(__NR_pkey_free, pkey); in ltp_pkey_free() 42 int pkey = ltp_pkey_alloc(0, 0); in check_pkey_support() local 44 if (pkey == -1) { in check_pkey_support() 53 ltp_pkey_free(pkey); in check_pkey_support()
|
/kernel/linux/common_modules/newip/third_party/linux-5.10/include/net/ |
H A D | nndisc.h | 28 static inline bool neigh_key_eq800(const struct neighbour *n, const void *pkey) in neigh_key_eq800() argument 32 a1 = (struct nip_addr *)(pkey); in neigh_key_eq800() 40 static inline u32 nndisc_hashfn(const void *pkey, const struct net_device *dev, in nndisc_hashfn() argument 43 return (*(int *)pkey % NEWIP_NEIGH_BUCKET_MAX); in nndisc_hashfn() 47 const void *pkey) in __nip_neigh_lookup_noref() 50 pkey, dev); in __nip_neigh_lookup_noref() 54 const void *pkey) in __nip_neigh_lookup() 59 n = __nip_neigh_lookup_noref(dev, pkey); in __nip_neigh_lookup() 46 __nip_neigh_lookup_noref(struct net_device *dev, const void *pkey) __nip_neigh_lookup_noref() argument 53 __nip_neigh_lookup(struct net_device *dev, const void *pkey) __nip_neigh_lookup() argument
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | gendsa.c | 57 EVP_PKEY *pkey = NULL; in gendsa_main() local 124 pkey = load_keyparams(dsaparams, FORMAT_UNDEF, 1, "DSA", "DSA parameters"); in gendsa_main() 130 nbits = EVP_PKEY_get_bits(pkey); in gendsa_main() 135 OPENSSL_DSA_MAX_MODULUS_BITS, EVP_PKEY_get_bits(pkey)); in gendsa_main() 137 ctx = EVP_PKEY_CTX_new_from_pkey(app_get0_libctx(), pkey, app_get0_propq()); in gendsa_main() 142 EVP_PKEY_free(pkey); in gendsa_main() 143 pkey = NULL; in gendsa_main() 148 pkey = app_keygen(ctx, "DSA", nbits, verbose); in gendsa_main() 149 if (pkey == NULL) in gendsa_main() 153 if (!PEM_write_bio_PrivateKey(out, pkey, en in gendsa_main() [all...] |
H A D | pkey.c | 72 EVP_PKEY *pkey = NULL; in pkey_main() local 218 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key"); in pkey_main() 220 pkey = load_key(infile, informat, 1, passin, e, "key"); in pkey_main() 221 if (pkey == NULL) in pkey_main() 228 if (!EVP_PKEY_is_a(pkey, "EC")) in pkey_main() 239 if (EVP_PKEY_set_params(pkey, params) <= 0) in pkey_main() 247 ctx = EVP_PKEY_CTX_new(pkey, e); in pkey_main() 274 if (!PEM_write_bio_PUBKEY(out, pkey)) in pkey_main() 279 if (!PEM_write_bio_PrivateKey_traditional(out, pkey, cipher, in pkey_main() 284 if (!PEM_write_bio_PrivateKey(out, pkey, ciphe in pkey_main() [all...] |
/third_party/openssl/apps/ |
H A D | gendsa.c | 57 EVP_PKEY *pkey = NULL; in gendsa_main() local 124 pkey = load_keyparams(dsaparams, FORMAT_UNDEF, 1, "DSA", "DSA parameters"); in gendsa_main() 130 nbits = EVP_PKEY_get_bits(pkey); in gendsa_main() 135 OPENSSL_DSA_MAX_MODULUS_BITS, EVP_PKEY_get_bits(pkey)); in gendsa_main() 137 ctx = EVP_PKEY_CTX_new_from_pkey(app_get0_libctx(), pkey, app_get0_propq()); in gendsa_main() 142 EVP_PKEY_free(pkey); in gendsa_main() 143 pkey = NULL; in gendsa_main() 148 pkey = app_keygen(ctx, "DSA", nbits, verbose); in gendsa_main() 149 if (pkey == NULL) in gendsa_main() 153 if (!PEM_write_bio_PrivateKey(out, pkey, en in gendsa_main() [all...] |
H A D | pkey.c | 72 EVP_PKEY *pkey = NULL; in pkey_main() local 218 pkey = load_pubkey(infile, informat, 1, passin, e, "Public Key"); in pkey_main() 220 pkey = load_key(infile, informat, 1, passin, e, "key"); in pkey_main() 221 if (pkey == NULL) in pkey_main() 228 if (!EVP_PKEY_is_a(pkey, "EC")) in pkey_main() 239 if (EVP_PKEY_set_params(pkey, params) <= 0) in pkey_main() 247 ctx = EVP_PKEY_CTX_new(pkey, e); in pkey_main() 274 if (!PEM_write_bio_PUBKEY(out, pkey)) in pkey_main() 279 if (!PEM_write_bio_PrivateKey_traditional(out, pkey, cipher, in pkey_main() 284 if (!PEM_write_bio_PrivateKey(out, pkey, ciphe in pkey_main() [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2ms.c | 39 EVP_PKEY *pkey, int ispub) in write_msblob() 46 ret = ispub ? i2b_PublicKey_bio(out, pkey) : i2b_PrivateKey_bio(out, pkey); in write_msblob() 53 EVP_PKEY *pkey) in write_pvk() 62 ret = i2b_PVK_bio_ex(out, pkey, ctx->pvk_encr_level, in write_pvk() 134 EVP_PKEY *pkey = NULL; in key2msblob_encode() local 144 if ((pkey = EVP_PKEY_new()) != NULL && set1_key(pkey, key)) in key2msblob_encode() 145 ok = write_msblob(ctx, cout, pkey, ispub); in key2msblob_encode() 146 EVP_PKEY_free(pkey); in key2msblob_encode() 38 write_msblob(struct key2ms_ctx_st *ctx, OSSL_CORE_BIO *cout, EVP_PKEY *pkey, int ispub) write_msblob() argument 52 write_pvk(struct key2ms_ctx_st *ctx, OSSL_CORE_BIO *cout, EVP_PKEY *pkey) write_pvk() argument 155 EVP_PKEY *pkey = NULL; key2pvk_encode() local [all...] |
/third_party/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2ms.c | 39 EVP_PKEY *pkey, int ispub) in write_msblob() 46 ret = ispub ? i2b_PublicKey_bio(out, pkey) : i2b_PrivateKey_bio(out, pkey); in write_msblob() 53 EVP_PKEY *pkey) in write_pvk() 62 ret = i2b_PVK_bio_ex(out, pkey, ctx->pvk_encr_level, in write_pvk() 134 EVP_PKEY *pkey = NULL; in key2msblob_encode() local 144 if ((pkey = EVP_PKEY_new()) != NULL && set1_key(pkey, key)) in key2msblob_encode() 145 ok = write_msblob(ctx, cout, pkey, ispub); in key2msblob_encode() 146 EVP_PKEY_free(pkey); in key2msblob_encode() 38 write_msblob(struct key2ms_ctx_st *ctx, OSSL_CORE_BIO *cout, EVP_PKEY *pkey, int ispub) write_msblob() argument 52 write_pvk(struct key2ms_ctx_st *ctx, OSSL_CORE_BIO *cout, EVP_PKEY *pkey) write_pvk() argument 155 EVP_PKEY *pkey = NULL; key2pvk_encode() local [all...] |
/base/startup/hvb/libhvb/src/crypto/ |
H A D | hvb_rsa_verify.c | 315 static int hvb_rsa_verify_pss_param_check(const struct hvb_rsa_pubkey *pkey, const uint8_t *pdigest, in hvb_rsa_verify_pss_param_check() argument 321 if (!pkey || !pdigest || !psign) { in hvb_rsa_verify_pss_param_check() 324 if (!pkey->pn || !pkey->p_rr || pkey->n_n0_i == 0) { in hvb_rsa_verify_pss_param_check() 327 klen = bit2byte(pkey->width); in hvb_rsa_verify_pss_param_check() 328 n_validlen = bn_get_valid_len(pkey->pn, pkey->nlen); in hvb_rsa_verify_pss_param_check() 332 if (n_validlen != klen || pkey->rlen > pkey in hvb_rsa_verify_pss_param_check() 342 hvb_rsa_verify_pss_param_convert(const struct hvb_rsa_pubkey *pkey, uint8_t *psign, uint32_t signlen, struct long_int_num *p_n, struct long_int_num *p_rr, struct long_int_num *p_m) hvb_rsa_verify_pss_param_convert() argument 370 hvb_rsa_verify_pss(const struct hvb_rsa_pubkey *pkey, const uint8_t *pdigest, uint32_t digestlen, uint8_t *psign, uint32_t signlen, uint32_t saltlen) hvb_rsa_verify_pss() argument [all...] |
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_rsa_legacy.c | 19 EVP_PKEY *pkey; in SSL_use_RSAPrivateKey() local 26 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_use_RSAPrivateKey() 32 if (EVP_PKEY_assign_RSA(pkey, rsa) <= 0) { in SSL_use_RSAPrivateKey() 34 EVP_PKEY_free(pkey); in SSL_use_RSAPrivateKey() 38 ret = SSL_use_PrivateKey(ssl, pkey); in SSL_use_RSAPrivateKey() 39 EVP_PKEY_free(pkey); in SSL_use_RSAPrivateKey() 102 EVP_PKEY *pkey; in SSL_CTX_use_RSAPrivateKey() local 108 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_CTX_use_RSAPrivateKey() 114 if (EVP_PKEY_assign_RSA(pkey, rsa) <= 0) { in SSL_CTX_use_RSAPrivateKey() 116 EVP_PKEY_free(pkey); in SSL_CTX_use_RSAPrivateKey() [all...] |
/third_party/openssl/ssl/ |
H A D | ssl_rsa_legacy.c | 19 EVP_PKEY *pkey; in SSL_use_RSAPrivateKey() local 26 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_use_RSAPrivateKey() 32 if (EVP_PKEY_assign_RSA(pkey, rsa) <= 0) { in SSL_use_RSAPrivateKey() 34 EVP_PKEY_free(pkey); in SSL_use_RSAPrivateKey() 38 ret = SSL_use_PrivateKey(ssl, pkey); in SSL_use_RSAPrivateKey() 39 EVP_PKEY_free(pkey); in SSL_use_RSAPrivateKey() 102 EVP_PKEY *pkey; in SSL_CTX_use_RSAPrivateKey() local 108 if ((pkey = EVP_PKEY_new()) == NULL) { in SSL_CTX_use_RSAPrivateKey() 114 if (EVP_PKEY_assign_RSA(pkey, rsa) <= 0) { in SSL_CTX_use_RSAPrivateKey() 116 EVP_PKEY_free(pkey); in SSL_CTX_use_RSAPrivateKey() [all...] |
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | evp.h | 498 # define EVP_PKEY_assign_RSA(pkey,rsa) EVP_PKEY_assign((pkey),EVP_PKEY_RSA,\ 503 # define EVP_PKEY_assign_DSA(pkey,dsa) EVP_PKEY_assign((pkey),EVP_PKEY_DSA,\ 508 # define EVP_PKEY_assign_DH(pkey,dh) EVP_PKEY_assign((pkey),EVP_PKEY_DH,(dh)) 513 # define EVP_PKEY_assign_EC_KEY(pkey,eckey) \ 514 EVP_PKEY_assign((pkey), EVP_PKEY_EC, (eckey)) 518 # define EVP_PKEY_assign_SIPHASH(pkey,shkey) EVP_PKEY_assign((pkey),\ [all...] |
/third_party/openssl/include/openssl/ |
H A D | evp.h | 496 # define EVP_PKEY_assign_RSA(pkey,rsa) EVP_PKEY_assign((pkey),EVP_PKEY_RSA,\ 501 # define EVP_PKEY_assign_DSA(pkey,dsa) EVP_PKEY_assign((pkey),EVP_PKEY_DSA,\ 506 # define EVP_PKEY_assign_DH(pkey,dh) EVP_PKEY_assign((pkey),EVP_PKEY_DH,(dh)) 511 # define EVP_PKEY_assign_EC_KEY(pkey,eckey) \ 512 EVP_PKEY_assign((pkey), EVP_PKEY_EC, (eckey)) 516 # define EVP_PKEY_assign_SIPHASH(pkey,shkey) EVP_PKEY_assign((pkey),\ [all...] |
/kernel/linux/linux-5.10/arch/powerpc/mm/book3s64/ |
H A D | pkeys.c | 44 #define pkeyshift(pkey) (PKEY_REG_BITS - ((pkey+1) * AMR_BITS_PER_PKEY)) 114 * pkey_to_vmflag_bits() assumes that the pkey bits are contiguous in pkey_early_init_devtree() 127 /* scan the device tree for pkey feature */ in pkey_early_init_devtree() 260 static inline void init_amr(int pkey, u8 init_bits) in init_amr() argument 262 u64 new_amr_bits = (((u64)init_bits & 0x3UL) << pkeyshift(pkey)); in init_amr() 263 u64 old_amr = read_amr() & ~((u64)(0x3ul) << pkeyshift(pkey)); in init_amr() 268 static inline void init_iamr(int pkey, u8 init_bits) in init_iamr() argument 270 u64 new_iamr_bits = (((u64)init_bits & 0x1UL) << pkeyshift(pkey)); in init_iamr() 271 u64 old_iamr = read_iamr() & ~((u64)(0x1ul) << pkeyshift(pkey)); in init_iamr() 280 __arch_set_user_pkey_access(struct task_struct *tsk, int pkey, unsigned long init_val) __arch_set_user_pkey_access() argument 369 __arch_override_mprotect_pkey(struct vm_area_struct *vma, int prot, int pkey) __arch_override_mprotect_pkey() argument 393 pkey_access_permitted(int pkey, bool write, bool execute) pkey_access_permitted() argument [all...] |
/kernel/linux/linux-6.6/arch/powerpc/mm/book3s64/ |
H A D | pkeys.c | 49 #define pkeyshift(pkey) (PKEY_REG_BITS - ((pkey+1) * AMR_BITS_PER_PKEY)) 122 * pkey_to_vmflag_bits() assumes that the pkey bits are contiguous in pkey_early_init_devtree() 135 /* scan the device tree for pkey feature */ in pkey_early_init_devtree() 314 static inline void init_amr(int pkey, u8 init_bits) in init_amr() argument 316 u64 new_amr_bits = (((u64)init_bits & 0x3UL) << pkeyshift(pkey)); in init_amr() 317 u64 old_amr = current_thread_amr() & ~((u64)(0x3ul) << pkeyshift(pkey)); in init_amr() 322 static inline void init_iamr(int pkey, u8 init_bits) in init_iamr() argument 324 u64 new_iamr_bits = (((u64)init_bits & 0x1UL) << pkeyshift(pkey)); in init_iamr() 325 u64 old_iamr = current_thread_iamr() & ~((u64)(0x1ul) << pkeyshift(pkey)); in init_iamr() 337 __arch_set_user_pkey_access(struct task_struct *tsk, int pkey, unsigned long init_val) __arch_set_user_pkey_access() argument 390 __arch_override_mprotect_pkey(struct vm_area_struct *vma, int prot, int pkey) __arch_override_mprotect_pkey() argument 414 pkey_access_permitted(int pkey, bool write, bool execute) pkey_access_permitted() argument [all...] |
/third_party/openssl/demos/signature/ |
H A D | rsa_pss_direct.c | 41 EVP_PKEY *pkey = NULL; in sign() local 50 pkey = d2i_PrivateKey_ex(EVP_PKEY_RSA, NULL, &ppriv_key, in sign() 52 if (pkey == NULL) { in sign() 65 ctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq); in sign() 111 EVP_PKEY_free(pkey); in sign() 128 EVP_PKEY *pkey = NULL; in verify() local 134 pkey = d2i_PublicKey(EVP_PKEY_RSA, NULL, &ppub_key, sizeof(rsa_pub_key)); in verify() 135 if (pkey == NULL) { in verify() 148 ctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, propq); in verify() 181 EVP_PKEY_free(pkey); in verify() [all...] |
H A D | rsa_pss_hash.c | 36 EVP_PKEY *pkey = NULL; in sign() local 45 pkey = d2i_PrivateKey_ex(EVP_PKEY_RSA, NULL, &ppriv_key, in sign() 47 if (pkey == NULL) { in sign() 65 pkey, params) == 0) { in sign() 101 EVP_PKEY_free(pkey); in sign() 117 EVP_PKEY *pkey = NULL; in verify() local 124 pkey = d2i_PublicKey(EVP_PKEY_RSA, NULL, &ppub_key, sizeof(rsa_pub_key)); in verify() 125 if (pkey == NULL) { in verify() 143 pkey, params) == 0) { in verify() 167 EVP_PKEY_free(pkey); in verify() [all...] |
/third_party/openssl/ohos_lite/include/crypto/ |
H A D | asn1.h | 23 int (*pub_print) (BIO *out, const EVP_PKEY *pkey, int indent, 27 int (*priv_print) (BIO *out, const EVP_PKEY *pkey, int indent, 32 int (*param_decode) (EVP_PKEY *pkey, 34 int (*param_encode) (const EVP_PKEY *pkey, unsigned char **pder); 38 int (*param_print) (BIO *out, const EVP_PKEY *pkey, int indent, 43 void (*pkey_free) (EVP_PKEY *pkey); 44 int (*pkey_ctrl) (EVP_PKEY *pkey, int op, long arg1, void *arg2); 46 int (*old_priv_decode) (EVP_PKEY *pkey, 48 int (*old_priv_encode) (const EVP_PKEY *pkey, unsigned char **pder); 51 X509_ALGOR *a, ASN1_BIT_STRING *sig, EVP_PKEY *pkey); [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/vm/ |
H A D | pkey-powerpc.h | 26 #define NR_RESERVED_PKEYS_4K 27 /* pkey-0, pkey-1, exec-only-pkey 29 #define NR_RESERVED_PKEYS_64K_3KEYS 3 /* PowerNV and KVM: pkey-0, 30 pkey-1 and exec-only key */ 31 #define NR_RESERVED_PKEYS_64K_4KEYS 4 /* PowerVM: pkey-0, pkey-1, 32 pkey-31 and exec-only key */ 37 static inline u32 pkey_bit_position(int pkey) in pkey_bit_position() argument 39 return (NR_PKEYS - pkey in pkey_bit_position() 94 expect_fault_on_read_execonly_key(void *p1, int pkey) expect_fault_on_read_execonly_key() argument 108 malloc_pkey_with_mprotect_subpage(long size, int prot, u16 pkey) malloc_pkey_with_mprotect_subpage() argument [all...] |
H A D | pkey-helpers.h | 81 void expected_pkey_fault(int pkey); 83 int sys_pkey_free(unsigned long pkey); 85 unsigned long pkey); 89 #include "pkey-x86.h" 91 #include "pkey-powerpc.h" 98 static inline u64 set_pkey_bits(u64 reg, int pkey, u64 flags) in set_pkey_bits() argument 100 u32 shift = pkey_bit_position(pkey); in set_pkey_bits() 101 /* mask out bits from pkey in old value */ in set_pkey_bits() 103 /* OR in new bits for pkey */ in set_pkey_bits() 108 static inline u64 get_pkey_bits(u64 reg, int pkey) in get_pkey_bits() argument 150 __pkey_access_allow(int pkey, int do_allow) __pkey_access_allow() argument 164 __pkey_write_allow(int pkey, int do_allow_write) __pkey_write_allow() argument [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/mm/ |
H A D | pkey-powerpc.h | 23 #define NR_RESERVED_PKEYS_4K 27 /* pkey-0, pkey-1, exec-only-pkey 26 #define NR_RESERVED_PKEYS_64K_3KEYS 3 /* PowerNV and KVM: pkey-0, 27 pkey-1 and exec-only key */ 28 #define NR_RESERVED_PKEYS_64K_4KEYS 4 /* PowerVM: pkey-0, pkey-1, 29 pkey-31 and exec-only key */ 34 static inline u32 pkey_bit_position(int pkey) in pkey_bit_position() argument 36 return (NR_PKEYS - pkey in pkey_bit_position() 91 expect_fault_on_read_execonly_key(void *p1, int pkey) expect_fault_on_read_execonly_key() argument 105 malloc_pkey_with_mprotect_subpage(long size, int prot, u16 pkey) malloc_pkey_with_mprotect_subpage() argument [all...] |
/kernel/linux/linux-5.10/include/net/ |
H A D | neighbour.h | 199 __u32 (*hash)(const void *pkey, 202 bool (*key_eq)(const struct neighbour *, const void *pkey); 207 int (*is_multicast)(const void *pkey); 266 static inline bool neigh_key_eq32(const struct neighbour *n, const void *pkey) in neigh_key_eq32() argument 268 return *(const u32 *)n->primary_key == *(const u32 *)pkey; in neigh_key_eq32() 271 static inline bool neigh_key_eq128(const struct neighbour *n, const void *pkey) in neigh_key_eq128() argument 274 const u32 *p32 = pkey; in neigh_key_eq128() 282 bool (*key_eq)(const struct neighbour *n, const void *pkey), in ___neigh_lookup_noref() 283 __u32 (*hash)(const void *pkey, in ___neigh_lookup_noref() 286 const void *pkey, in ___neigh_lookup_noref() 280 ___neigh_lookup_noref( struct neigh_table *tbl, bool (*key_eq)(const struct neighbour *n, const void *pkey), __u32 (*hash)(const void *pkey, const struct net_device *dev, __u32 *hash_rnd), const void *pkey, struct net_device *dev) ___neigh_lookup_noref() argument 304 __neigh_lookup_noref(struct neigh_table *tbl, const void *pkey, struct net_device *dev) __neigh_lookup_noref() argument 317 neigh_create(struct neigh_table *tbl, const void *pkey, struct net_device *dev) neigh_create() argument 516 __neigh_lookup(struct neigh_table *tbl, const void *pkey, struct net_device *dev, int creat) __neigh_lookup() argument 528 __neigh_lookup_errno(struct neigh_table *tbl, const void *pkey, struct net_device *dev) __neigh_lookup_errno() argument [all...] |