Home
last modified time | relevance | path

Searched refs:response_code (Results 1 – 9 of 9) sorted by relevance

/system/security/keystore/include/keystore/
DKeystoreResponse.h33 explicit KeystoreResponse(const int response_code, const String16& error_msg) in KeystoreResponse()
34 : response_code_(response_code), error_msg_(std::make_unique<String16>(error_msg)) {} in KeystoreResponse()
35 explicit KeystoreResponse(const int response_code) in KeystoreResponse()
36 : response_code_(response_code), error_msg_() {} in KeystoreResponse()
51 int response_code() const { return response_code_; } in response_code() function
/system/core/gatekeeperd/include/gatekeeper/
DGateKeeperResponse.h34 GateKeeperResponse(ResponseCode response_code, int32_t timeout = 0,
36 : response_code_(response_code), in response_code_() argument
62 ResponseCode response_code() const { return response_code_; } in response_code() function
64 void response_code(ResponseCode response_code) { response_code_ = response_code; } in response_code() argument
/system/security/keystore-engine/
Dkeystore_backend_binder.cpp124 if (!KSReturn(km_response.response_code()).isOk()) { in sign()
125 LOG(ERROR) << AT << "getKeyCharacteristics failed: " << km_response.response_code(); in sign()
201 } else if (!(rc = KSReturn(abortFuture.get().response_code())).isOk()) { in sign()
/system/bt/include/hardware/
Dbluetooth_headset_interface.h162 virtual bt_status_t AtResponse(bthf_at_response_t response_code,
/system/hardware/interfaces/wifi/keystore/1.0/default/
Dkeystore.cpp211 if (!KSReturn(km_response.response_code()).isOk()) { in sign()
212 LOG(ERROR) << AT << "getKeyCharacteristics failed: " << km_response.response_code(); in sign()
298 } else if (!(rc = KSReturn(abortFuture.get().response_code())).isOk()) { in sign()
/system/core/gatekeeperd/
Dgatekeeperd.cpp218 if (gkResponse->response_code() == GKResponseCode::OK && !gkResponse->should_reenroll()) { in enroll()
234 if (!status.isOk() || verifyResponse.response_code() != GKResponseCode::OK) { in enroll()
299 if (gkResponse->response_code() == GKResponseCode::OK) { in verifyChallenge()
/system/security/keystore/
Dkeystore_client_impl.cpp195 return KeyStoreNativeReturnCode(result.response_code()); in addRandomNumberGeneratorEntropy()
222 return KeyStoreNativeReturnCode(km_response.response_code()); in generateKey()
248 return KeyStoreNativeReturnCode(km_response.response_code()); in getKeyCharacteristics()
277 return KeyStoreNativeReturnCode(km_response.response_code()); in importKey()
424 rc = KeyStoreNativeReturnCode(future.get().response_code()); in abortOperation()
/system/bt/stack/bnep/
Dbnep_utils.cc49 uint16_t response_code);
337 void bnepu_send_peer_filter_rsp(tBNEP_CONN* p_bcb, uint16_t response_code) { in bnepu_send_peer_filter_rsp() argument
352 UINT16_TO_BE_STREAM(p, response_code); in bnepu_send_peer_filter_rsp()
1127 uint16_t response_code) { in bnepu_send_peer_multicast_filter_rsp() argument
1131 BNEP_TRACE_DEBUG("BNEP sending multicast filter response %d", response_code); in bnepu_send_peer_multicast_filter_rsp()
1142 UINT16_TO_BE_STREAM(p, response_code); in bnepu_send_peer_multicast_filter_rsp()
/system/bt/btif/src/
Dbtif_hf.cc729 bt_status_t AtResponse(bthf_at_response_t response_code, int error_code,
1008 bt_status_t HeadsetInterface::AtResponse(bthf_at_response_t response_code, in AtResponse() argument
1022 (response_code == BTHF_AT_RESPONSE_OK) ? BTA_AG_OK_DONE : BTA_AG_OK_ERROR, in AtResponse()