Home
last modified time | relevance | path

Searched refs:ikey (Results 1 – 19 of 19) sorted by relevance

/external/e2fsprogs/misc/
De2undo.c302 struct undo_key_info *ikey; in main() local
476 ikey = undo_ctx.keys; in main()
535 j++, ikey++, dkey++) { in main()
536 ikey->fsblk = ext2fs_le64_to_cpu(dkey->fsblk); in main()
537 ikey->fileblk = lblk; in main()
538 ikey->blk_crc = ext2fs_le32_to_cpu(dkey->blk_crc); in main()
539 ikey->size = ext2fs_le32_to_cpu(dkey->size); in main()
540 lblk += (ikey->size + undo_ctx.blocksize - 1) / in main()
544 ikey->size) { in main()
547 tdb_file, ikey->fsblk); in main()
[all …]
/external/libnl/lib/route/link/
Dipvti.c43 uint32_t ikey; member
96 ipvti->ikey = nla_get_u32(tb[IFLA_VTI_IKEY]); in ipvti_parse()
134 NLA_PUT_U32(msg, IFLA_VTI_IKEY, ipvti->ikey); in ipvti_put_attrs()
181 nl_dump_line(p, "%x\n",ipvti->ikey); in ipvti_dump_details()
340 int rtnl_link_ipvti_set_ikey(struct rtnl_link *link, uint32_t ikey) in rtnl_link_ipvti_set_ikey() argument
346 ipvti->ikey = ikey; in rtnl_link_ipvti_set_ikey()
364 return ipvti->ikey; in rtnl_link_ipvti_get_ikey()
Dipgre.c52 uint32_t ikey; member
121 ipgre->ikey = nla_get_u32(tb[IFLA_GRE_IKEY]); in ipgre_parse()
180 NLA_PUT_U32(msg, IFLA_GRE_IKEY, ipgre->ikey); in ipgre_put_attrs()
246 nl_dump_line(p, "%x\n",ipgre->ikey); in ipgre_dump_details()
488 int rtnl_link_ipgre_set_ikey(struct rtnl_link *link, uint32_t ikey) in rtnl_link_ipgre_set_ikey() argument
494 ipgre->ikey = ikey; in rtnl_link_ipgre_set_ikey()
512 return ipgre->ikey; in rtnl_link_ipgre_get_ikey()
/external/iproute2/ip/
Dlink_vti.c58 unsigned ikey = 0; in vti_parse_opt() local
100 ikey = *(__u32 *)RTA_DATA(vtiinfo[IFLA_VTI_IKEY]); in vti_parse_opt()
131 ikey = okey = uval; in vti_parse_opt()
145 ikey = uval; in vti_parse_opt()
189 addattr32(n, 1024, IFLA_VTI_IKEY, ikey); in vti_parse_opt()
Dlink_vti6.c56 unsigned ikey = 0; in vti6_parse_opt() local
96 ikey = rta_getattr_u32(vtiinfo[IFLA_VTI_IKEY]); in vti6_parse_opt()
127 ikey = okey = uval; in vti6_parse_opt()
141 ikey = uval; in vti6_parse_opt()
186 addattr32(n, 1024, IFLA_VTI_IKEY, ikey); in vti6_parse_opt()
Dlink_gre.c64 unsigned ikey = 0; in gre_parse_opt() local
114 ikey = rta_getattr_u32(greinfo[IFLA_GRE_IKEY]); in gre_parse_opt()
175 ikey = okey = uval; in gre_parse_opt()
190 ikey = uval; in gre_parse_opt()
305 if (!ikey && IN_MULTICAST(ntohl(daddr))) { in gre_parse_opt()
306 ikey = daddr; in gre_parse_opt()
318 addattr32(n, 1024, IFLA_GRE_IKEY, ikey); in gre_parse_opt()
Dlink_gre6.c74 unsigned ikey = 0; in gre_parse_opt() local
120 ikey = rta_getattr_u32(greinfo[IFLA_GRE_IKEY]); in gre_parse_opt()
171 ikey = okey = uval; in gre_parse_opt()
186 ikey = uval; in gre_parse_opt()
282 addattr32(n, 1024, IFLA_GRE_IKEY, ikey); in gre_parse_opt()
/external/mesa3d/src/mesa/program/
Dprog_cache.c61 const GLuint *ikey = (const GLuint *) key; in hash_key() local
68 for (i = 0; i < key_size / sizeof(*ikey); i++) in hash_key()
70 hash += ikey[i]; in hash_key()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl_ocsp.c398 ASN1_BIT_STRING *ikey; in issuer_match() local
435 ikey = X509_get0_pubkey_bitstr(issuer); in issuer_match()
436 if (!ikey || in issuer_match()
437 !EVP_Digest(ikey->data, ikey->length, md, &len, dgst, NULL) || in issuer_match()
/external/libnl/include/netlink/route/link/
Dipvti.h27 extern int rtnl_link_ipvti_set_ikey(struct rtnl_link *link, uint32_t ikey);
Dipgre.h34 extern int rtnl_link_ipgre_set_ikey(struct rtnl_link *link, uint32_t ikey);
/external/mesa3d/src/gallium/auxiliary/cso_cache/
Dcso_cache.c50 unsigned *ikey = (unsigned *)key; in hash_key() local
58 hash ^= ikey[i]; in hash_key()
/external/wpa_supplicant_8/src/ap/
Dieee802_1x.c240 u8 *ikey; in ieee802_1x_tx_key() local
241 ikey = os_malloc(hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
242 if (ikey == NULL || in ieee802_1x_tx_key()
243 random_get_bytes(ikey, hapd->conf->individual_wep_key_len)) in ieee802_1x_tx_key()
247 os_free(ikey); in ieee802_1x_tx_key()
252 ikey, hapd->conf->individual_wep_key_len); in ieee802_1x_tx_key()
254 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey, in ieee802_1x_tx_key()
260 sta->addr, 0, 1, NULL, 0, ikey, in ieee802_1x_tx_key()
266 os_free(ikey); in ieee802_1x_tx_key()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_program_cache.c103 GLuint *ikey = (GLuint *)item->key; in hash_key() local
111 hash ^= ikey[i]; in hash_key()
/external/clang/lib/Serialization/
DASTReaderInternals.h275 static hash_value_type ComputeHash(internal_key_ref ikey);
DASTReader.cpp1530 unsigned HeaderFileInfoTrait::ComputeHash(internal_key_ref ikey) { in ComputeHash() argument
1531 return llvm::hash_combine(ikey.Size, ikey.ModTime); in ComputeHash()
1536 internal_key_type ikey = {FE->getSize(), in GetInternalKey() local
1539 return ikey; in GetInternalKey()
1577 internal_key_type ikey; in ReadKey() local
1578 ikey.Size = off_t(endian::readNext<uint64_t, little, unaligned>(d)); in ReadKey()
1579 ikey.ModTime = time_t(endian::readNext<uint64_t, little, unaligned>(d)); in ReadKey()
1580 ikey.Filename = (const char *)d; in ReadKey()
1581 ikey.Imported = true; in ReadKey()
1582 return ikey; in ReadKey()
/external/boringssl/src/crypto/x509/
Dx509_vfy.c1516 EVP_PKEY *ikey = NULL; in check_crl() local
1587 ikey = X509_get_pubkey(issuer); in check_crl()
1589 if (!ikey) { in check_crl()
1596 rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags); in check_crl()
1604 if (X509_CRL_verify(crl, ikey) <= 0) { in check_crl()
1616 EVP_PKEY_free(ikey); in check_crl()
/external/libnl/doc/
Droute.txt944 extern int rtnl_link_ipgre_set_ikey(struct rtnl_link *link, uint32_t ikey);
1022 extern int rtnl_link_sit_set_ikey(struct rtnl_link *link, uint32_t ikey);
1095 extern int rtnl_link_ipvti_set_ikey(struct rtnl_link *link, uint32_t ikey);
/external/iproute2/doc/
Dip-cref.tex2530 \item \verb|key K|, \verb|ikey K|, \verb|okey K|
2535 The \verb|ikey| and \verb|okey| parameters set different keys for input and output.