| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/ |
| H A D | frag.c | 2 * IE/TLV fragmentation/defragmentation support for 29 /* defrag a fragmented dot11 ie/tlv. if space does not permit, return the needed 30 * ie length to contain all the fragments with status BCME_BUFTOOSHORT. 38 const bcm_tlv_t *ie; in bcm_tlv_dot11_defrag() local 42 /* find the ie; includes validation */ in bcm_tlv_dot11_defrag() 43 ie = bcm_parse_tlvs_dot11(buf, buf_len, id, id_ext); in bcm_tlv_dot11_defrag() 44 if (!ie) { in bcm_tlv_dot11_defrag() 52 tot_len = id_ext ? ie->len - 1 : ie->len; in bcm_tlv_dot11_defrag() 59 memcpy(out, &ie->data[id_ext ? 1 : 0], tot_len); in bcm_tlv_dot11_defrag() 67 if (ie->len != BCM_TLV_MAX_DATA_SIZE) { in bcm_tlv_dot11_defrag() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/ |
| H A D | frag.c | 2 * IE/TLV fragmentation/defragmentation support for 29 /* defrag a fragmented dot11 ie/tlv. if space does not permit, return the needed 30 * ie length to contain all the fragments with status BCME_BUFTOOSHORT. 38 const bcm_tlv_t *ie; in bcm_tlv_dot11_defrag() local 42 /* find the ie; includes validation */ in bcm_tlv_dot11_defrag() 43 ie = bcm_parse_tlvs_dot11(buf, buf_len, id, id_ext); in bcm_tlv_dot11_defrag() 44 if (!ie) { in bcm_tlv_dot11_defrag() 52 tot_len = id_ext ? ie->len - 1 : ie->len; in bcm_tlv_dot11_defrag() 59 memcpy(out, &ie->data[id_ext ? 1 : 0], tot_len); in bcm_tlv_dot11_defrag() 67 if (ie->len != BCM_TLV_MAX_DATA_SIZE) { in bcm_tlv_dot11_defrag() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/infineon/ |
| H A D | frag.c | 2 * IE/TLV fragmentation/defragmentation support for 35 /* defrag a fragmented dot11 ie/tlv. if space does not permit, return the needed 36 * ie length to contain all the fragments with status BCME_BUFTOOSHORT. 44 const bcm_tlv_t *ie; in bcm_tlv_dot11_defrag() local 48 /* find the ie; includes validation */ in bcm_tlv_dot11_defrag() 49 ie = bcm_parse_tlvs_dot11(buf, buf_len, id, id_ext); in bcm_tlv_dot11_defrag() 50 if (!ie) { in bcm_tlv_dot11_defrag() 58 tot_len = id_ext ? ie->len - 1 : ie->len; in bcm_tlv_dot11_defrag() 65 memcpy(out, &ie->data[id_ext ? 1 : 0], tot_len); in bcm_tlv_dot11_defrag() 73 if (ie->len != BCM_TLV_MAX_DATA_SIZE) { in bcm_tlv_dot11_defrag() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/ |
| H A D | frag.c | 2 * IE/TLV fragmentation/defragmentation support for 35 /* defrag a fragmented dot11 ie/tlv. if space does not permit, return the needed 36 * ie length to contain all the fragments with status BCME_BUFTOOSHORT. 44 const bcm_tlv_t *ie; in bcm_tlv_dot11_defrag() local 48 /* find the ie; includes validation */ in bcm_tlv_dot11_defrag() 49 ie = bcm_parse_tlvs_dot11(buf, buf_len, id, id_ext); in bcm_tlv_dot11_defrag() 50 if (!ie) { in bcm_tlv_dot11_defrag() 58 tot_len = id_ext ? ie->len - 1 : ie->len; in bcm_tlv_dot11_defrag() 65 memcpy(out, &ie->data[id_ext ? 1 : 0], tot_len); in bcm_tlv_dot11_defrag() 73 if (ie->len != BCM_TLV_MAX_DATA_SIZE) { in bcm_tlv_dot11_defrag() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/infineon/bcmdhd/ |
| H A D | frag.c | 2 * IE/TLV fragmentation/defragmentation support for 35 /* defrag a fragmented dot11 ie/tlv. if space does not permit, return the needed 36 * ie length to contain all the fragments with status BCME_BUFTOOSHORT. 44 const bcm_tlv_t *ie; in bcm_tlv_dot11_defrag() local 48 /* find the ie; includes validation */ in bcm_tlv_dot11_defrag() 49 ie = bcm_parse_tlvs_dot11(buf, buf_len, id, id_ext); in bcm_tlv_dot11_defrag() 50 if (!ie) { in bcm_tlv_dot11_defrag() 58 tot_len = id_ext ? ie->len - 1 : ie->len; in bcm_tlv_dot11_defrag() 65 memcpy(out, &ie->data[id_ext ? 1 : 0], tot_len); in bcm_tlv_dot11_defrag() 73 if (ie->len != BCM_TLV_MAX_DATA_SIZE) { in bcm_tlv_dot11_defrag() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/marvell/mwifiex/ |
| H A D | ie.c | 2 * NXP Wireless LAN device driver: management IE handling- setting and 3 * deleting IE. 23 /* This function checks if current IE index is used by any on other interface. 24 * Return: -1: yes, current IE index is used by someone else. 25 * 0: no, current IE index is NOT used by other interface. 32 struct mwifiex_ie *ie; in mwifiex_ie_index_used_by_other_intf() local 36 ie = &adapter->priv[i]->mgmt_ie[idx]; in mwifiex_ie_index_used_by_other_intf() 37 if (ie->mgmt_subtype_mask && ie->ie_length) in mwifiex_ie_index_used_by_other_intf() 45 /* Get unused IE index. This index will be used for setting new IE */ 48 struct mwifiex_ie *ie, u16 *index) in mwifiex_ie_get_autoidx() argument [all …]
|
| /OK3568_Linux_fs/kernel/fs/ntfs/ |
| H A D | dir.c | 74 INDEX_ENTRY *ie; in ntfs_lookup_inode_by_name() local 117 ie = (INDEX_ENTRY*)((u8*)&ir->index + in ntfs_lookup_inode_by_name() 123 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) { in ntfs_lookup_inode_by_name() 125 if ((u8*)ie < (u8*)ctx->mrec || (u8*)ie + in ntfs_lookup_inode_by_name() 127 (u8*)ie + le16_to_cpu(ie->key_length) > in ntfs_lookup_inode_by_name() 134 if (ie->flags & INDEX_ENTRY_END) in ntfs_lookup_inode_by_name() 144 (ntfschar*)&ie->key.file_name.file_name, in ntfs_lookup_inode_by_name() 145 ie->key.file_name.file_name_length, in ntfs_lookup_inode_by_name() 158 if (ie->key.file_name.file_name_type == FILE_NAME_DOS) { in ntfs_lookup_inode_by_name() 168 ie->data.dir.indexed_file); in ntfs_lookup_inode_by_name() [all …]
|
| H A D | index.c | 115 INDEX_ENTRY *ie; in ntfs_index_lookup() local 165 ie = (INDEX_ENTRY*)((u8*)&ir->index + in ntfs_index_lookup() 171 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) { in ntfs_index_lookup() 173 if ((u8*)ie < (u8*)actx->mrec || (u8*)ie + in ntfs_index_lookup() 175 (u8*)ie + le16_to_cpu(ie->length) > index_end) in ntfs_index_lookup() 181 if (ie->flags & INDEX_ENTRY_END) in ntfs_index_lookup() 185 le16_to_cpu(ie->key_length) > in ntfs_index_lookup() 186 le16_to_cpu(ie->data.vi.data_offset) || in ntfs_index_lookup() 187 (u32)le16_to_cpu(ie->data.vi.data_offset) + in ntfs_index_lookup() 188 le16_to_cpu(ie->data.vi.data_length) > in ntfs_index_lookup() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/core/ |
| H A D | rtw_ieee80211.c | 67 * for adhoc-master to generate ie and provide supported-rate to fw 357 * rtw_get_ie_ex - Search specific IE from a series of IEs 363 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 364 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 366 * Returns: The address of the specific IE found, or NULL 368 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 387 if (ie) in rtw_get_ie_ex() 388 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 494 /* update rate ie */ in rtw_filter_suppport_rateie() 497 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/core/ |
| H A D | rtw_ieee80211.c | 67 * for adhoc-master to generate ie and provide supported-rate to fw 256 uint len, /* IE content length, not entire IE length */ in rtw_set_ie() 357 * rtw_get_ie_ex - Search specific IE from a series of IEs 363 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 364 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 366 * Returns: The address of the specific IE found, or NULL 368 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 387 if (ie) in rtw_get_ie_ex() 388 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 540 /* update rate ie */ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/core/ |
| H A D | rtw_ieee80211.c | 67 * for adhoc-master to generate ie and provide supported-rate to fw 256 uint len, /* IE content length, not entire IE length */ in rtw_set_ie() 357 * rtw_get_ie_ex - Search specific IE from a series of IEs 363 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 364 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 366 * Returns: The address of the specific IE found, or NULL 368 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 387 if (ie) in rtw_get_ie_ex() 388 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 540 /* update rate ie */ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188fu/core/ |
| H A D | rtw_ieee80211.c | 60 * for adhoc-master to generate ie and provide supported-rate to fw 322 * rtw_get_ie_ex - Search specific IE from a series of IEs 328 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 329 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 331 * Returns: The address of the specific IE found, or NULL 333 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 352 if (ie) in rtw_get_ie_ex() 353 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 460 /* update rate ie */ in rtw_filter_suppport_rateie() 463 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/core/ |
| H A D | rtw_ieee80211.c | 59 * for adhoc-master to generate ie and provide supported-rate to fw 349 * rtw_get_ie_ex - Search specific IE from a series of IEs 355 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 356 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 358 * Returns: The address of the specific IE found, or NULL 360 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 379 if (ie) in rtw_get_ie_ex() 380 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 486 /* update rate ie */ in rtw_filter_suppport_rateie() 489 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/core/ |
| H A D | rtw_ieee80211.c | 66 * for adhoc-master to generate ie and provide supported-rate to fw 269 uint len, /* IE content length, not entire IE length */ in rtw_set_ie() 379 * rtw_get_ie_ex - Search specific IE from a series of IEs 385 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 386 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 388 * Returns: The address of the specific IE found, or NULL 390 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 409 if (ie) in rtw_get_ie_ex() 410 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 571 /* update rate ie */ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/core/ |
| H A D | rtw_ieee80211.c | 66 * for adhoc-master to generate ie and provide supported-rate to fw 269 uint len, /* IE content length, not entire IE length */ in rtw_set_ie() 379 * rtw_get_ie_ex - Search specific IE from a series of IEs 385 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 386 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 388 * Returns: The address of the specific IE found, or NULL 390 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 409 if (ie) in rtw_get_ie_ex() 410 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 571 /* update rate ie */ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/core/ |
| H A D | rtw_ieee80211.c | 66 * for adhoc-master to generate ie and provide supported-rate to fw 269 uint len, /* IE content length, not entire IE length */ in rtw_set_ie() 379 * rtw_get_ie_ex - Search specific IE from a series of IEs 385 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 386 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 388 * Returns: The address of the specific IE found, or NULL 390 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 409 if (ie) in rtw_get_ie_ex() 410 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 570 /* update rate ie */ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8189fs/core/ |
| H A D | rtw_ieee80211.c | 66 * for adhoc-master to generate ie and provide supported-rate to fw 365 * rtw_get_ie_ex - Search specific IE from a series of IEs 371 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 372 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 374 * Returns: The address of the specific IE found, or NULL 376 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 395 if (ie) in rtw_get_ie_ex() 396 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 502 /* update rate ie */ in rtw_filter_suppport_rateie() 505 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/core/ |
| H A D | rtw_ieee80211.c | 67 * for adhoc-master to generate ie and provide supported-rate to fw 371 * rtw_get_ie_ex - Search specific IE from a series of IEs 377 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 378 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 380 * Returns: The address of the specific IE found, or NULL 382 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 401 if (ie) in rtw_get_ie_ex() 402 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 508 /* update rate ie */ in rtw_filter_suppport_rateie() 511 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/core/ |
| H A D | rtw_ieee80211.c | 66 * for adhoc-master to generate ie and provide supported-rate to fw 356 * rtw_get_ie_ex - Search specific IE from a series of IEs 362 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 363 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 365 * Returns: The address of the specific IE found, or NULL 367 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 386 if (ie) in rtw_get_ie_ex() 387 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 493 /* update rate ie */ in rtw_filter_suppport_rateie() 496 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/core/ |
| H A D | rtw_ieee80211.c | 66 * for adhoc-master to generate ie and provide supported-rate to fw 370 * rtw_get_ie_ex - Search specific IE from a series of IEs 376 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 377 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 379 * Returns: The address of the specific IE found, or NULL 381 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 400 if (ie) in rtw_get_ie_ex() 401 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 507 /* update rate ie */ in rtw_filter_suppport_rateie() 510 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189fs/core/ |
| H A D | rtw_ieee80211.c | 46 * for adhoc-master to generate ie and provide supported-rate to fw 308 * rtw_get_ie_ex - Search specific IE from a series of IEs 314 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 315 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 317 * Returns: The address of the specific IE found, or NULL 319 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 338 if (ie) in rtw_get_ie_ex() 339 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 446 /* update rate ie */ in rtw_filter_suppport_rateie() 449 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/core/ |
| H A D | rtw_ieee80211.c | 60 * for adhoc-master to generate ie and provide supported-rate to fw 322 * rtw_get_ie_ex - Search specific IE from a series of IEs 328 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 329 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 331 * Returns: The address of the specific IE found, or NULL 333 u8 *rtw_get_ie_ex(const u8 *in_ie, uint in_len, u8 eid, const u8 *oui, u8 oui_len, u8 *ie, uint *ie… in rtw_get_ie_ex() argument 352 if (ie) in rtw_get_ie_ex() 353 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 460 /* update rate ie */ in rtw_filter_suppport_rateie() 463 /* update remain ie & IELength*/ in rtw_filter_suppport_rateie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/cxgb/ |
| H A D | vsc7326_reg.h | 68 * ie = 0 for ingress, 1 for egress 71 #define REG_TEST(ie,fn) CRA(0x2,ie&1,0x00+fn) /* Mode & Test Register */ argument 72 #define REG_TOP_BOTTOM(ie,fn) CRA(0x2,ie&1,0x10+fn) /* FIFO Buffer Top & Bottom */ argument 73 #define REG_TAIL(ie,fn) CRA(0x2,ie&1,0x20+fn) /* FIFO Write Pointer */ argument 74 #define REG_HEAD(ie,fn) CRA(0x2,ie&1,0x30+fn) /* FIFO Read Pointer */ argument 75 #define REG_HIGH_LOW_WM(ie,fn) CRA(0x2,ie&1,0x40+fn) /* Flow Control Water Marks */ argument 76 #define REG_CT_THRHLD(ie,fn) CRA(0x2,ie&1,0x50+fn) /* Cut Through Threshold */ argument 77 #define REG_FIFO_DROP_CNT(ie,fn) CRA(0x2,ie&1,0x60+fn) /* Drop & CRC Error Counter */ argument 78 #define REG_DEBUG_BUF_CNT(ie,fn) CRA(0x2,ie&1,0x70+fn) /* Input Side Debug Counter */ argument 83 * ie = 0 for ingress, 1 for egress [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822be/core/ |
| H A D | rtw_ieee80211.c | 50 * for adhoc-master to generate ie and provide supported-rate to fw 301 * rtw_get_ie_ex - Search specific IE from a series of IEs 307 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 308 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 310 * Returns: The address of the specific IE found, or NULL 312 u8 *rtw_get_ie_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, u8 oui_len, u8 *ie, uint *ielen) in rtw_get_ie_ex() argument 331 if (ie) in rtw_get_ie_ex() 332 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt + 1] + 2); in rtw_get_ie_ex() 444 u8 *ie = pdev_network->IEs; in rtw_generate_ie() local 450 ie += sz; in rtw_generate_ie() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723bu/core/ |
| H A D | rtw_ieee80211.c | 50 // for adhoc-master to generate ie and provide supported-rate to fw 304 * rtw_get_ie_ex - Search specific IE from a series of IEs 310 …* @ie: If not NULL and the specific IE is found, the IE will be copied to the buf starting from th… 311 * @ielen: If not NULL and the specific IE is found, will set to the length of the entire IE 313 * Returns: The address of the specific IE found, or NULL 315 u8 *rtw_get_ie_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, u8 oui_len, u8 *ie, uint *ielen) in rtw_get_ie_ex() argument 336 if(ie) in rtw_get_ie_ex() 337 _rtw_memcpy(ie, &in_ie[cnt], in_ie[cnt+1]+2); in rtw_get_ie_ex() 454 u8* ie = pdev_network->IEs; in rtw_generate_ie() local 460 ie += sz; in rtw_generate_ie() [all …]
|