Searched refs:keySize (Results 1 - 21 of 21) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A Degl_cache.h55 void setBlob(const void* key, EGLsizeiANDROID keySize, const void* value,
61 EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize,
H A Degl_cache.cpp62 static void setBlob(const void* key, EGLsizeiANDROID keySize, argument
64 egl_cache_t::get()->setBlob(key, keySize, value, valueSize);
67 static EGLsizeiANDROID getBlob(const void* key, EGLsizeiANDROID keySize, argument
69 return egl_cache_t::get()->getBlob(key, keySize, value, valueSize);
133 void egl_cache_t::setBlob(const void* key, EGLsizeiANDROID keySize, argument
137 if (keySize < 0 || valueSize < 0) {
144 bc->set(key, keySize, value, valueSize);
172 EGLsizeiANDROID egl_cache_t::getBlob(const void* key, EGLsizeiANDROID keySize, argument
176 if (keySize < 0 || valueSize < 0) {
183 return bc->get(key, keySize, valu
[all...]
/frameworks/base/keystore/java/android/security/
H A DKeyPairGeneratorSpec.java104 * @param keySize size of key to generate
115 public KeyPairGeneratorSpec(Context context, String keyStoreAlias, String keyType, int keySize, argument
141 mKeySize = keySize;
350 public Builder setKeySize(int keySize) { argument
351 if (keySize < 0) {
352 throw new IllegalArgumentException("keySize < 0");
354 mKeySize = keySize;
H A DKeyStore.java291 public boolean generate(String key, int uid, int keyType, int keySize, int flags, argument
294 return mBinder.generate(key, uid, keyType, keySize, flags,
/frameworks/wilhelm/src/itf/
H A DIMetadataExtraction.c72 SLuint32 index, SLuint32 keySize, SLMetadataInfo *pKey)
83 index, keySize, pKey);
147 SLuint32 keySize, const void *pKey, SLuint32 keyEncoding,
158 thiz->mKeySize = keySize;
71 IMetadataExtraction_GetKey(SLMetadataExtractionItf self, SLuint32 index, SLuint32 keySize, SLMetadataInfo *pKey) argument
146 IMetadataExtraction_AddKeyFilter(SLMetadataExtractionItf self, SLuint32 keySize, const void *pKey, SLuint32 keyEncoding, const SLchar *pValueLangCountry, SLuint32 valueEncoding, SLuint8 filterMask) argument
/frameworks/base/keystore/java/android/security/keystore/
H A DKeyInfo.java91 int keySize,
106 mKeySize = keySize;
88 KeyInfo(String keystoreKeyAlias, boolean insideSecureHardware, @KeyProperties.OriginEnum int origin, int keySize, Date keyValidityStart, Date keyValidityForOriginationEnd, Date keyValidityForConsumptionEnd, @KeyProperties.PurposeEnum int purposes, @KeyProperties.EncryptionPaddingEnum String[] encryptionPaddings, @KeyProperties.SignaturePaddingEnum String[] signaturePaddings, @KeyProperties.DigestEnum String[] digests, @KeyProperties.BlockModeEnum String[] blockModes, boolean userAuthenticationRequired, int userAuthenticationValidityDurationSeconds, boolean userAuthenticationRequirementEnforcedBySecureHardware) argument
H A DKeyGenParameterSpec.java257 int keySize,
296 mKeySize = keySize;
588 public Builder setKeySize(int keySize) { argument
589 if (keySize < 0) {
590 throw new IllegalArgumentException("keySize < 0");
592 mKeySize = keySize;
255 KeyGenParameterSpec( String keyStoreAlias, int keySize, AlgorithmParameterSpec spec, X500Principal certificateSubject, BigInteger certificateSerialNumber, Date certificateNotBefore, Date certificateNotAfter, Date keyValidityStart, Date keyValidityForOriginationEnd, Date keyValidityForConsumptionEnd, @KeyProperties.PurposeEnum int purposes, @KeyProperties.DigestEnum String[] digests, @KeyProperties.EncryptionPaddingEnum String[] encryptionPaddings, @KeyProperties.SignaturePaddingEnum String[] signaturePaddings, @KeyProperties.BlockModeEnum String[] blockModes, boolean randomizedEncryptionRequired, boolean userAuthenticationRequired, int userAuthenticationValidityDurationSeconds) argument
H A DAndroidKeyStoreSecretKeyFactorySpi.java84 int keySize;
111 keySize = (int) keySizeUnsigned;
172 keySize,
H A DAndroidKeyStoreKeyPairGeneratorSpi.java641 private static void checkValidKeySize(int keymasterAlgorithm, int keySize) argument
645 if (!SUPPORTED_EC_NIST_CURVE_SIZES.contains(keySize)) {
647 + keySize + " bits. Supported: " + SUPPORTED_EC_NIST_CURVE_SIZES);
651 if (keySize < RSA_MIN_KEY_SIZE || keySize > RSA_MAX_KEY_SIZE) {
H A DAndroidKeyStoreKeyGeneratorSpi.java144 protected void engineInit(int keySize, SecureRandom random) { argument
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeToBuffQueue.cpp465 SLuint32 i, keySize, valueSize; local
468 keyInfo = NULL; keySize = 0;
470 result = (*mdExtrItf)->GetKeySize(mdExtrItf, i, &keySize);
474 keyInfo = (SLMetadataInfo*) malloc(keySize);
476 result = (*mdExtrItf)->GetKey(mdExtrItf, i, keySize, keyInfo);
H A DslesTestDecodeAac.cpp680 SLuint32 keySize, valueSize; local
683 keyInfo = NULL; keySize = 0;
685 res = (*mdExtrItf)->GetKeySize(mdExtrItf, i, &keySize);
689 keyInfo = (SLMetadataInfo*) malloc(keySize);
691 res = (*mdExtrItf)->GetKey(mdExtrItf, i, keySize, keyInfo);
/frameworks/base/keystore/tests/src/android/security/keystore/
H A DAndroidKeyPairGeneratorTest.java330 private void assertKeyPairCorrect(KeyPair pair, String alias, String keyType, int keySize, argument
338 assertEquals("Curve should be what was specified during initialization", keySize,
343 (keySize + 7) & ~7, (rsaPubKey.getModulus().bitLength() + 7) & ~7);
346 assertEquals((keySize + 7) & ~7, (params.getKeysize() + 7) & ~7);
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.h67 bool getPcmFormatKeyName(uint32_t index, uint32_t keySize, char* keyName);
H A Dandroid_AudioSfDecoder.cpp111 bool AudioSfDecoder::getPcmFormatKeyName(uint32_t index, uint32_t keySize, char* keyName) { argument
116 if (keySize < actualKeySize) {
/frameworks/base/core/java/android/security/
H A DIKeystoreService.aidl44 int generate(String name, int uid, int keyType, int keySize, int flags,
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java386 public void setKeySize(int keySize) { argument
387 mKeySize = keySize;
/frameworks/native/opengl/include/EGL/
H A Deglext.h530 typedef void (*EGLSetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, const void *value, EGLsizeiANDROID valueSize);
531 typedef EGLsizeiANDROID (*EGLGetBlobFuncANDROID) (const void *key, EGLsizeiANDROID keySize, void *value, EGLsizeiANDROID valueSize);
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp2278 uint32_t keySize; local
2279 if (!mDataSource->getUInt32(keyOffset, &keySize)
2280 || keySize < 8
2281 || keyOffset + keySize > stopOffset) {
2291 keySize -= 8;
2294 sp<ABuffer> keyData = new ABuffer(keySize);
2299 keyOffset, keyData->data(), keySize) < (ssize_t) keySize) {
2303 AString key((const char *)keyData->data(), keySize);
2306 keyOffset += keySize;
[all...]
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h1324 XAuint32 keySize,
1340 XAuint32 keySize,
1393 XAuint32 keySize,
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h778 SLuint32 keySize,
794 SLuint32 keySize,

Completed in 357 milliseconds