Home
last modified time | relevance | path

Searched refs:aidl_return (Results 1 – 10 of 10) sorted by relevance

/system/security/keystore/
Dconfirmation_manager.cpp58 int32_t* aidl_return) { in presentConfirmationPrompt() argument
62 *aidl_return = static_cast<int32_t>(ConfirmationResponseCode::OperationPending); in presentConfirmationPrompt()
69 *aidl_return = static_cast<int32_t>(ConfirmationResponseCode::Unimplemented); in presentConfirmationPrompt()
75 *aidl_return = static_cast<int32_t>(ConfirmationResponseCode::SystemError); in presentConfirmationPrompt()
93 *aidl_return = static_cast<int32_t>(responseCode); in presentConfirmationPrompt()
102 *aidl_return = static_cast<int32_t>(ConfirmationResponseCode::OK); in presentConfirmationPrompt()
108 int32_t* aidl_return) { in cancelConfirmationPrompt() argument
114 *aidl_return = static_cast<int32_t>(ConfirmationResponseCode::OperationPending); in cancelConfirmationPrompt()
121 *aidl_return = static_cast<int32_t>(ConfirmationResponseCode::OK); in cancelConfirmationPrompt()
136 Status ConfirmationManager::isConfirmationPromptSupported(bool* aidl_return) { in isConfirmationPromptSupported() argument
[all …]
Dkey_store_service.cpp147 Status KeyStoreService::getState(int32_t userId, int32_t* aidl_return) { in getState() argument
149 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED); in getState()
152 *aidl_return = mKeyStore->getState(userId); in getState()
185 int targetUid, int32_t flags, int32_t* aidl_return) { in insert() argument
190 *aidl_return = result.getErrorCode(); in insert()
199 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_ALREADY_EXISTS); in insert()
206 *aidl_return = static_cast<int32_t>(mKeyStore->put(lockedEntry, keyBlob, {})); in insert()
210 Status KeyStoreService::del(const String16& name, int targetUid, int32_t* aidl_return) { in del() argument
213 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED); in del()
220 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_NOT_FOUND); in del()
[all …]
Dconfirmation_manager.h56 int32_t* aidl_return);
64 int32_t* aidl_return);
67 Status isConfirmationPromptSupported(bool* aidl_return);
Dkeystore_cli_v2.cpp386 int32_t aidl_return; in ListAppsWithKeys() local
388 android::binder::Status status = service->listUidsOfAuthBoundKeys(&uids, &aidl_return); in ListAppsWithKeys()
394 if (!KeyStoreNativeReturnCode(aidl_return).isOk()) { in ListAppsWithKeys()
395 fprintf(stderr, "Requesting uids of auth bound keys failed with code %d.\n", aidl_return); in ListAppsWithKeys()
546 int32_t aidl_return; in Confirmation() local
548 listener, promptText16, extraData, locale16, uiOptionsAsFlags, &aidl_return); in Confirmation()
554 ConfirmationResponseCode responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in Confirmation()
566 status = service->cancelConfirmationPrompt(listener, &aidl_return); in Confirmation()
572 responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in Confirmation()
/system/security/keystore/tests/
Dconfirmationui_invocation_test.cpp69 int32_t aidl_return; in TEST() local
72 listener, promptText16, extraData, locale16, 0, &aidl_return); in TEST()
75 ConfirmationResponseCode responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in TEST()
77 << "Presenting confirmation prompt failed with response code " << aidl_return << ".\n"; in TEST()
82 status = service->cancelConfirmationPrompt(listener, &aidl_return); in TEST()
85 responseCode = static_cast<ConfirmationResponseCode>(aidl_return); in TEST()
/system/extras/partition_tools/
Dlpdumpd.cc42 Status run(const std::vector<std::string>& args, std::string* aidl_return) override { in run() argument
57 *aidl_return = output.str(); in run()
/system/hardware/interfaces/suspend/1.0/default/
DWakeLockEntryList.h52 void getWakeLockStats(std::vector<WakeLockInfo>* aidl_return) const;
61 void getKernelWakelockStats(std::vector<WakeLockInfo>* aidl_return) const;
DWakeLockEntryList.cpp285 void WakeLockEntryList::getKernelWakelockStats(std::vector<WakeLockInfo>* aidl_return) const { in getKernelWakelockStats()
299 aidl_return->emplace_back(std::move(entry)); in getKernelWakelockStats()
372 void WakeLockEntryList::getWakeLockStats(std::vector<WakeLockInfo>* aidl_return) const { in getWakeLockStats()
376 aidl_return->emplace_back(entry); in getWakeLockStats()
379 getKernelWakelockStats(aidl_return); in getWakeLockStats()
/system/apex/apexd/
Dapexservice.cpp79 BinderStatus getSessions(std::vector<ApexSessionInfo>* aidl_return) override;
84 BinderStatus getActivePackages(std::vector<ApexInfo>* aidl_return) override;
86 ApexInfo* aidl_return) override;
87 BinderStatus getAllPackages(std::vector<ApexInfo>* aidl_return) override;
298 std::vector<ApexSessionInfo>* aidl_return) { in getSessions() argument
303 aidl_return->push_back(sessionInfo); in getSessions()
369 std::vector<ApexInfo>* aidl_return) { in getActivePackages() argument
374 aidl_return->push_back(std::move(apexInfo)); in getActivePackages()
381 ApexInfo* aidl_return) { in getActivePackage() argument
384 *aidl_return = getApexInfo(*apex); in getActivePackage()
[all …]
/system/hardware/interfaces/wifi/keystore/1.0/vts/functional/
DVtsHalWifiKeystoreV1_0TargetTest.cpp140 int32_t aidl_return; in generateKey() local
165 &aidl_return); in generateKey()
172 keystore::KeyStoreNativeReturnCode rc(aidl_return); in generateKey()
193 int32_t aidl_return; in insert() local
200 &aidl_return); in insert()
207 keystore::KeyStoreNativeReturnCode rc(aidl_return); in insert()