/external/chromium_org/third_party/openssl/openssl/crypto/x509v3/ |
v3_akey.c | 87 if(akeyid->keyid) { 88 tmp = hex_to_string(akeyid->keyid->data, akeyid->keyid->length); 89 X509V3_add_value("keyid", tmp, &extlist); 104 * keyid: use the issuers subject keyid, the value 'always' means its is 107 * to only use this if keyid is not present. With the option 'always' 114 char keyid=0, issuer=0; local 129 if(!strcmp(cnf->name, "keyid")) 131 keyid = 1 [all...] |
/external/openssl/crypto/x509v3/ |
v3_akey.c | 87 if(akeyid->keyid) { 88 tmp = hex_to_string(akeyid->keyid->data, akeyid->keyid->length); 89 X509V3_add_value("keyid", tmp, &extlist); 104 * keyid: use the issuers subject keyid, the value 'always' means its is 107 * to only use this if keyid is not present. With the option 'always' 114 char keyid=0, issuer=0; local 129 if(!strcmp(cnf->name, "keyid")) 131 keyid = 1 [all...] |
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
SkbTemplate.java | 40 int keyId; 177 public void addDefaultKey(int keyId, SoftKey softKey) { 181 keyRecord.keyId = keyId; 187 if (mKeyRecords.get(pos).keyId >= keyId) break; 193 public SoftKey getDefaultKey(int keyId) { 198 if (keyRecord.keyId < keyId) { 202 if (keyRecord.keyId == keyId) [all...] |
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/ |
proximity_info.cpp | 137 const int keyId, const int x, const int y, const bool isGeometric) const { 138 const float centerX = static_cast<float>(getKeyCenterXOfKeyIdG(keyId, x, isGeometric)); 139 const float centerY = static_cast<float>(getKeyCenterYOfKeyIdG(keyId, y, isGeometric)); 195 const int keyId, const int referencePointX, const bool isGeometric) const { 196 if (keyId < 0) { 199 int centerX = (hasTouchPositionCorrectionData()) ? static_cast<int>(mSweetSpotCenterXs[keyId]) 200 : mCenterXsG[keyId]; 201 const int keyWidth = mKeyWidths[keyId]; 221 const int keyId, const int referencePointY, const bool isGeometric) const { 223 if (keyId < 0) [all...] |
proximity_info_utils.h | 151 const int *const keyWidths, const int *keyHeights, const int keyId, const int x, 153 if (keyId < 0) return true; // NOT_A_ID is -1, but return whenever < 0 just in case 154 const int left = keyXCoordinates[keyId]; 155 const int top = keyYCoordinates[keyId]; 156 const int right = left + keyWidths[keyId] + 1; 157 const int bottom = top + keyHeights[keyId]; 234 const int keyId, const int x, const int y) { 236 if (keyId < 0) return MAX_VALUE_FOR_WEIGHTING; 237 const int left = keyXCoordinates[keyId]; 238 const int top = keyYCoordinates[keyId]; [all...] |
proximity_info.h | 40 const int keyId, const int x, const int y, const bool isGeometric) const; 68 const int keyId, const int referencePointX, const bool isGeometric) const; 70 const int keyId, const int referencePointY, const bool isGeometric) const;
|
proximity_info_state.cpp | 165 const int keyId = mProximityInfo->getKeyIndexOf(codePoint); 166 if (keyId != NOT_AN_INDEX) { 167 const int index = inputIndex * mProximityInfo->getKeyCount() + keyId; 178 const int inputIndex, const int keyId) const { 181 keyId); 263 bool ProximityInfoState::isKeyInSerchKeysAfterIndex(const int index, const int keyId) const { 264 ASSERT(keyId >= 0 && index >= 0 && index < mSampledInputSize); 265 return mSampledSearchKeySets[index].test(keyId);
|
/external/chromium_org/third_party/icu/source/common/ |
servslkf.cpp | 68 UnicodeString keyID; 69 lkey.currentID(keyID); 70 if (_id == keyID) {
|
/external/icu4c/common/ |
servslkf.cpp | 68 UnicodeString keyID; 69 lkey.currentID(keyID); 70 if (_id == keyID) {
|
/frameworks/av/media/libmedia/ |
IDrm.cpp | 317 Vector<uint8_t> const &keyId, 325 writeVector(data, keyId); 336 Vector<uint8_t> const &keyId, 344 writeVector(data, keyId); 355 Vector<uint8_t> const &keyId, 362 writeVector(data, keyId); 372 Vector<uint8_t> const &keyId, 380 writeVector(data, keyId); 675 Vector<uint8_t> sessionId, keyId, input, iv, output; 677 readVector(data, keyId); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
x_x509a.c | 78 ASN1_OPT(X509_CERT_AUX, keyid, ASN1_OCTET_STRING), 112 if (!x || !x->aux || !x->aux->keyid) 114 ASN1_OCTET_STRING_free(x->aux->keyid); 115 x->aux->keyid = NULL; 119 if(!aux->keyid && !(aux->keyid = ASN1_OCTET_STRING_new())) return 0; 120 return ASN1_STRING_set(aux->keyid, id, len); 132 if(!x->aux || !x->aux->keyid) return NULL; 133 if(len) *len = x->aux->keyid->length; 134 return x->aux->keyid->data [all...] |
/external/openssl/crypto/asn1/ |
x_x509a.c | 78 ASN1_OPT(X509_CERT_AUX, keyid, ASN1_OCTET_STRING), 112 if (!x || !x->aux || !x->aux->keyid) 114 ASN1_OCTET_STRING_free(x->aux->keyid); 115 x->aux->keyid = NULL; 119 if(!aux->keyid && !(aux->keyid = ASN1_OCTET_STRING_new())) return 0; 120 return ASN1_STRING_set(aux->keyid, id, len); 132 if(!x->aux || !x->aux->keyid) return NULL; 133 if(len) *len = x->aux->keyid->length; 134 return x->aux->keyid->data [all...] |
/frameworks/av/drm/mediadrm/plugins/mock/ |
MockDrmCryptoPlugin.cpp | 452 Vector<uint8_t> const &keyId, 458 ALOGD("MockDrmPlugin::encrypt(sessionId=%s, keyId=%s, input=%s, iv=%s)", 460 vectorToString(keyId).string(), 471 // byte[] keyId -> mock-keyid 474 mByteArrayProperties.add(String8("mock-keyid"), keyId); 491 Vector<uint8_t> const &keyId, 497 ALOGD("MockDrmPlugin::decrypt(sessionId=%s, keyId=%s, input=%s, iv=%s)", 499 vectorToString(keyId).string() [all...] |
MockDrmCryptoPlugin.h | 103 Vector<uint8_t> const &keyId, 109 Vector<uint8_t> const &keyId, 115 Vector<uint8_t> const &keyId, 120 Vector<uint8_t> const &keyId,
|
/external/chromium_org/net/data/ssl/scripts/ |
ca.cnf | 36 authorityKeyIdentifier = keyid:always 43 #authorityKeyIdentifier = keyid:always 48 authorityKeyIdentifier = keyid:always
|
redundant-ca.cnf | 29 authorityKeyIdentifier = keyid:always 36 #authorityKeyIdentifier = keyid:always 41 authorityKeyIdentifier = keyid:always
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
SubjectKeyIdentifier.java | 52 byte[] keyid) 54 this.keyidentifier = keyid; 58 ASN1OctetString keyid) 60 this.keyidentifier = keyid.getOctets();
|
/external/chromium_org/content/test/data/media/ |
encrypted_media_utils.js | 136 function getInitDataFromKeyId(keyID) { 137 var init_key_id = new Uint8Array(keyID.length); 138 for(var i = 0; i < keyID.length; i++) { 139 init_key_id[i] = keyID.charCodeAt(i);
|
/external/chromium_org/third_party/openssl/openssl/android.testssl/ |
Uss.cnf | 32 authorityKeyIdentifier=keyid,issuer:always
|
/external/openssl/android.testssl/ |
Uss.cnf | 32 authorityKeyIdentifier=keyid,issuer:always
|
/frameworks/av/include/media/ |
IDrm.h | 88 Vector<uint8_t> const &keyId, 94 Vector<uint8_t> const &keyId, 100 Vector<uint8_t> const &keyId, 105 Vector<uint8_t> const &keyId,
|
/frameworks/av/media/libmediaplayerservice/ |
Drm.h | 92 Vector<uint8_t> const &keyId, 98 Vector<uint8_t> const &keyId, 104 Vector<uint8_t> const &keyId, 109 Vector<uint8_t> const &keyId,
|
Drm.cpp | 522 Vector<uint8_t> const &keyId, 536 return mPlugin->encrypt(sessionId, keyId, input, iv, output); 540 Vector<uint8_t> const &keyId, 554 return mPlugin->decrypt(sessionId, keyId, input, iv, output); 558 Vector<uint8_t> const &keyId, 571 return mPlugin->sign(sessionId, keyId, message, signature); 575 Vector<uint8_t> const &keyId, 589 return mPlugin->verify(sessionId, keyId, message, signature, match);
|
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs12/ |
p12_crt.c | 88 unsigned char keyid[EVP_MAX_MD_SIZE]; local 111 X509_digest(cert, EVP_sha1(), keyid, &keyidlen); 119 if(keyidlen && !PKCS12_add_localkeyid(bag, keyid, keyidlen)) 150 if(keyidlen && !PKCS12_add_localkeyid(bag, keyid, keyidlen)) 192 unsigned char *keyid; local 208 keyid = X509_keyid_get0(cert, &keyidlen); 210 if(keyid && !PKCS12_add_localkeyid(bag, keyid, keyidlen))
|
/external/openssl/crypto/pkcs12/ |
p12_crt.c | 88 unsigned char keyid[EVP_MAX_MD_SIZE]; local 111 X509_digest(cert, EVP_sha1(), keyid, &keyidlen); 119 if(keyidlen && !PKCS12_add_localkeyid(bag, keyid, keyidlen)) 150 if(keyidlen && !PKCS12_add_localkeyid(bag, keyid, keyidlen)) 192 unsigned char *keyid; local 208 keyid = X509_keyid_get0(cert, &keyidlen); 210 if(keyid && !PKCS12_add_localkeyid(bag, keyid, keyidlen))
|