Home
last modified time | relevance | path

Searched refs:kid (Results 1 – 25 of 34) sorted by relevance

12

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
DCencSampleEncryptionInformationGroupEntry.java39 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/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
DAbstractSampleEncryptionBox.java26 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/
Dpassprompt.c31 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/
Dcpdf_structtree.cpp108 for (CPDF_StructKid& kid : *pParentElement->GetKids()) { in AddPageNode()
109 if (kid.m_Type == CPDF_StructKid::Element && kid.m_pDict == pDict) { in AddPageNode()
110 kid.m_pElement = pElement; in AddPageNode()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDocumentImpl.java1031 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/
Djwt_verifier.cc123 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/
Djson_token_test.cc236 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/
Dfcntl16.c296 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/
DKeymanCheck.java124 for (String kid : Keyboard.getKeyboardIDs(kpid)) { in prettyprint()
125 keyboardLangs.put(ltp.set(kid).getLanguageScript(), kid); in prettyprint() local
/external/python/cpython2/Lib/lib2to3/
Dfixer_util.py360 for i, kid in enumerate(child.children[3:]):
361 if kid.type == token.COLON and kid.value == ":":
/external/python/cpython3/Lib/lib2to3/
Dfixer_util.py381 for i, kid in enumerate(child.children[3:]):
382 if kid.type == token.COLON and kid.value == ":":
/external/python/cpython2/Parser/
Dspark.py747 for kid in node:
748 self.preorder(kid)
759 for kid in node:
760 self.postorder(kid)
/external/wpa_supplicant_8/src/common/
Ddpp.c4425 const char *kid, const struct dpp_curve_params *curve) in dpp_build_jwk() argument
4450 if (kid) { in dpp_build_jwk()
4452 wpabuf_put_str(buf, kid); in dpp_build_jwk()
4592 auth->conf->kid, curve->jws_alg); in dpp_build_conf_obj_dpp()
4655 tailroom += 2 * curve->prime_len * 4 / 3 + os_strlen(auth->conf->kid); in dpp_build_conf_obj_dpp()
4675 if (dpp_build_jwk(buf, "csign", auth->conf->csign, auth->conf->kid, in dpp_build_conf_obj_dpp()
5013 struct wpabuf *kid = NULL; in dpp_parse_jws_prot_hdr() local
5073 kid = json_get_member_base64url(root, "kid"); in dpp_parse_jws_prot_hdr()
5074 if (!kid) { in dpp_parse_jws_prot_hdr()
5079 kid); in dpp_parse_jws_prot_hdr()
[all …]
Ddpp.h252 char *kid; member
/external/v8/src/
Dcontexts.h639 static bool IsBootstrappingOrValidParentContext(Object* object, Context* kid);
/external/icu/icu4c/source/data/locales/
Dlv.txt1242 "du al-kidā",
1258 "du al-kidā",
/external/ImageMagick/Magick++/demo/
Dmodel.miff65 …LMLLLKNRLNqqSNR~~]SRifebGDDDEEHHTc???73356) 3������v��������ibeaahil��hkkd�kidaiz��ô������������…
/external/python/google-api-python-client/samples/prediction/
Dlanguage_id.txt63 …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…
339kid 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/guava-tests/test/com/google/common/io/testdata/
Dalice_in_wonderland.txt296 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/brotli/tests/testdata/
Dalice29.txt298 pair of white kid gloves in one hand and a large fan in the
304 sir--' The Rabbit started violently, dropped the white kid
361 white kid gloves while she was talking. `How CAN I have done
744 looking for the fan and the pair of white kid gloves, and she
778 or three pairs of tiny white kid gloves: she took up the fan and
Dplrabn12.txt3030 Dandled the kid; bears, tigers, ounces, pards,
7426 Unsucked of lamb or kid, that tend their play.
10068 Oft sacrificing bullock, lamb, or kid,
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dsat-fonipa-t-sat-Olck.txt2526 ᱱᱟᱹᱠᱤᱡ nəkid͡ʒ
/external/hyphenation-patterns/hu/
Dhyph-hu.pat.txt28340 2kidéz
28343 2kidőb
28344 2kidők
28345 2kidőm
28347 2kidőt
30913 lé2kid
33892 mé2kid
35786 né2kid
44895 pö2kid
50324 sö2kid
[all …]
/external/guice/extensions/struts2/lib/
Djetty-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/ ...
/external/hyphenation-patterns/nb/
Dhyph-nb.pat.txt27204 å6kid

12