Home
last modified time | relevance | path

Searched refs:resp_status (Results 1 – 4 of 4) sorted by relevance

/external/wpa_supplicant_8/src/tls/
Dtlsv1_client_ocsp.c684 u8 resp_status; in tls_process_ocsp_response() local
721 resp_status = hdr.payload[0]; in tls_process_ocsp_response()
722 wpa_printf(MSG_DEBUG, "OCSP: responseStatus %u", resp_status); in tls_process_ocsp_response()
724 if (resp_status != OCSP_RESP_STATUS_SUCCESSFUL) { in tls_process_ocsp_response()
/external/wpa_supplicant_8/src/eap_peer/
Deap_peap.c553 int status, resp_status; in eap_tlv_process() local
569 resp_status = EAP_TLV_RESULT_FAILURE; in eap_tlv_process()
572 resp_status = EAP_TLV_RESULT_SUCCESS; in eap_tlv_process()
577 resp_status = EAP_TLV_RESULT_FAILURE; in eap_tlv_process()
582 resp_status = EAP_TLV_RESULT_FAILURE; in eap_tlv_process()
588 eap_get_id(req), resp_status); in eap_tlv_process()
/external/rust/crates/grpcio-sys/grpc/src/core/tsi/alts/handshaker/
Dalts_handshaker_client.cc244 const grpc_gcp_HandshakerStatus* resp_status = in alts_handshaker_client_handle_response() local
246 if (resp_status == nullptr) { in alts_handshaker_client_handle_response()
278 grpc_gcp_HandshakerStatus_code(resp_status)); in alts_handshaker_client_handle_response()
280 upb_strview details = grpc_gcp_HandshakerStatus_details(resp_status); in alts_handshaker_client_handle_response()
/external/python/google-api-python-client/googleapiclient/
Dhttp.py85 def _should_retry_response(resp_status, content): argument
96 if resp_status >= 500:
100 if resp_status == _TOO_MANY_REQUESTS:
105 if resp_status == six.moves.http_client.FORBIDDEN: