Home
last modified time | relevance | path

Searched refs:response_code (Results 1 – 6 of 6) 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_(error_msg) {} in KeystoreResponse()
35 explicit KeystoreResponse(const int response_code) in KeystoreResponse()
36 : response_code_(response_code), error_msg_() {} in KeystoreResponse()
46 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() function
/system/bt/include/hardware/
Dbluetooth_headset_interface.h180 virtual bt_status_t AtResponse(bthf_at_response_t response_code,
/system/bt/stack/bnep/
Dbnep_utils.cc48 uint16_t response_code);
336 void bnepu_send_peer_filter_rsp(tBNEP_CONN* p_bcb, uint16_t response_code) { in bnepu_send_peer_filter_rsp() argument
351 UINT16_TO_BE_STREAM(p, response_code); in bnepu_send_peer_filter_rsp()
1117 uint16_t response_code) { in bnepu_send_peer_multicast_filter_rsp() argument
1121 BNEP_TRACE_DEBUG("BNEP sending multicast filter response %d", response_code); in bnepu_send_peer_multicast_filter_rsp()
1132 UINT16_TO_BE_STREAM(p, response_code); in bnepu_send_peer_multicast_filter_rsp()
/system/core/gatekeeperd/
Dgatekeeperd.cpp219 if (gkResponse->response_code() == GKResponseCode::OK && !gkResponse->should_reenroll()) { in enroll()
235 if (!status.isOk() || verifyResponse.response_code() != GKResponseCode::OK) { in enroll()
300 if (gkResponse->response_code() == GKResponseCode::OK) { in verifyChallenge()
/system/bt/btif/src/
Dbtif_hf.cc732 bt_status_t AtResponse(bthf_at_response_t response_code, int error_code,
1037 bt_status_t HeadsetInterface::AtResponse(bthf_at_response_t response_code, in AtResponse() argument
1051 (response_code == BTHF_AT_RESPONSE_OK) ? BTA_AG_OK_DONE : BTA_AG_OK_ERROR, in AtResponse()