Home
last modified time | relevance | path

Searched full:header (Results 1 – 25 of 2461) sorted by relevance

12345678910>>...99

/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/incl/
Dmlan_fw.h21 /** Interface header length */
25 /** Ethernet header */
28 /** Ethernet header destination address */
30 /** Ethernet header source address */
32 /** Ethernet header length */
37 /** RFC 1042 header */
57 /** Rx packet header */
60 /** Etherner header */
62 /** RFC 1042 header */
228 /** Length of SNAP header */
[all …]
Dmlan_ieee.h183 /** IEEE IE header */
192 /** Vendor specific IE header */
212 /** Vendor specific IE header */
221 /** Generic IE header */
251 /** Generic IE header */
274 /** Generic IE header */
701 /** Generic IE header */
801 * WMM Info IE - Vendor Specific Header:
820 * WMM Parameter IE - Vendor Specific Header:
1346 /** Generic IE header */
[all …]
/hal_nxp-latest/mcux/middleware/wifi_nxp/wifidriver/
Dmlan_join.c20 /* Additional WMSDK header files */
699 /* 4 bytes header + 2 bytes version + 4 bytes group_cipher_suite +
862 pssid_tlv->header.type = wlan_cpu_to_le16(TLV_TYPE_SSID);
863 pssid_tlv->header.len = (t_u16)pbss_desc->ssid.ssid_len;
864 (void)__memcpy(pmadapter, pssid_tlv->ssid, pbss_desc->ssid.ssid, pssid_tlv->header.len);
865 pos += sizeof(pssid_tlv->header) + pssid_tlv->header.len;
866 pssid_tlv->header.len = wlan_cpu_to_le16(pssid_tlv->header.len);
869 pphy_tlv->header.type = wlan_cpu_to_le16(TLV_TYPE_PHY_DS);
870 pphy_tlv->header.len = sizeof(pphy_tlv->fh_ds.ds_param_set);
873 pos += sizeof(pphy_tlv->header) + pphy_tlv->header.len;
[all …]
Dmlan_uap_cmdevent.c18 /* Additional WMSDK header files */
85 tlv_mac->header.type = wlan_cpu_to_le16(TLV_TYPE_UAP_MAC_ADDRESS); in wlan_uap_cmd_ap_config()
86 tlv_mac->header.len = wlan_cpu_to_le16(MLAN_MAC_ADDR_LENGTH); in wlan_uap_cmd_ap_config()
95 tlv_ssid->header.type = wlan_cpu_to_le16(TLV_TYPE_SSID); in wlan_uap_cmd_ap_config()
96 tlv_ssid->header.len = wlan_cpu_to_le16((t_u16)bss->param.bss_config.ssid.ssid_len); in wlan_uap_cmd_ap_config()
107 tlv_beacon_period->header.type = wlan_cpu_to_le16(TLV_TYPE_UAP_BEACON_PERIOD); in wlan_uap_cmd_ap_config()
108 tlv_beacon_period->header.len = wlan_cpu_to_le16(sizeof(t_u16)); in wlan_uap_cmd_ap_config()
118 tlv_ecsa_config->header.type = wlan_cpu_to_le16(TLV_TYPE_UAP_ECSA_CONFIG); in wlan_uap_cmd_ap_config()
119 …tlv_ecsa_config->header.len = wlan_cpu_to_le16(sizeof(t_u16) + sizeof(t_u8) + sizeof(t_u8)… in wlan_uap_cmd_ap_config()
131 tlv_dtim_period->header.type = wlan_cpu_to_le16(TLV_TYPE_UAP_DTIM_PERIOD); in wlan_uap_cmd_ap_config()
[all …]
Dmlan_sta_cmd.c18 /* Additional WMSDK header files */
1169 pssid_tlv->header.type = wlan_cpu_to_le16(TLV_TYPE_SSID);
1170 pssid_tlv->header.len = (t_u16)MIN(MLAN_MAX_SSID_LENGTH, psk->ssid.ssid_len);
1173 ptlv_buffer += (pssid_tlv->header.len + sizeof(MrvlIEtypesHeader_t));
1174 cmd->size += (t_u16)(pssid_tlv->header.len + sizeof(MrvlIEtypesHeader_t));
1175 pssid_tlv->header.len = wlan_cpu_to_le16(pssid_tlv->header.len);
1180 pbssid_tlv->header.type = wlan_cpu_to_le16(TLV_TYPE_BSSID);
1181 pbssid_tlv->header.len = MLAN_MAC_ADDR_LENGTH;
1183 ptlv_buffer += (pbssid_tlv->header.len + sizeof(MrvlIEtypesHeader_t));
1184 cmd->size += (t_u16)(pbssid_tlv->header.len + sizeof(MrvlIEtypesHeader_t));
[all …]
Dmlan_scan.c17 /* Additional WMSDK header files */
293 …t_u8 num_chan = wlan_le16_to_cpu(pchanstats_tlv->header.len) / sizeof(chan_statis… in wlan_update_chan_statistics()
693 pchan_tlv_out->header.type = wlan_cpu_to_le16(TLV_TYPE_CHANLIST); in wlan_scan_channel_list()
718 pchan_tlv_out->header.len = 0; in wlan_scan_channel_list()
753 prates_tlv->header.type = wlan_cpu_to_le16(TLV_TYPE_RATES); in wlan_scan_channel_list()
754 prates_tlv->header.len = wlan_cpu_to_le16((t_u16)rates_size); in wlan_scan_channel_list()
761 ptlv_pos += sizeof(prates_tlv->header) + rates_size; in wlan_scan_channel_list()
775 pchan_tlv_out->header.type = wlan_cpu_to_le16(TLV_TYPE_CHANLIST); in wlan_scan_channel_list()
776 pchan_tlv_out->header.len = 0; in wlan_scan_channel_list()
795 /* Increment the TLV header length by the size appended */ in wlan_scan_channel_list()
[all …]
Dwifi-uap.c13 /* Additional WMSDK header files */
284 domain_info->domain.header.type = wlan_cpu_to_le16(TLV_TYPE_DOMAIN); in wifi_uap_clear_domain_info()
1221 tlv_chan_list->header.type = TLV_TYPE_CHANLIST; in wifi_uap_acs_config_set()
1222 tlv_chan_list->header.len = active_num_chans * sizeof(ChanScanParamSet_t); in wifi_uap_acs_config_set()
1231 size += sizeof(tlv_chan_list->header) + tlv_chan_list->header.len; in wifi_uap_acs_config_set()
1271 tlv_chan_band->header.type = wlan_cpu_to_le16(TLV_TYPE_UAP_CHAN_BAND_CONFIG); in wifi_uap_do_acs()
1272 tlv_chan_band->header.len = wlan_cpu_to_le16(sizeof(t_u8) + sizeof(t_u8)); in wifi_uap_do_acs()
1280 tlv_chan_list->header.type = wlan_cpu_to_le16(TLV_TYPE_CHANLIST); in wifi_uap_do_acs()
1316 tlv_chan_list->header.len = wlan_cpu_to_le16(scan_chan_num * sizeof(ChanScanParamSet_t)); in wifi_uap_do_acs()
1317 cmd_size += sizeof(tlv_chan_list->header) + (scan_chan_num * sizeof(ChanScanParamSet_t)); in wifi_uap_do_acs()
[all …]
Dmlan_api.c16 /* Additional WMSDK header files */
372 bridge_params->header.type = wlan_cpu_to_le16(TLV_TYPE_BRIDGE_PARAM); in wifi_bridge_mode()
373 bridge_params->header.len = 4 * sizeof(MrvlIEtypesHeader_t) + bridgecfg->ex_ap_ssid_len + in wifi_bridge_mode()
378 ssid->header.type = wlan_cpu_to_le16(TLV_TYPE_SSID); in wifi_bridge_mode()
379 ssid->header.len = bridgecfg->ex_ap_ssid_len; in wifi_bridge_mode()
383 … = (MrvlIEtypes_Passphrase_t *)(tlv + sizeof(MrvlIEtypesHeader_t) + ssid->header.len); in wifi_bridge_mode()
384 pass->header.type = wlan_cpu_to_le16(TLV_TYPE_PASSPHRASE); in wifi_bridge_mode()
385 pass->header.len = bridgecfg->ex_ap_pass_len; in wifi_bridge_mode()
390 … = (MrvlIEtypes_SsIdParamSet_t *)(tlv + sizeof(MrvlIEtypesHeader_t) + pass->header.len); in wifi_bridge_mode()
391 ssid->header.type = wlan_cpu_to_le16(TLV_TYPE_SSID); in wifi_bridge_mode()
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QM6/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8DX3/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QX1/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QX6/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8DX2/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8DX6/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QX5/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QX2/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QX4/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8DX5/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8DX4/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8UX5/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8UX6/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8QX3/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/mcux-sdk/devices/MIMX8DX1/scfw_api/svc/seco/
Dseco_api.h34 * Header file containing the public API for the System Controller (SC)
113 * - SC_ERR_IPC if SECO response has bad header tag or size,
140 * - SC_ERR_IPC if SECO response has bad header tag or size,
178 * - SC_ERR_IPC if SECO response has bad header tag or size,
213 * - SC_ERR_IPC if SECO response has bad header tag or size,
240 * - SC_ERR_IPC if SECO response has bad header tag or size,
269 * - SC_ERR_IPC if SECO response has bad header tag or size,
295 * - SC_ERR_IPC if SECO response has bad header tag or size,
317 * - SC_ERR_IPC if SECO response has bad header tag or size,
347 * - SC_ERR_IPC if SECO response has bad header tag or size,
[all …]
/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/
Dset.middleware.usb.yml27 description: USB device phydcd config header
30 full_name: USB device phydcd config header
31 display_name: USB device phydcd config header
64 description: USB device hsdcd config header
67 full_name: USB device hsdcd config header
68 display_name: USB device hsdcd config header
119 usb.common.header:
121 cgroup: USB Common Header
241 description: USB device khci config header
244 full_name: USB device khci config header
[all …]
/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/host/class/
Dusb_host_video.h141 /*! @brief Video control interface header descriptor structure */
144 /*< Total size of the video control header descriptor */
146 /*< Descriptor type of video control header descriptor */
148 /*< Subtype of video control header descriptor */
153 * length of this descriptor header and all Unit and Terminal descriptors */
270 /*! @brief video stream interface input header descriptor structure */
273 /*< Total size of the video stream input header descriptor */
275 /*< Descriptor type of video stream input header descriptor */
277 /*< Subtype of video stream input header descriptor */
281 …of bytes returned for the class-specific VideoStreaming interface descriptors including this header
[all …]

12345678910>>...99