/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/ |
H A D | IkeMacIntegrity.java | 67 int keyLength, in IkeMacIntegrity() argument 71 super(algorithmId, keyLength, algorithmName, isJceSupported); in IkeMacIntegrity() 84 int keyLength = 0; in create() local 93 keyLength = 20; in create() 98 keyLength = 16; in create() 104 keyLength = 16; in create() 109 keyLength = 32; in create() 114 keyLength = 48; in create() 119 keyLength = 64; in create() 129 algorithmId, keyLength, algorithmName, isJceSupported, checksumLength); in create()
|
H A D | IkeMacPrf.java | 52 int keyLength, in IkeMacPrf() argument 55 super(algorithmId, keyLength, algorithmName, isJceSupported); in IkeMacPrf() 67 int keyLength = 0; in create() local 73 keyLength = 20; in create() 77 keyLength = 16; in create() 82 keyLength = 16; in create() 86 keyLength = 32; in create() 90 keyLength = 48; in create() 94 keyLength = 64; in create() 101 return new IkeMacPrf(algorithmId, keyLength, algorithmName, isJceSupported); in create()
|
H A D | IkeNormalModeCipher.java | 45 IkeNormalModeCipher(int algorithmId, int keyLength, int ivLength, String algorithmName) { in IkeNormalModeCipher() argument 46 this(algorithmId, keyLength, ivLength, algorithmName, SALT_LEN_NOT_INCLUDED); in IkeNormalModeCipher() 51 int algorithmId, int keyLength, int ivLength, String algorithmName, int saltLen) { in IkeNormalModeCipher() argument 54 keyLength, in IkeNormalModeCipher()
|
H A D | IkeCombinedModeCipher.java | 54 int algorithmId, int keyLength, int ivLength, String algorithmName, int saltLen) { in IkeCombinedModeCipher() argument 55 this(algorithmId, keyLength, ivLength, algorithmName, saltLen, BLOCK_SIZE_NOT_SPECIFIED); in IkeCombinedModeCipher() 61 int keyLength, in IkeCombinedModeCipher() argument 66 super(algorithmId, keyLength, ivLength, algorithmName, true /*isAead*/, saltLen, blockSize); in IkeCombinedModeCipher()
|
H A D | IkeCrypto.java | 31 protected IkeCrypto(int algorithmId, int keyLength, String algorithmName) { in IkeCrypto() argument 33 mKeyLength = keyLength; in IkeCrypto()
|
H A D | IkeMac.java | 37 protected IkeMac(int algorithmId, int keyLength, String algorithmName, boolean isJceSupported) { in IkeMac() argument 38 super(algorithmId, keyLength, algorithmName); in IkeMac()
|
H A D | IkeCipher.java | 86 int keyLength, in IkeCipher() argument 92 super(algorithmId, keyLength, algorithmName); in IkeCipher()
|
/aosp12/system/security/keystore/ |
H A D | keystore_get_wifi_hidl.cpp | 36 ssize_t keystore_get(const char *key, size_t keyLength, uint8_t** value) { in keystore_get() argument 37 if (key == nullptr || keyLength == 0 || value == nullptr) { in keystore_get() 58 Return<void> ret = service->getBlob(hidl_string(key, keyLength), cb); in keystore_get()
|
H A D | keystore_get.cpp | 26 ssize_t keystore_get(const char* key, size_t keyLength, uint8_t** value) { in keystore_get() argument 37 auto ret = service->get(String16(key, keyLength), -1, &result); in keystore_get()
|
/aosp12/frameworks/base/drm/java/android/drm/ |
H A D | DrmUtils.java | 149 int keyLength = readByte(constraintData, index); in ExtendedMetadataParser() local 157 String strKey = readMultipleBytes(constraintData, keyLength, index); in ExtendedMetadataParser() 158 index += keyLength; in ExtendedMetadataParser()
|
/aosp12/frameworks/base/media/java/android/media/ |
H A D | MediaMetrics.java | 361 final int keyLength = keyBytes.length; in Item() local 362 if (keyLength > Character.MAX_VALUE - 1) { in Item() 367 mHeaderSize = 4 + 4 + 2 + 2 + keyLength + 1 + 4 + 4 + 8; // see format above. in Item() 383 .putChar((char) (keyLength + 1)) // length, with zero termination in Item() 744 final int keyLength = keyBytes.length; in reserveProperty() local 745 if (keyLength > Character.MAX_VALUE) { in reserveProperty() 756 + keyLength + 1 /* key length with zero termination */ in reserveProperty()
|
/aosp12/hardware/interfaces/graphics/composer/2.4/utils/passthrough/include/composer-passthrough/2.4/ |
H A D | HwcHal.h | 277 uint32_t keyLength = 0; in getLayerGenericMetadataKeys() local 279 mDispatch.getLayerGenericMetadataKey(mDevice, index, &keyLength, nullptr, nullptr); in getLayerGenericMetadataKeys() 280 if (keyLength == 0) { in getLayerGenericMetadataKeys() 286 keyName.resize(keyLength); in getLayerGenericMetadataKeys() 287 mDispatch.getLayerGenericMetadataKey(mDevice, index, &keyLength, keyName.data(), in getLayerGenericMetadataKeys()
|
/aosp12/packages/inputmethods/LatinIME/native/jni/src/dictionary/header/ |
H A D | header_read_write_utils.cpp | 81 const int keyLength = ByteArrayUtils::readStringAndAdvancePosition(dictBuf, in fetchAllHeaderAttributes() local 84 key.insert(key.end(), keyBuffer, keyBuffer + keyLength); in fetchAllHeaderAttributes()
|
/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/ |
H A D | IkeSaProposal.java | 249 public Builder addEncryptionAlgorithm(@EncryptionAlgorithm int algorithm, int keyLength) { in addEncryptionAlgorithm() argument 250 validateAndAddEncryptAlgo(algorithm, keyLength, false /* isChild */); in addEncryptionAlgorithm()
|
H A D | ChildSaProposal.java | 305 public Builder addEncryptionAlgorithm(@EncryptionAlgorithm int algorithm, int keyLength) { in addEncryptionAlgorithm() argument 306 validateAndAddEncryptAlgo(algorithm, keyLength, true /* isChild */); in addEncryptionAlgorithm()
|
H A D | SaProposal.java | 536 @EncryptionAlgorithm int algorithm, int keyLength, boolean isChild) { in validateAndAddEncryptAlgo() argument 539 EncryptionTransform encryptionTransform = new EncryptionTransform(algorithm, keyLength); in validateAndAddEncryptAlgo()
|
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/ |
H A D | IkeSaPayload.java | 1195 mSpecifiedKeyLength = attr.keyLength; in EncryptionTransform() 1791 public final int keyLength; field in IkeSaPayload.KeyLengthAttribute 1797 protected KeyLengthAttribute(int keyLength) { in KeyLengthAttribute() argument 1799 this.keyLength = keyLength; in KeyLengthAttribute() 1806 .putShort((short) keyLength); in encodeToByteBuffer()
|
/aosp12/hardware/google/graphics/common/libhwc2.1/libdevice/ |
H A D | ExynosLayer.h | 415 uint32_t __unused keyLength, const char* __unused key,
|
H A D | ExynosLayer.cpp | 697 uint32_t __unused keyLength, const char* __unused key, in setLayerGenericMetadata() argument
|
/aosp12/hardware/google/graphics/common/libhwc2.1/ |
H A D | ExynosHWC.h | 179 hwc2_layer_t layer, uint32_t keyLength, const char* key,
|
H A D | ExynosHWC.cpp | 1224 hwc2_layer_t layer, uint32_t keyLength, const char* key, in exynos_SetLayerGenericMetadata() argument 1237 keyLength, key, mandatory, valueLength, value); in exynos_SetLayerGenericMetadata()
|
/aosp12/hardware/libhardware/include/hardware/ |
H A D | hwcomposer2.h | 3115 hwc2_display_t display, hwc2_layer_t layer, uint32_t keyLength, const char* key,
|
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/ |
H A D | IkeSaPayloadTest.java | 274 assertEquals(SaProposal.KEY_LEN_AES_128, ((KeyLengthAttribute) attribute).keyLength); in testDecodeAttribute()
|
/aosp12/packages/apps/Car/DebuggingRestrictionController/libs/ |
H A D | okhttp-3.12.1.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/proguard/
okhttp3/
... |
H A D | httpclient-4.5.12.jar | META-INF/MANIFEST.MF
META-INF/
org/
org/apache/
org/ ... |