Home
last modified time | relevance | path

Searched refs:resp_len (Results 1 – 13 of 13) sorted by relevance

/dragonfly/sys/dev/netif/iwm/
HDif_iwm_time_event.c224 int resp_len = iwm_rx_packet_payload_len(pkt); in iwm_te_notif() local
227 resp_len != sizeof(*resp)) { in iwm_te_notif()
255 int resp_len = iwm_rx_packet_payload_len(pkt); in iwm_time_event_response() local
258 resp_len != sizeof(*resp)) { in iwm_time_event_response()
HDif_iwm_util.c361 int error, resp_len; in iwm_send_cmd_status() local
382 resp_len = iwm_rx_packet_payload_len(pkt); in iwm_send_cmd_status()
383 if (resp_len != sizeof(*resp)) { in iwm_send_cmd_status()
/dragonfly/contrib/wpa_supplicant/wpa_supplicant/
HDctrl_iface.h32 char *buf, size_t *resp_len);
49 char *buf, size_t *resp_len);
HDgas_query.c524 u16 comeback_delay, resp_len; in gas_query_rx() local
626 resp_len = WPA_GET_LE16(pos); in gas_query_rx()
630 if (resp_len > left) { in gas_query_rx()
636 if (resp_len < left) { in gas_query_rx()
639 left - resp_len, MAC2STR(sa)); in gas_query_rx()
643 gas_query_rx_comeback(gas, query, adv_proto, pos, resp_len, in gas_query_rx()
646 gas_query_rx_initial(gas, query, adv_proto, pos, resp_len, in gas_query_rx()
HDctrl_iface.c7237 size_t resp_len, start, requested_len; in gas_response_get() local
7261 resp_len = wpabuf_len(resp); in gas_response_get()
7263 requested_len = resp_len; in gas_response_get()
7268 if (start > resp_len) in gas_response_get()
7275 if (start + requested_len > resp_len) in gas_response_get()
7285 if (start + requested_len == resp_len) { in gas_response_get()
9915 char *buf, size_t *resp_len) in wpa_supplicant_ctrl_iface_process() argument
9947 *resp_len = 1; in wpa_supplicant_ctrl_iface_process()
10766 *resp_len = reply_len; in wpa_supplicant_ctrl_iface_process()
11026 char *cmd, size_t *resp_len) in wpas_global_ctrl_iface_ifname() argument
[all …]
HDsme.c2475 u8 resp_len = 2 + WLAN_SA_QUERY_TR_ID_LEN; in sme_process_sa_query_request() local
2494 if (ocv_insert_extended_oci(&ci, resp + resp_len) < 0) in sme_process_sa_query_request()
2497 resp_len += OCV_OCI_EXTENDED_LEN; in sme_process_sa_query_request()
2503 resp, resp_len, 0) < 0) in sme_process_sa_query_request()
/dragonfly/contrib/wpa_supplicant/src/ap/
HDgas_query_ap.c471 u16 comeback_delay, resp_len; in gas_query_ap_rx() local
573 resp_len = WPA_GET_LE16(pos); in gas_query_ap_rx()
577 if (resp_len > left) { in gas_query_ap_rx()
583 if (resp_len < left) { in gas_query_ap_rx()
586 left - resp_len, MAC2STR(sa)); in gas_query_ap_rx()
590 gas_query_rx_comeback(gas, query, adv_proto, pos, resp_len, in gas_query_ap_rx()
593 gas_query_rx_initial(gas, query, adv_proto, pos, resp_len, in gas_query_ap_rx()
HDbeacon.c370 int is_p2p, size_t *resp_len) in hostapd_gen_probe_resp() argument
568 *resp_len = pos - (u8 *) resp; in hostapd_gen_probe_resp()
738 size_t i, resp_len; in handle_probe_req() local
966 &resp_len); in handle_probe_req()
988 ret = hostapd_drv_send_mlme_csa(hapd, resp, resp_len, noack, in handle_probe_req()
1004 size_t *resp_len) in hostapd_probe_resp_offloads() argument
1035 return hostapd_gen_probe_resp(hapd, NULL, 0, resp_len); in hostapd_probe_resp_offloads()
1058 size_t resp_len = 0; in ieee802_11_build_ap_params() local
1289 resp = hostapd_probe_resp_offloads(hapd, &resp_len); in ieee802_11_build_ap_params()
1298 params->proberesp_len = resp_len; in ieee802_11_build_ap_params()
/dragonfly/contrib/wpa_supplicant/src/tls/
HDtlsv1_client_read.c894 u32 resp_len; in tls_process_certificate_status() local
911 resp_len = WPA_GET_BE24(pos); in tls_process_certificate_status()
913 if (end - pos < resp_len) { in tls_process_certificate_status()
916 resp_len); in tls_process_certificate_status()
920 end = pos + resp_len; in tls_process_certificate_status()
923 resp_len = WPA_GET_BE24(pos); in tls_process_certificate_status()
925 if (resp_len > end - pos) { in tls_process_certificate_status()
928 resp_len, (int) (end - pos)); in tls_process_certificate_status()
932 if (!resp_len) in tls_process_certificate_status()
935 conn, pos - 3, resp_len + 3); in tls_process_certificate_status()
[all …]
/dragonfly/contrib/wpa_supplicant/src/crypto/
HDtls_openssl_ocsp.c490 size_t resp_len; in check_ocsp_resp() local
519 SSL_get0_ocsp_response(ssl, &resp_data, &resp_len); in check_ocsp_resp()
520 if (resp_data == NULL || resp_len == 0) { in check_ocsp_resp()
525 wpa_hexdump(MSG_DEBUG, "OpenSSL: OCSP response", resp_data, resp_len); in check_ocsp_resp()
527 resp = d2i_OCSPResponse(NULL, &resp_data, resp_len); in check_ocsp_resp()
/dragonfly/contrib/wpa_supplicant/src/utils/
HDhttp-utils.h56 size_t *resp_len);
HDhttp_curl.c1685 size_t *resp_len) in http_post() argument
1735 if (resp_len) in http_post()
1736 *resp_len = ctx->curl_buf_len; in http_post()
/dragonfly/crypto/libressl/ssl/
HDs3_lib.c1899 _SSL_set_tlsext_status_ocsp_resp(SSL *s, unsigned char *resp, int resp_len) in _SSL_set_tlsext_status_ocsp_resp() argument
1905 if (resp_len < 0) in _SSL_set_tlsext_status_ocsp_resp()
1909 s->internal->tlsext_ocsp_resp_len = (size_t)resp_len; in _SSL_set_tlsext_status_ocsp_resp()