Searched refs:outParams (Results 1 – 7 of 7) sorted by relevance
/system/security/keystore/ |
D | key_store_service.cpp | 910 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 …]
|
D | keystore_client_impl.cpp | 285 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()
|
D | IKeystoreService.cpp | 79 outParams.readFromParcel(in); in readFromParcel() 96 outParams.writeToParcel(out); in writeToParcel()
|
/system/vold/ |
D | Keymaster.cpp | 222 keymaster::AuthorizationSet* outParams) { in begin() argument 231 outParams->Clear(); in begin() 232 outParams->push_back(outParams_set); in begin()
|
D | KeyStorage.cpp | 143 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()
|
D | Keymaster.h | 84 const AuthorizationSet& inParams, AuthorizationSet* outParams);
|
/system/security/keystore/include/keystore/ |
D | IKeystoreService.h | 68 KeymasterArguments outParams; member
|