Home
last modified time | relevance | path

Searched refs:inParams (Results 1 – 16 of 16) sorted by relevance

/hardware/qcom/camera/msm8998/QCamera2/util/
DQCameraDualFOVPP.cpp446 dualfov_input_params_t inParams; in process() local
452 inParams); in process()
453 dumpInputParams(inParams); in process()
457 inParams, in process()
609 QCameraStream* pAuxSnapshotStream, dualfov_input_params_t& inParams) in getInputParams() argument
612 memset(&inParams, 0, sizeof(dualfov_input_params_t)); in getInputParams()
619 inParams.wide.width = offset.mp[0].width; in getInputParams()
620 inParams.wide.height = offset.mp[0].height; in getInputParams()
621 inParams.wide.stride = offset.mp[0].stride; in getInputParams()
622 inParams.wide.scanline = offset.mp[0].scanline; in getInputParams()
[all …]
DQCameraDualFOVPP.h93 dualfov_input_params_t& inParams);
96 dualfov_input_params_t inParams, uint8_t* pOut);
/hardware/interfaces/keymaster/4.1/support/include/keymasterV4_1/
DKeymaster4.h128 const hidl_vec<KeyParameter>& inParams, const HardwareAuthToken& authToken, in begin() argument
130 return km4_0_dev_->begin(purpose, key, inParams, authToken, _hidl_cb); in begin()
133 Return<void> update(uint64_t operationHandle, const hidl_vec<KeyParameter>& inParams, in update() argument
136 return km4_0_dev_->update(operationHandle, inParams, input, authToken, verificationToken, in update()
140 Return<void> finish(uint64_t operationHandle, const hidl_vec<KeyParameter>& inParams, in finish() argument
144 return km4_0_dev_->finish(operationHandle, inParams, input, signature, authToken, in finish()
DKeymaster3.h102 const hidl_vec<KeyParameter>& inParams, const HardwareAuthToken& authToken,
104 Return<void> update(uint64_t operationHandle, const hidl_vec<KeyParameter>& inParams,
107 Return<void> finish(uint64_t operationHandle, const hidl_vec<KeyParameter>& inParams,
/hardware/interfaces/keymaster/4.1/support/
DKeymaster3.cpp236 const hidl_vec<KeyParameter>& inParams, in begin() argument
244 km3_dev_->begin(convert(purpose), key, convertAndAddAuthToken(inParams, authToken), cb); in begin()
249 Return<void> Keymaster3::update(uint64_t operationHandle, const hidl_vec<KeyParameter>& inParams, in update() argument
258 auto rc = km3_dev_->update(operationHandle, convertAndAddAuthToken(inParams, authToken), input, in update()
264 Return<void> Keymaster3::finish(uint64_t operationHandle, const hidl_vec<KeyParameter>& inParams, in finish() argument
274 auto rc = km3_dev_->finish(operationHandle, convertAndAddAuthToken(inParams, authToken), input, in finish()
/hardware/interfaces/media/c2/aidl/android/hardware/media/c2/
DIConfigurable.aidl126 ConfigResult config(in Params inParams, in boolean mayBlock); in config() argument
/hardware/interfaces/media/c2/aidl/aidl_api/android.hardware.media.c2/current/android/hardware/media/c2/
DIConfigurable.aidl37 …2.IConfigurable.ConfigResult config(in android.hardware.media.c2.Params inParams, in boolean mayBl… in config() argument
/hardware/interfaces/media/c2/aidl/aidl_api/android.hardware.media.c2/1/android/hardware/media/c2/
DIConfigurable.aidl37 …2.IConfigurable.ConfigResult config(in android.hardware.media.c2.Params inParams, in boolean mayBl… in config() argument
/hardware/interfaces/keymaster/3.0/
DIKeymasterDevice.hal259 * @param inParams Additional parameters for the operation. This is typically used to provide
264 * inParams may contain a tag Tag::NONCE.
275 begin(KeyPurpose purpose, vec<uint8_t> key, vec<KeyParameter> inParams)
290 * @param inParams Additional parameters for the operation. For AEAD modes, this is used to
310 update(OperationHandle operationHandle, vec<KeyParameter> inParams, vec<uint8_t> input)
320 * @param inParams Additional parameters for the operation. For AEAD modes, this is used to
336 finish(OperationHandle operationHandle, vec<KeyParameter> inParams, vec<uint8_t> input,
/hardware/google/interfaces/media/c2/1.0/
DIConfigurable.hal78 * @param inParams Requested parameter updates.
94 Params inParams,
/hardware/interfaces/media/c2/1.0/
DIConfigurable.hal137 * @param inParams Requested parameter updates.
153 * requested updates in @p inParams.
158 Params inParams,
/hardware/interfaces/keymaster/4.0/
DIKeymasterDevice.hal888 * inParams argument to this method. If not, begin() must return ErrorCode::INVALID_KEY_BLOB.
958 * All RSA key operations must specify exactly one padding mode in inParams. If unspecified or
963 * digest in inParams. If unspecified or specified more than once, begin() must return
1008 * EC private key operations must specify exactly one digest in inParams. If unspecified or
1017 * (Tag::PADDING) in inParams. If either value is unspecified or specified more than once,
1023 * If the block mode is BlockMode::GCM, inParams must specify Tag::MAC_LENGTH, and the specified
1039 * Tag::NONCE in inParams. If a nonce is provided when Tag::CALLER_NONCE is not authorized,
1045 * HMAC key operations must specify Tag::MAC_LENGTH in inParams. The specified value must be a
1060 * @param inParams Additional parameters for the operation. If Tag::APPLICATION_ID or
1063 * a nonce or IV, on keys that were generated with Tag::CALLER_NONCE, inParams may
[all …]
Dtypes.hal493 * begin must provide this tag and the same associated data as part of the inParams set. If
514 * begin must provide this tag and the same associated data as part of the inParams set. If
/hardware/interfaces/media/omx/1.0/
DIOmxNode.hal65 * @param inParams Information about the retrieval.
73 Bytes inParams
/hardware/interfaces/keymaster/4.0/vts/functional/
Dkeymaster_hidl_hal_test.cpp3794 auto inParams = AuthorizationSetBuilder().BlockMode(BlockMode::ECB).Padding(PaddingMode::NONE); in TEST_P() local
3795 string ciphertext1 = EncryptMessage(message, inParams); in TEST_P()
3798 string ciphertext2 = EncryptMessage(string(message), inParams); in TEST_P()
3804 string plaintext = DecryptMessage(ciphertext1, inParams); in TEST_P()
3820 auto inParams = AuthorizationSetBuilder().BlockMode(BlockMode::ECB).Padding(PaddingMode::NONE); in TEST_P() local
3821 EXPECT_EQ(ErrorCode::INCOMPATIBLE_BLOCK_MODE, Begin(KeyPurpose::ENCRYPT, inParams)); in TEST_P()
3838 auto inParams = in TEST_P() local
3840 string ciphertext = EncryptMessage(message, inParams); in TEST_P()
3842 string plaintext = DecryptMessage(ciphertext, inParams); in TEST_P()
3859 auto inParams = in TEST_P() local
[all …]
/hardware/interfaces/security/keymint/aidl/vts/functional/
DKeyMintTest.cpp7353 auto inParams = AuthorizationSetBuilder().BlockMode(BlockMode::ECB).Padding(PaddingMode::NONE); in TEST_P() local
7354 string ciphertext1 = EncryptMessage(message, inParams); in TEST_P()
7357 string ciphertext2 = EncryptMessage(string(message), inParams); in TEST_P()
7363 string plaintext = DecryptMessage(ciphertext1, inParams); in TEST_P()
7379 auto inParams = AuthorizationSetBuilder().BlockMode(BlockMode::ECB).Padding(PaddingMode::NONE); in TEST_P() local
7380 EXPECT_EQ(ErrorCode::INCOMPATIBLE_BLOCK_MODE, Begin(KeyPurpose::ENCRYPT, inParams)); in TEST_P()
7398 auto inParams = in TEST_P() local
7400 string ciphertext = EncryptMessage(message, inParams); in TEST_P()
7402 string plaintext = DecryptMessage(ciphertext, inParams); in TEST_P()
7418 auto inParams = AuthorizationSetBuilder().BlockMode(BlockMode::ECB).Padding(PaddingMode::PKCS7); in TEST_P() local
[all …]