/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
D | CencSampleEncryptionInformationGroupEntry.java | 39 private byte[] kid = new byte[16]; field in CencSampleEncryptionInformationGroupEntry 45 kid = new byte[16]; in parse() 46 byteBuffer.get(kid); in parse() 55 byteBuffer.put(kid); in get() 77 return kid; in getKid() 80 public void setKid(byte[] kid) { in setKid() argument 81 assert kid.length == 16; in setKid() 82 this.kid = kid; in setKid() 90 ", kid=" + Hex.encodeHex(kid) + in toString() 111 if (!Arrays.equals(kid, that.kid)) { in equals() [all …]
|
/external/u-boot/lib/crypto/ |
D | x509_cert_parser.c | 72 struct asymmetric_key_id *kid; in x509_cert_parse() local 129 kid = asymmetric_key_generate_id(cert->raw_serial, in x509_cert_parse() 133 if (IS_ERR(kid)) { in x509_cert_parse() 134 ret = PTR_ERR(kid); in x509_cert_parse() 137 cert->id = kid; in x509_cert_parse() 488 struct asymmetric_key_id *kid; in x509_process_extension() local 504 kid = asymmetric_key_generate_id(v, vlen, "", 0); in x509_process_extension() 505 if (IS_ERR(kid)) in x509_process_extension() 506 return PTR_ERR(kid); in x509_process_extension() 507 ctx->cert->skid = kid; in x509_process_extension() [all …]
|
D | asymmetric_type.c | 154 struct asymmetric_key_id *kid; in asymmetric_key_generate_id() local 156 kid = kmalloc(sizeof(struct asymmetric_key_id) + len_1 + len_2, in asymmetric_key_generate_id() 158 if (!kid) in asymmetric_key_generate_id() 160 kid->len = len_1 + len_2; in asymmetric_key_generate_id() 161 memcpy(kid->data, val_1, len_1); in asymmetric_key_generate_id() 162 memcpy(kid->data + len_1, val_2, len_2); in asymmetric_key_generate_id() 163 return kid; in asymmetric_key_generate_id() 349 const struct asymmetric_key_id *kid; in asymmetric_key_describe() local 360 kid = kids->id[1]; in asymmetric_key_describe() 362 n = kid->len; in asymmetric_key_describe() [all …]
|
D | pkcs7_parser.c | 658 struct asymmetric_key_id *kid; local 667 kid = asymmetric_key_generate_id(ctx->raw_serial, 672 kid = asymmetric_key_generate_id(ctx->raw_skid, 676 if (IS_ERR(kid)) 677 return PTR_ERR(kid); 679 pr_devel("SINFO KID: %u [%*phN]\n", kid->len, kid->len, kid->data); 681 sinfo->sig->auth_ids[0] = kid;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ |
D | AbstractSampleEncryptionBox.java | 26 byte[] kid = new byte[]{-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}; field in AbstractSampleEncryptionBox 48 kid = new byte[16]; in _parseDetails() 49 content.get(kid); in _parseDetails() 110 return kid; in getKid() 113 public void setKid(byte[] kid) { in setKid() argument 114 this.kid = kid; in setKid() 149 byteBuffer.put(kid); in getContent() 176 contentSize += kid.length; in getContentSize() 322 if (!Arrays.equals(kid, that.kid)) { in equals() 333 result = 31 * result + (kid != null ? Arrays.hashCode(kid) : 0); in hashCode()
|
/external/ppp/pppd/plugins/ |
D | passprompt.c | 31 pid_t kid; in promptpass() local 45 if ((kid = fork()) == (pid_t) -1) { in promptpass() 51 if (!kid) { in promptpass() 88 while (waitpid(kid, &wstat, 0) < 0) { in promptpass()
|
/external/pdfium/core/fpdfdoc/ |
D | cpdf_structtree.cpp | 109 for (CPDF_StructKid& kid : *pParentElement->GetKids()) { in AddPageNode() 110 if (kid.m_Type == CPDF_StructKid::kElement && kid.m_pDict == pDict) { in AddPageNode() 111 kid.m_pElement = pElement; in AddPageNode()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMDocumentImpl.java | 1031 int kid = nodeHandle + 1; in getFirstChild() local 1032 nodes.readSlot(kid, gotslot); in getFirstChild() 1035 kid = gotslot[2]; in getFirstChild() 1037 if (kid == NULL) return NULL; in getFirstChild() 1038 nodes.readSlot(kid, gotslot); in getFirstChild() 1043 int firstChild = kid | m_docHandle; in getFirstChild() 1205 int kid = NULL; in getPreviousSibling() local 1208 kid = nextkid; in getPreviousSibling() 1210 return kid | m_docHandle; in getPreviousSibling()
|
/external/grpc-grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_verifier.cc | 123 const char* kid; member 155 h->kid = validate_string_field(cur, "kid"); in jose_header_from_json() 156 if (h->kid == nullptr) goto error; in jose_header_from_json() 573 const char* kid = nullptr; in find_verification_key() local 584 kid = key_prop->value; in find_verification_key() 590 if (alg != nullptr && kid != nullptr && kty != nullptr && in find_verification_key() 591 strcmp(kid, header_kid) == 0 && strcmp(alg, header_alg) == 0) { in find_verification_key() 645 find_verification_key(json, ctx->header->alg, ctx->header->kid); in on_keys_retrieved() 648 ctx->header->kid); in on_keys_retrieved() 784 if (ctx->header->kid == nullptr) { in retrieve_key_and_verify()
|
/external/grpc-grpc/test/core/security/ |
D | json_token_test.cc | 236 grpc_json* kid = nullptr; in check_jwt_header() local 244 kid = ptr; in check_jwt_header() 255 GPR_ASSERT(kid != nullptr); in check_jwt_header() 256 GPR_ASSERT(kid->type == GRPC_JSON_STRING); in check_jwt_header() 257 GPR_ASSERT(strcmp(kid->value, "e6b5137873db8d2ef81e06a47289e6434ec8a165") == in check_jwt_header()
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl16.c | 296 void dochild(int kid) in dochild() argument 306 if (kid) { in dochild() 311 test + 1, kid, errno); in dochild() 319 test + 1, kid, errno); in dochild()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | KeymanCheck.java | 124 for (String kid : Keyboard.getKeyboardIDs(kpid)) { in prettyprint() 125 keyboardLangs.put(ltp.set(kid).getLanguageScript(), kid); in prettyprint() local
|
/external/wpa_supplicant_8/src/common/ |
D | dpp_crypto.c | 1107 struct wpabuf *kid = NULL; in dpp_parse_jws_prot_hdr() local 1167 kid = json_get_member_base64url(root, "kid"); in dpp_parse_jws_prot_hdr() 1168 if (!kid) { in dpp_parse_jws_prot_hdr() 1173 kid); in dpp_parse_jws_prot_hdr() 1177 return kid; in dpp_parse_jws_prot_hdr() 1219 struct wpabuf *kid = NULL; in dpp_process_signed_connector() local 1264 kid = dpp_parse_jws_prot_hdr(curve, prot_hdr, prot_hdr_len, &sign_md); in dpp_process_signed_connector() 1265 if (!kid) { in dpp_process_signed_connector() 1269 if (wpabuf_len(kid) != SHA256_MAC_LEN) { in dpp_process_signed_connector() 1272 (unsigned int) wpabuf_len(kid), SHA256_MAC_LEN); in dpp_process_signed_connector() [all …]
|
D | dpp_i.h | 41 const char *kid, const struct dpp_curve_params *curve);
|
D | dpp.c | 1314 const char *kid, const struct dpp_curve_params *curve) in dpp_build_jwk() argument 1336 if (kid) { in dpp_build_jwk() 1338 json_add_string(buf, "kid", kid); in dpp_build_jwk() 1479 tailroom += 2 * curve->prime_len * 4 / 3 + os_strlen(auth->conf->kid); in dpp_build_conf_obj_dpp() 1502 if (dpp_build_jwk(buf, "csign", auth->conf->csign, auth->conf->kid, in dpp_build_conf_obj_dpp() 3086 os_free(conf->kid); in dpp_configurator_free() 3141 conf->kid = base64_url_encode(conf->kid_hash, sizeof(conf->kid_hash), in dpp_configurator_gen_kid() 3143 return conf->kid ? 0 : -1; in dpp_configurator_gen_kid() 3987 const u8 *kid) in dpp_configurator_find_kid() argument 3996 if (os_memcmp(conf->kid_hash, kid, SHA256_MAC_LEN) == 0) in dpp_configurator_find_kid()
|
D | dpp.h | 338 char *kid; member 626 const u8 *kid);
|
/external/python/cpython2/Lib/lib2to3/ |
D | fixer_util.py | 360 for i, kid in enumerate(child.children[3:]): 361 if kid.type == token.COLON and kid.value == ":":
|
/external/python/cpython3/Lib/lib2to3/ |
D | fixer_util.py | 381 for i, kid in enumerate(child.children[3:]): 382 if kid.type == token.COLON and kid.value == ":":
|
/external/python/cpython2/Parser/ |
D | spark.py | 747 for kid in node: 748 self.preorder(kid) 759 for kid in node: 760 self.postorder(kid)
|
/external/v8/src/objects/ |
D | contexts.h | 655 static bool IsBootstrappingOrValidParentContext(Object object, Context kid);
|
/external/ImageMagick/Magick++/demo/ |
D | model.miff | 65 …LMLLLKNRLNqqSNR~~]SRifebGDDDEEHHTc???73356) 3������v��������ibeaahil��hkkd�kidaiz��ô������������…
|
/external/icu/icu4c/source/data/locales/ |
D | lv.txt | 1228 "du al-kidā", 1244 "du al-kidā",
|
/external/guava/guava-tests/test/com/google/common/io/testdata/ |
D | alice_in_wonderland.txt | 296 pair of white kid gloves in one hand and a large fan in the 302 sir--' The Rabbit started violently, dropped the white kid 359 white kid gloves while she was talking. `How CAN I have done 742 looking for the fan and the pair of white kid gloves, and she 776 or three pairs of tiny white kid gloves: she took up the fan and
|
/external/python/google-api-python-client/samples/prediction/ |
D | language_id.txt | 63 …w, and on it (as she had hoped) a fan and two or three pairs of tiny white kid gloves: she took up… 198 … was surprised to see that she had put on one of the Rabbit's little white kid gloves while she wa… 339 …kid gloves in one hand and a large fan in the other: he came trotting along in a great hurry, mutt… 389 … guessed in a moment that it was looking for the fan and the pair of white kid gloves, and she ver…
|
/external/guava/android/guava-tests/test/com/google/common/io/testdata/ |
D | alice_in_wonderland.txt | 296 pair of white kid gloves in one hand and a large fan in the 302 sir--' The Rabbit started violently, dropped the white kid 359 white kid gloves while she was talking. `How CAN I have done 742 looking for the fan and the pair of white kid gloves, and she 776 or three pairs of tiny white kid gloves: she took up the fan and
|