Searched refs:responseCode (Results 1 – 6 of 6) sorted by relevance
/system/security/keystore/ |
D | confirmation_manager.cpp | 87 ConfirmationResponseCode responseCode; in presentConfirmationPrompt() local 88 responseCode = confirmationUI->promptUserConfirmation(sp<IConfirmationResultCallback>(this), in presentConfirmationPrompt() 91 if (responseCode != ConfirmationResponseCode::OK) { in presentConfirmationPrompt() 92 ALOGW("Unexpecxted responseCode %d from promptUserConfirmation\n", responseCode); in presentConfirmationPrompt() 93 *aidl_return = static_cast<int32_t>(responseCode); in presentConfirmationPrompt() 138 void ConfirmationManager::finalizeTransaction(ConfirmationResponseCode responseCode, in finalizeTransaction() argument 147 mRateLimiting.processResult(responseCode); in finalizeTransaction() 168 Status status = obj->onConfirmationPromptCompleted(static_cast<int32_t>(responseCode), in finalizeTransaction() 178 Return<void> ConfirmationManager::result(ConfirmationResponseCode responseCode, in result() argument 181 finalizeTransaction(responseCode, dataThatWasConfirmed, false); in result()
|
D | confirmation_manager.h | 80 android::hardware::Return<void> result(ConfirmationResponseCode responseCode, 87 void finalizeTransaction(ConfirmationResponseCode responseCode,
|
D | keystore_cli_v2.cpp | 570 ConfirmationResponseCode responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in Confirmation() local 571 if (responseCode != ConfirmationResponseCode::OK) { in Confirmation() 572 printf("Presenting confirmation prompt failed with response code %d.\n", responseCode); in Confirmation() 588 responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in Confirmation() 589 if (responseCode == ConfirmationResponseCode::Ignored) { in Confirmation() 591 } else if (responseCode != ConfirmationResponseCode::OK) { in Confirmation() 593 responseCode); in Confirmation()
|
D | key_store_service.cpp | 116 KeyStoreServiceReturnCode responseCode; in updateParamsForAttestation() local 118 std::tie(responseCode, factoryResetSinceIdRotation) = hadFactoryResetSinceIdRotation(); in updateParamsForAttestation() 120 if (!responseCode.isOk()) return responseCode; in updateParamsForAttestation()
|
/system/security/keystore/tests/ |
D | confirmationui_invocation_test.cpp | 75 ConfirmationResponseCode responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in TEST() local 76 ASSERT_EQ(responseCode, ConfirmationResponseCode::OK) in TEST() 85 responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in TEST() 86 ASSERT_EQ(responseCode, ConfirmationResponseCode::OK); in TEST()
|
/system/netd/client/ |
D | NetdClient.cpp | 524 int responseCode = 0; in getNetworkForDnsInternal() local 526 if (!readResponseCode(fd, &responseCode)) { in getNetworkForDnsInternal() 531 if (responseCode != ResponseCode::DnsProxyQueryResult) { in getNetworkForDnsInternal()
|