Home
last modified time | relevance | path

Searched refs:outParams (Results 1 – 7 of 7) sorted by relevance

/system/security/keystore/
Dkey_store_service.cpp910 keymaster_key_param_set_t outParams = {NULL, 0}; in begin() local
921 err = dev->begin(dev, purpose, &key, &inParams, &outParams, &handle); in begin()
933 err = dev->begin(dev, purpose, &key, &inParams, &outParams, &handle); in begin()
953 if (outParams.params) { in begin()
954 result->outParams.params.assign(outParams.params, outParams.params + outParams.length); in begin()
955 free(outParams.params); in begin()
984 keymaster_key_param_set_t outParams = {NULL, 0}; in update() local
997 dev->update(dev, handle, &inParams, &input, &consumed, &outParams, &output); in update()
1002 if (outParams.params) { in update()
1003 result->outParams.params.assign(outParams.params, outParams.params + outParams.length); in update()
[all …]
Dkeystore_client_impl.cpp285 if (!result.outParams.params.empty()) { in beginOperation()
286 output_parameters->Reinitialize(&*result.outParams.params.begin(), in beginOperation()
287 result.outParams.params.size()); in beginOperation()
310 if (!result.outParams.params.empty()) { in updateOperation()
311 output_parameters->Reinitialize(&*result.outParams.params.begin(), in updateOperation()
312 result.outParams.params.size()); in updateOperation()
335 if (!result.outParams.params.empty()) { in finishOperation()
336 output_parameters->Reinitialize(&*result.outParams.params.begin(), in finishOperation()
337 result.outParams.params.size()); in finishOperation()
DIKeystoreService.cpp79 outParams.readFromParcel(in); in readFromParcel()
96 outParams.writeToParcel(out); in writeToParcel()
/system/vold/
DKeymaster.cpp222 keymaster::AuthorizationSet* outParams) { in begin() argument
231 outParams->Clear(); in begin()
232 outParams->push_back(outParams_set); in begin()
DKeyStorage.cpp143 keymaster::AuthorizationSet outParams; in encryptWithKeymasterKey() local
144 auto opHandle = keymaster.begin(KM_PURPOSE_ENCRYPT, key, params, &outParams); in encryptWithKeymasterKey()
147 if (!outParams.GetTagValue(keymaster::TAG_NONCE, &nonceBlob)) { in encryptWithKeymasterKey()
DKeymaster.h84 const AuthorizationSet& inParams, AuthorizationSet* outParams);
/system/security/keystore/include/keystore/
DIKeystoreService.h68 KeymasterArguments outParams; member