Home
last modified time | relevance | path

Searched refs:ie (Results 1 – 200 of 234) sorted by relevance

12

/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb/
Dvsc7326_reg.h70 #define REG_TEST(ie,fn) CRA(0x2,ie&1,0x00+fn) /* Mode & Test Register */ argument
71 #define REG_TOP_BOTTOM(ie,fn) CRA(0x2,ie&1,0x10+fn) /* FIFO Buffer Top & Bottom */ argument
72 #define REG_TAIL(ie,fn) CRA(0x2,ie&1,0x20+fn) /* FIFO Write Pointer */ argument
73 #define REG_HEAD(ie,fn) CRA(0x2,ie&1,0x30+fn) /* FIFO Read Pointer */ argument
74 #define REG_HIGH_LOW_WM(ie,fn) CRA(0x2,ie&1,0x40+fn) /* Flow Control Water Marks */ argument
75 #define REG_CT_THRHLD(ie,fn) CRA(0x2,ie&1,0x50+fn) /* Cut Through Threshold */ argument
76 #define REG_FIFO_DROP_CNT(ie,fn) CRA(0x2,ie&1,0x60+fn) /* Drop & CRC Error Counter */ argument
77 #define REG_DEBUG_BUF_CNT(ie,fn) CRA(0x2,ie&1,0x70+fn) /* Input Side Debug Counter */ argument
86 #define REG_TRAFFIC_SHAPER_BUCKET(ie,bn) CRA(0x2,ie&1,0x0a + (bn>7) | ((bn&7)<<4)) argument
87 #define REG_TRAFFIC_SHAPER_CONTROL(ie) CRA(0x2,ie&1,0x3b) argument
[all …]
/linux-4.1.27/fs/ntfs/
Ddir.c87 INDEX_ENTRY *ie; in ntfs_lookup_inode_by_name() local
130 ie = (INDEX_ENTRY*)((u8*)&ir->index + in ntfs_lookup_inode_by_name()
136 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) { in ntfs_lookup_inode_by_name()
138 if ((u8*)ie < (u8*)ctx->mrec || (u8*)ie + in ntfs_lookup_inode_by_name()
140 (u8*)ie + le16_to_cpu(ie->key_length) > in ntfs_lookup_inode_by_name()
147 if (ie->flags & INDEX_ENTRY_END) in ntfs_lookup_inode_by_name()
157 (ntfschar*)&ie->key.file_name.file_name, in ntfs_lookup_inode_by_name()
158 ie->key.file_name.file_name_length, in ntfs_lookup_inode_by_name()
171 if (ie->key.file_name.file_name_type == FILE_NAME_DOS) { in ntfs_lookup_inode_by_name()
181 ie->data.dir.indexed_file); in ntfs_lookup_inode_by_name()
[all …]
Dindex.c129 INDEX_ENTRY *ie; in ntfs_index_lookup() local
179 ie = (INDEX_ENTRY*)((u8*)&ir->index + in ntfs_index_lookup()
185 for (;; ie = (INDEX_ENTRY*)((u8*)ie + le16_to_cpu(ie->length))) { in ntfs_index_lookup()
187 if ((u8*)ie < (u8*)actx->mrec || (u8*)ie + in ntfs_index_lookup()
189 (u8*)ie + le16_to_cpu(ie->length) > index_end) in ntfs_index_lookup()
195 if (ie->flags & INDEX_ENTRY_END) in ntfs_index_lookup()
199 le16_to_cpu(ie->key_length) > in ntfs_index_lookup()
200 le16_to_cpu(ie->data.vi.data_offset) || in ntfs_index_lookup()
201 (u32)le16_to_cpu(ie->data.vi.data_offset) + in ntfs_index_lookup()
202 le16_to_cpu(ie->data.vi.data_length) > in ntfs_index_lookup()
[all …]
/linux-4.1.27/include/linux/uwb/
Dspec.h310 static inline int uwb_ie_drp_type(struct uwb_ie_drp *ie) in uwb_ie_drp_type() argument
312 return (le16_to_cpu(ie->drp_control) >> 0) & 0x7; in uwb_ie_drp_type()
315 static inline int uwb_ie_drp_stream_index(struct uwb_ie_drp *ie) in uwb_ie_drp_stream_index() argument
317 return (le16_to_cpu(ie->drp_control) >> 3) & 0x7; in uwb_ie_drp_stream_index()
320 static inline int uwb_ie_drp_reason_code(struct uwb_ie_drp *ie) in uwb_ie_drp_reason_code() argument
322 return (le16_to_cpu(ie->drp_control) >> 6) & 0x7; in uwb_ie_drp_reason_code()
325 static inline int uwb_ie_drp_status(struct uwb_ie_drp *ie) in uwb_ie_drp_status() argument
327 return (le16_to_cpu(ie->drp_control) >> 9) & 0x1; in uwb_ie_drp_status()
330 static inline int uwb_ie_drp_owner(struct uwb_ie_drp *ie) in uwb_ie_drp_owner() argument
332 return (le16_to_cpu(ie->drp_control) >> 10) & 0x1; in uwb_ie_drp_owner()
[all …]
/linux-4.1.27/drivers/uwb/
Die.c76 const struct uwb_ie_hdr *ie; in uwb_ie_dump_hex() local
82 ie = uwb_ie_next(&ptr, &len); in uwb_ie_dump_hex()
83 if (!ie) in uwb_ie_dump_hex()
87 (unsigned)ie->element_id, in uwb_ie_dump_hex()
88 (unsigned)ie->length); in uwb_ie_dump_hex()
89 d = (uint8_t *)ie + sizeof(struct uwb_ie_hdr); in uwb_ie_dump_hex()
235 struct uwb_ie_hdr *ie; in uwb_rc_ie_add_one() local
254 ie = uwb_ie_next(&ptr, &size); in uwb_rc_ie_add_one()
255 if (!ie || ie->element_id > new_ie->element_id) in uwb_rc_ie_add_one()
290 const struct uwb_ie_hdr *ie; in uwb_rc_ie_add() local
[all …]
Dlc-rc.c130 struct uwb_ie_hdr *ie; in ASIE_show() local
142 ie = uwb_ie_next(&ptr, &len); in ASIE_show()
143 if (!ie) in ASIE_show()
145 if (ie->element_id == UWB_APP_SPEC_IE) { in ASIE_show()
146 result = uwb_ie_dump_hex(ie, in ASIE_show()
147 ie->length + sizeof(struct uwb_ie_hdr), in ASIE_show()
169 struct uwb_ie_hdr *ie; in ASIE_store() local
197 ie = (struct uwb_ie_hdr *)ie_buf; in ASIE_store()
198 if (ie->element_id != UWB_APP_SPEC_IE) { in ASIE_store()
200 __func__, ie->element_id); in ASIE_store()
[all …]
DMakefile13 drp-ie.o \
15 ie.o \
16 ie-rcv.o \
Ddrp-avail.c123 rc->drp_avail.ie.hdr.element_id = UWB_IE_DRP_AVAILABILITY; in uwb_drp_avail_ie_update()
124 rc->drp_avail.ie.hdr.length = UWB_NUM_MAS / 8; in uwb_drp_avail_ie_update()
125 uwb_mas_bm_copy_le(rc->drp_avail.ie.bmp, &avail); in uwb_drp_avail_ie_update()
Ddrp.c123 num_bytes += sizeof(rc->drp_avail.ie); in uwb_rc_send_all_drp_ie()
134 memcpy(IEDataptr, &rc->drp_avail.ie, sizeof(rc->drp_avail.ie)); in uwb_rc_send_all_drp_ie()
/linux-4.1.27/drivers/staging/rtl8712/
Dieee80211.c176 u8 *ie = pdev_network->IEs; in r8712_generate_ie() local
180 ie += sz; in r8712_generate_ie()
182 *(u16 *)ie = cpu_to_le16((u16)pdev_network->Configuration.BeaconPeriod); in r8712_generate_ie()
184 ie += 2; in r8712_generate_ie()
186 *(u16 *)ie = 0; in r8712_generate_ie()
187 *(u16 *)ie |= cpu_to_le16(cap_IBSS); in r8712_generate_ie()
189 *(u16 *)ie |= cpu_to_le16(cap_ShortPremble); in r8712_generate_ie()
191 *(u16 *)ie |= cpu_to_le16(cap_Privacy); in r8712_generate_ie()
193 ie += 2; in r8712_generate_ie()
195 ie = r8712_set_ie(ie, _SSID_IE_, pdev_network->Ssid.SsidLength, in r8712_generate_ie()
[all …]
Drtl871x_cmd.h677 unsigned char ie[0]; member
683 unsigned char ie[0]; member
689 unsigned char ie[0]; member
695 unsigned char ie[0]; member
Drtl871x_mlme.h207 u8 *r8712_get_capability_from_ie(u8 *ie);
Drtl871x_xmit.h269 void r8712_update_protection(struct _adapter *padapter, u8 *ie, uint ie_len);
Drtl871x_xmit.c705 void r8712_update_protection(struct _adapter *padapter, u8 *ie, uint ie_len) in r8712_update_protection() argument
721 perp = r8712_get_ie(ie, _ERPINFO_IE_, &erp_len, ie_len); in r8712_update_protection()
Drtl871x_mlme.c226 u8 *r8712_get_capability_from_ie(u8 *ie) in r8712_get_capability_from_ie() argument
228 return ie + 8 + 2; in r8712_get_capability_from_ie()
/linux-4.1.27/drivers/net/wireless/mwifiex/
Die.c32 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()
48 struct mwifiex_ie *ie, u16 *index) in mwifiex_ie_get_autoidx() argument
54 len = le16_to_cpu(ie->ie_length); in mwifiex_ie_get_autoidx()
86 struct mwifiex_ie *ie; in mwifiex_update_autoindex_ies() local
95 ie = (struct mwifiex_ie *)(((u8 *)ie_list) + travel_len); in mwifiex_update_autoindex_ies()
96 tlv_len = le16_to_cpu(ie->ie_length); in mwifiex_update_autoindex_ies()
101 index = le16_to_cpu(ie->ie_index); in mwifiex_update_autoindex_ies()
102 mask = le16_to_cpu(ie->mgmt_subtype_mask); in mwifiex_update_autoindex_ies()
[all …]
DMakefile34 mwifiex-y += ie.o
Dcfg80211.c1957 if (sme->ie) in mwifiex_cfg80211_assoc()
1958 ret = mwifiex_set_gen_ie(priv, sme->ie, sme->ie_len); in mwifiex_cfg80211_assoc()
2250 struct ieee_types_header *ie; in mwifiex_cfg80211_scan() local
2272 if (request->ie && request->ie_len) { in mwifiex_cfg80211_scan()
2278 ie = (struct ieee_types_header *)(request->ie + offset); in mwifiex_cfg80211_scan()
2279 memcpy(&priv->vs_ie[i].ie, ie, sizeof(*ie) + ie->len); in mwifiex_cfg80211_scan()
2280 offset += sizeof(*ie) + ie->len; in mwifiex_cfg80211_scan()
2317 if (request->ie && request->ie_len) { in mwifiex_cfg80211_scan()
2321 memset(&priv->vs_ie[i].ie, 0, in mwifiex_cfg80211_scan()
Dsta_ioctl.c1386 mwifiex_set_gen_ie(struct mwifiex_private *priv, const u8 *ie, int ie_len) in mwifiex_set_gen_ie() argument
1395 memcpy(gen_ie.ie_data, ie, ie_len); in mwifiex_set_gen_ie()
Dscan.c2358 cpu_to_le16((((u16) priv->vs_ie[id].ie[1]) in mwifiex_cmd_append_vsie_tlv()
2360 memcpy(vs_param_set->ie, priv->vs_ie[id].ie, in mwifiex_cmd_append_vsie_tlv()
Dmain.h421 u8 ie[MWIFIEX_MAX_VSIE_LEN]; member
1284 int mwifiex_set_gen_ie(struct mwifiex_private *priv, const u8 *ie, int ie_len);
/linux-4.1.27/drivers/net/wireless/rtlwifi/
Dps.c724 u8 *pos, *end, *ie; in rtl_p2p_noa_ie() local
731 ie = NULL; in rtl_p2p_noa_ie()
739 ie = pos + 2+4; in rtl_p2p_noa_ie()
746 if (ie == NULL) in rtl_p2p_noa_ie()
750 while (ie + 1 < end) { in rtl_p2p_noa_ie()
751 noa_len = READEF2BYTE((__le16 *)&ie[1]); in rtl_p2p_noa_ie()
752 if (ie + 3 + ie[1] > end) in rtl_p2p_noa_ie()
755 if (ie[0] == 12) { in rtl_p2p_noa_ie()
765 noa_index = ie[3]; in rtl_p2p_noa_ie()
771 p2pinfo->opp_ps = (ie[4] >> 7); in rtl_p2p_noa_ie()
[all …]
Dbase.h148 u8 *rtl_find_ie(u8 *data, unsigned int len, u8 ie);
Dbase.c1752 u8 *rtl_find_ie(u8 *data, unsigned int len, u8 ie) in rtl_find_ie() argument
1763 if (pos[0] == ie) in rtl_find_ie()
/linux-4.1.27/net/wireless/
Dwext-sme.c30 wdev->wext.connect.ie = wdev->wext.ie; in cfg80211_mgd_wext_connect()
237 const u8 *ie; in cfg80211_mgd_wext_giwessid() local
240 ie = ieee80211_bss_get_ie(&wdev->current_bss->pub, in cfg80211_mgd_wext_giwessid()
242 if (ie) { in cfg80211_mgd_wext_giwessid()
244 data->length = ie[1]; in cfg80211_mgd_wext_giwessid()
245 memcpy(ssid, ie + 2, data->length); in cfg80211_mgd_wext_giwessid()
337 u8 *ie = extra; in cfg80211_wext_siwgenie() local
344 ie = NULL; in cfg80211_wext_siwgenie()
351 memcmp(wdev->wext.ie, ie, ie_len) == 0) in cfg80211_wext_siwgenie()
355 ie = kmemdup(extra, ie_len, GFP_KERNEL); in cfg80211_wext_siwgenie()
[all …]
Dscan.c371 struct ieee80211_vendor_ie *ie; in cfg80211_find_vendor_ie() local
381 ie = (struct ieee80211_vendor_ie *)pos; in cfg80211_find_vendor_ie()
386 if (ie->len < sizeof(*ie)) in cfg80211_find_vendor_ie()
389 ie_oui = ie->oui[0] << 16 | ie->oui[1] << 8 | ie->oui[2]; in cfg80211_find_vendor_ie()
390 if (ie_oui == oui && ie->oui_type == oui_type) in cfg80211_find_vendor_ie()
393 pos += 2 + ie->len; in cfg80211_find_vendor_ie()
688 const u8 *ie; in cfg80211_combine_bsses() local
696 ie = cfg80211_find_ie(WLAN_EID_SSID, ies->data, ies->len); in cfg80211_combine_bsses()
697 if (!ie) { in cfg80211_combine_bsses()
702 ssidlen = ie[1]; in cfg80211_combine_bsses()
[all …]
Dmlme.c28 u8 *ie = mgmt->u.assoc_resp.variable; in cfg80211_rx_assoc_resp() local
48 __cfg80211_connect_result(dev, mgmt->bssid, NULL, 0, ie, len - ieoffs, in cfg80211_rx_assoc_resp()
204 const u8 *ie, int ie_len, in cfg80211_mlme_auth() argument
210 .ie = ie, in cfg80211_mlme_auth()
316 const u8 *ie, int ie_len, u16 reason, in cfg80211_mlme_deauth() argument
323 .ie = ie, in cfg80211_mlme_deauth()
340 const u8 *ie, int ie_len, u16 reason, in cfg80211_mlme_disassoc() argument
347 .ie = ie, in cfg80211_mlme_disassoc()
Dsme.c45 const u8 *ie; member
55 kfree(wdev->conn->ie); in cfg80211_sme_free()
179 req.ie = params->ie; in cfg80211_conn_do_work()
512 if (cfg80211_sme_get_conn_ies(wdev, connect->ie, connect->ie_len, in cfg80211_sme_connect()
513 &wdev->conn->ie, in cfg80211_sme_connect()
519 wdev->conn->params.ie = wdev->conn->ie; in cfg80211_sme_connect()
894 void __cfg80211_disconnected(struct net_device *dev, const u8 *ie, in __cfg80211_disconnected() argument
918 nl80211_send_disconnected(rdev, dev, reason, ie, ie_len, from_ap); in __cfg80211_disconnected()
941 const u8 *ie, size_t ie_len, gfp_t gfp) in cfg80211_disconnected() argument
953 ev->dc.ie = ((u8 *)ev) + sizeof(*ev); in cfg80211_disconnected()
[all …]
Dcore.h222 const u8 *ie; member
328 const u8 *ie, int ie_len,
339 const u8 *ie, int ie_len, u16 reason,
343 const u8 *ie, int ie_len, u16 reason,
372 void __cfg80211_disconnected(struct net_device *dev, const u8 *ie,
Dnl80211.h65 const u8 *ie, size_t ie_len, bool from_ap);
Dmesh.c88 .ie = NULL,
Dnl80211.c5337 setup->ie = nla_data(ieattr); in nl80211_parse_mesh_setup()
5805 request->ie = (void *)(request->ssids + n_ssids); in nl80211_trigger_scan()
5807 request->ie = (void *)(request->channels + n_channels); in nl80211_trigger_scan()
5874 memcpy((void *)request->ie, in nl80211_trigger_scan()
6059 request->ie = (void *)(request->ssids + n_ssids); in nl80211_parse_sched_scan()
6061 request->ie = (void *)(request->channels + n_channels); in nl80211_parse_sched_scan()
6065 if (request->ie) in nl80211_parse_sched_scan()
6066 request->match_sets = (void *)(request->ie + ie_len); in nl80211_parse_sched_scan()
6197 memcpy((void *)request->ie, in nl80211_parse_sched_scan()
6809 const u8 *bssid, *ssid, *ie = NULL, *sae_data = NULL; in nl80211_authenticate() local
[all …]
Dutil.c813 const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie) in ieee80211_bss_get_ie() argument
821 return cfg80211_find_ie(ie, ies->data, ies->len); in ieee80211_bss_get_ie()
889 ev->dc.ie, ev->dc.ie_len, in cfg80211_process_wdev_events()
Dcore.c901 kfree(wdev->wext.ie); in __cfg80211_leave()
902 wdev->wext.ie = NULL; in __cfg80211_leave()
Dtrace.h1878 __dynamic_array(u8, ie, ftie->ie_len)
1884 memcpy(__get_dynamic_array(ie), ftie->ie, ftie->ie_len);
2606 __dynamic_array(u8, ie, request ? request->ie_len : 0)
2615 memcpy(__get_dynamic_array(ie), request->ie,
/linux-4.1.27/drivers/net/wireless/libertas/
Dmesh.c95 struct mrvl_meshie *ie; in lbs_mesh_config() local
99 ie = (struct mrvl_meshie *)cmd.data; in lbs_mesh_config()
103 ie->id = WLAN_EID_VENDOR_SPECIFIC; in lbs_mesh_config()
104 ie->val.oui[0] = 0x00; in lbs_mesh_config()
105 ie->val.oui[1] = 0x50; in lbs_mesh_config()
106 ie->val.oui[2] = 0x43; in lbs_mesh_config()
107 ie->val.type = MARVELL_MESH_IE_TYPE; in lbs_mesh_config()
108 ie->val.subtype = MARVELL_MESH_IE_SUBTYPE; in lbs_mesh_config()
109 ie->val.version = MARVELL_MESH_IE_VERSION; in lbs_mesh_config()
110 ie->val.active_protocol_id = MARVELL_MESH_PROTO_ID_HWMP; in lbs_mesh_config()
[all …]
Dcfg.c270 add_ie_rates(u8 *tlv, const u8 *ie, int *nrates) in add_ie_rates() argument
272 int hw, ap, ap_max = ie[1]; in add_ie_rates()
276 ie += 2; in add_ie_rates()
278 lbs_deb_hex(LBS_DEB_ASSOC, "AP IE Rates", (u8 *) ie, ap_max); in add_ie_rates()
283 if (hw_rate == (ie[ap] & 0x7f)) { in add_ie_rates()
284 *tlv++ = ie[ap]; in add_ie_rates()
412 static int lbs_add_wpa_tlv(u8 *tlv, const u8 *ie, u8 ie_len) in lbs_add_wpa_tlv() argument
426 *tlv++ = *ie++; in lbs_add_wpa_tlv()
428 tlv_len = *tlv++ = *ie++; in lbs_add_wpa_tlv()
431 *tlv++ = *ie++; in lbs_add_wpa_tlv()
[all …]
DREADME178 Display the current contents of the driver scan table (ie. get the
/linux-4.1.27/drivers/net/wireless/orinoco/
Dscan.c80 u8 *ie; in orinoco_add_hostscan_result() local
97 ie = ie_buf + len + 2; in orinoco_add_hostscan_result()
101 ie_len += symbol_build_supp_rates(ie, bss->s.rates); in orinoco_add_hostscan_result()
105 ie_len += prism_build_supp_rates(ie, bss->p.rates); in orinoco_add_hostscan_result()
140 const u8 *ie; in orinoco_add_extscan_result() local
149 ie = cfg80211_find_ie(WLAN_EID_DS_PARAMS, bss->data, ie_len); in orinoco_add_extscan_result()
150 chan = ie ? ie[2] : 0; in orinoco_add_extscan_result()
157 ie = bss->data; in orinoco_add_extscan_result()
162 beacon_interval, ie, ie_len, signal, in orinoco_add_extscan_result()
Dmain.c1258 u8 *ie; in orinoco_send_assocreqie_wevent() local
1268 ie = orinoco_get_wpa_ie(buf, sizeof(buf)); in orinoco_send_assocreqie_wevent()
1269 if (ie) { in orinoco_send_assocreqie_wevent()
1270 int rem = sizeof(buf) - (ie - &buf[0]); in orinoco_send_assocreqie_wevent()
1271 wrqu.data.length = ie[1] + 2; in orinoco_send_assocreqie_wevent()
1277 wireless_send_event(dev, IWEVASSOCREQIE, &wrqu, ie); in orinoco_send_assocreqie_wevent()
1288 u8 *ie; in orinoco_send_assocrespie_wevent() local
1299 ie = orinoco_get_wpa_ie(buf, sizeof(buf)); in orinoco_send_assocrespie_wevent()
1300 if (ie) { in orinoco_send_assocrespie_wevent()
1301 int rem = sizeof(buf) - (ie - &buf[0]); in orinoco_send_assocrespie_wevent()
[all …]
/linux-4.1.27/drivers/usb/wusbcore/
Ddevconnect.c409 struct wuie_keep_alive *ie = &wusbhc->keep_alive_ie; in __wusbhc_keep_alive() local
412 old_keep_alives = ie->hdr.bLength - sizeof(ie->hdr); in __wusbhc_keep_alive()
433 ie->bDeviceAddress[keep_alives++] = wusb_dev->addr; in __wusbhc_keep_alive()
437 ie->bDeviceAddress[keep_alives++] = 0x7f; in __wusbhc_keep_alive()
438 ie->hdr.bLength = sizeof(ie->hdr) + in __wusbhc_keep_alive()
439 keep_alives*sizeof(ie->bDeviceAddress[0]); in __wusbhc_keep_alive()
441 wusbhc_mmcie_set(wusbhc, 10, 5, &ie->hdr); in __wusbhc_keep_alive()
443 wusbhc_mmcie_rm(wusbhc, &ie->hdr); in __wusbhc_keep_alive()
658 struct wuie_disconnect *ie; in __wusbhc_dev_disable() local
669 ie = kzalloc(sizeof(*ie), GFP_KERNEL); in __wusbhc_dev_disable()
[all …]
/linux-4.1.27/drivers/staging/rtl8188eu/core/
Drtw_ieee80211.c254 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
272 if (ie) in rtw_get_ie_ex()
273 memcpy(ie, &in_ie[cnt], in_ie[cnt+1]+2); in rtw_get_ie_ex()
376 u8 *ie = pdev_network->IEs; in rtw_generate_ie() local
381 ie += sz; in rtw_generate_ie()
384 *(__le16 *)ie = cpu_to_le16((u16)pdev_network->Configuration.BeaconPeriod);/* BCN_INTERVAL; */ in rtw_generate_ie()
386 ie += 2; in rtw_generate_ie()
389 *(u16 *)ie = 0; in rtw_generate_ie()
391 *(__le16 *)ie |= cpu_to_le16(cap_IBSS); in rtw_generate_ie()
394 *(__le16 *)ie |= cpu_to_le16(cap_ShortPremble); in rtw_generate_ie()
[all …]
Drtw_ap.c855 u8 *ie = pbss_network->IEs; in rtw_check_beacon_data() local
879 memset(ie, 0, MAX_IE_SZ); in rtw_check_beacon_data()
881 memcpy(ie, pbuf, pbss_network->IELength); in rtw_check_beacon_data()
892 p = rtw_get_beacon_interval_from_ie(ie);/* 8: TimeStamp, 2: Beacon Interval 2:Capability */ in rtw_check_beacon_data()
896 cap = get_unaligned_le16(ie); in rtw_check_beacon_data()
899 …p = rtw_get_ie(ie + _BEACON_IE_OFFSET_, _SSID_IE_, &ie_len, (pbss_network->IELength - _BEACON_IE_O… in rtw_check_beacon_data()
909 …p = rtw_get_ie(ie + _BEACON_IE_OFFSET_, _DSSET_IE_, &ie_len, (pbss_network->IELength - _BEACON_IE_… in rtw_check_beacon_data()
917 …p = rtw_get_ie(ie + _BEACON_IE_OFFSET_, _SUPPORTEDRATES_IE_, &ie_len, (pbss_network->IELength - _B… in rtw_check_beacon_data()
924 …p = rtw_get_ie(ie + _BEACON_IE_OFFSET_, _EXT_SUPPORTEDRATES_IE_, &ie_len, pbss_network->IELength -… in rtw_check_beacon_data()
935 …p = rtw_get_ie(ie + _BEACON_IE_OFFSET_, _ERPINFO_IE_, &ie_len, (pbss_network->IELength - _BEACON_I… in rtw_check_beacon_data()
[all …]
Drtw_mlme.c285 u8 *rtw_get_capability_from_ie(u8 *ie) in rtw_get_capability_from_ie() argument
287 return ie + 8 + 2; in rtw_get_capability_from_ie()
300 u8 *rtw_get_beacon_interval_from_ie(u8 *ie) in rtw_get_beacon_interval_from_ie() argument
302 return ie + 8; in rtw_get_beacon_interval_from_ie()
1767 static int rtw_append_pmkid(struct adapter *Adapter, int iEntry, u8 *ie, uint ie_len) in rtw_append_pmkid() argument
1771 if (ie[13] <= 20) { in rtw_append_pmkid()
1773 ie[ie_len] = 1; in rtw_append_pmkid()
1775 ie[ie_len] = 0; /* PMKID count = 0x0100 */ in rtw_append_pmkid()
1777 memcpy(&ie[ie_len], &psecuritypriv->PMKIDList[iEntry].PMKID, 16); in rtw_append_pmkid()
1780 ie[13] += 18;/* PMKID length = 2+16 */ in rtw_append_pmkid()
Drtw_mlme_ext.c2554 u8 *ie = pnetwork->IEs; in issue_asocrsp() local
2593 val = *(unsigned short *)rtw_get_capability_from_ie(ie); in issue_asocrsp()
2614 …pbuf = rtw_get_ie(ie + _BEACON_IE_OFFSET_, _HT_CAPABILITY_IE_, &ie_len, (pnetwork->IELength - _BEA… in issue_asocrsp()
2622 …pbuf = rtw_get_ie(ie + _BEACON_IE_OFFSET_, _HT_ADD_INFO_IE_, &ie_len, (pnetwork->IELength - _BEACO… in issue_asocrsp()
2635 for (pbuf = ie + _BEACON_IE_OFFSET_;; pbuf += (ie_len + 2)) { in issue_asocrsp()
4082 u8 *ie, *p; in process_80211d() local
4091ie = rtw_get_ie(bssid->IEs + _FIXED_IE_LENGTH_, _COUNTRY_IE_, &len, bssid->IELength - _FIXED_IE_LE… in process_80211d()
4092 if (!ie) in process_80211d()
4096 ie += 2; in process_80211d()
4097 p = ie; in process_80211d()
[all …]
Drtw_xmit.c1156 void rtw_update_protection(struct adapter *padapter, u8 *ie, uint ie_len) in rtw_update_protection() argument
1173 perp = rtw_get_ie(ie, _ERPINFO_IE_, &erp_len, ie_len); in rtw_update_protection()
/linux-4.1.27/drivers/net/wan/lmc/
Dlmc_media.c224 lmc_hssi_set_clock (lmc_softc_t * const sc, int ie) in lmc_hssi_set_clock() argument
228 if (ie == LMC_CTL_CLOCK_SOURCE_EXT) in lmc_hssi_set_clock()
233 if(old != ie) in lmc_hssi_set_clock()
241 if(old != ie) in lmc_hssi_set_clock()
307 lmc_ds3_set_100ft (lmc_softc_t * const sc, int ie) in lmc_ds3_set_100ft() argument
309 if (ie == LMC_CTL_CABLE_LENGTH_GT_100FT) in lmc_ds3_set_100ft()
314 else if (ie == LMC_CTL_CABLE_LENGTH_LT_100FT) in lmc_ds3_set_100ft()
404 lmc_ds3_set_scram (lmc_softc_t * const sc, int ie) in lmc_ds3_set_scram() argument
406 if (ie == LMC_CTL_ON) in lmc_ds3_set_scram()
612 lmc_ssi_set_clock (lmc_softc_t * const sc, int ie) in lmc_ssi_set_clock() argument
[all …]
/linux-4.1.27/drivers/staging/rtl8723au/core/
Drtw_ieee80211.c218 u8 *ie, uint *ielen) in rtw_get_ie23a_ex() argument
236 if (ie) in rtw_get_ie23a_ex()
237 memcpy(ie, &in_ie[cnt], in_ie[cnt+1]+2); in rtw_get_ie23a_ex()
352 u8* ie = pdev_network->IEs; in rtw_generate_ie23a() local
368 ie = rtw_set_ie23a(ie, WLAN_EID_SSID, pdev_network->Ssid.ssid_len, in rtw_generate_ie23a()
386 ie = rtw_set_ie23a(ie, WLAN_EID_SUPP_RATES, 8, in rtw_generate_ie23a()
390 ie = rtw_set_ie23a(ie, WLAN_EID_SUPP_RATES, rateLen, in rtw_generate_ie23a()
395 ie = rtw_set_ie23a(ie, WLAN_EID_DS_PARAMS, 1, in rtw_generate_ie23a()
400 ie = rtw_set_ie23a(ie, WLAN_EID_IBSS_PARAMS, 2, in rtw_generate_ie23a()
404 ie = rtw_set_ie23a(ie, WLAN_EID_EXT_SUPP_RATES, (rateLen - 8), in rtw_generate_ie23a()
Drtw_ap.c788 u8 *ie = pbss_network->IEs; in rtw_check_beacon_data23a() local
813 memset(ie, 0, MAX_IE_SZ); in rtw_check_beacon_data23a()
815 memcpy(ie, pbuf, pbss_network->IELength); in rtw_check_beacon_data23a()
826 p = rtw_get_ie23a(ie, WLAN_EID_SSID, &ie_len, pbss_network->IELength); in rtw_check_beacon_data23a()
835 p = rtw_get_ie23a(ie, WLAN_EID_DS_PARAMS, &ie_len, in rtw_check_beacon_data23a()
844 p = rtw_get_ie23a(ie, WLAN_EID_SUPP_RATES, &ie_len, in rtw_check_beacon_data23a()
852 p = rtw_get_ie23a(ie, WLAN_EID_EXT_SUPP_RATES, in rtw_check_beacon_data23a()
865 p = rtw_get_ie23a(ie, WLAN_EID_ERP_INFO, &ie_len, in rtw_check_beacon_data23a()
882 p = rtw_get_ie23a(ie, WLAN_EID_RSN, &ie_len, in rtw_check_beacon_data23a()
903 for (p = ie; ; p += (ie_len + 2)) { in rtw_check_beacon_data23a()
[all …]
Drtw_mlme_ext.c725 const u8 *ie; in OnProbeReq23a() local
750 ie = cfg80211_find_ie(WLAN_EID_SSID, mgmt->u.probe_req.variable, len); in OnProbeReq23a()
753 if (!ie) in OnProbeReq23a()
756 if ((ie[1] && memcmp(ie + 2, cur->Ssid.ssid, cur->Ssid.ssid_len)) || in OnProbeReq23a()
757 (ie[1] == 0 && pmlmeinfo->hidden_ssid_mode)) { in OnProbeReq23a()
2986 u8 *ie = pnetwork->IEs; in issue_assocrsp() local
3038 p = cfg80211_find_ie(WLAN_EID_HT_CAPABILITY, ie, in issue_assocrsp()
3048 p = cfg80211_find_ie(WLAN_EID_HT_OPERATION, ie, in issue_assocrsp()
3063 for (p = ie; ; p += (ie_len + 2)) { in issue_assocrsp()
4504 const u8 *ie, *p; in process_80211d() local
[all …]
Drtw_mlme.c1950 u8 *ie, uint ie_len) in rtw_append_pmkid() argument
1954 if (ie[1] <= 20) { in rtw_append_pmkid()
1957 ie[ie_len] = 1; in rtw_append_pmkid()
1959 ie[ie_len] = 0; /* PMKID count = 0x0100 */ in rtw_append_pmkid()
1961 memcpy(&ie[ie_len], in rtw_append_pmkid()
1965 ie[1] += 18;/* PMKID length = 2+16 */ in rtw_append_pmkid()
Drtw_xmit.c1244 void rtw_update_protection23a(struct rtw_adapter *padapter, u8 *ie, uint ie_len) in rtw_update_protection23a() argument
1259 p = cfg80211_find_ie(WLAN_EID_ERP_INFO, ie, ie_len); in rtw_update_protection23a()
/linux-4.1.27/Documentation/input/
Dff.txt156 struct input_event ie; /* structure used to communicate with the driver */
158 ie.type = EV_FF;
159 ie.code = FF_GAIN;
160 ie.value = 0xFFFFUL * gain / 100;
162 if (write(fd, &ie, sizeof(ie)) == -1)
172 struct input_event ie;
174 ie.type = EV_FF;
175 ie.code = FF_AUTOCENTER;
176 ie.value = 0xFFFFUL * autocenter / 100;
178 if (write(fd, &ie, sizeof(ie)) == -1)
Dinput-programming.txt178 Value is interpreted as a truth value, ie any nonzero value means key
/linux-4.1.27/sound/arm/
Daaci.c575 u32 ie; in aaci_pcm_playback_stop() local
577 ie = readl(aacirun->base + AACI_IE); in aaci_pcm_playback_stop()
578 ie &= ~(IE_URIE|IE_TXIE); in aaci_pcm_playback_stop()
579 writel(ie, aacirun->base + AACI_IE); in aaci_pcm_playback_stop()
587 u32 ie; in aaci_pcm_playback_start() local
592 ie = readl(aacirun->base + AACI_IE); in aaci_pcm_playback_start()
593 ie |= IE_URIE | IE_TXIE; in aaci_pcm_playback_start()
594 writel(ie, aacirun->base + AACI_IE); in aaci_pcm_playback_start()
651 u32 ie; in aaci_pcm_capture_stop() local
655 ie = readl(aacirun->base + AACI_IE); in aaci_pcm_capture_stop()
[all …]
/linux-4.1.27/drivers/md/persistent-data/
Ddm-space-map-common.c533 struct disk_index_entry *ie) in metadata_ll_load_ie() argument
535 memcpy(ie, ll->mi_le.index + index, sizeof(*ie)); in metadata_ll_load_ie()
540 struct disk_index_entry *ie) in metadata_ll_save_ie() argument
543 memcpy(ll->mi_le.index + index, ie, sizeof(*ie)); in metadata_ll_save_ie()
658 struct disk_index_entry *ie) in disk_ll_load_ie() argument
660 return dm_btree_lookup(&ll->bitmap_info, ll->bitmap_root, &index, ie); in disk_ll_load_ie()
664 struct disk_index_entry *ie) in disk_ll_save_ie() argument
666 __dm_bless_for_disk(ie); in disk_ll_save_ie()
668 &index, ie, &ll->bitmap_root); in disk_ll_save_ie()
Ddm-space-map-common.h51 typedef int (*save_ie_fn)(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie);
/linux-4.1.27/drivers/net/wireless/iwlegacy/
Diwl-spectrum.h75 struct ieee80211_info_element ie; member
83 struct ieee80211_info_element ie; member
/linux-4.1.27/fs/f2fs/
Dgc.c341 struct inode_entry *ie; in find_gc_inode() local
343 ie = radix_tree_lookup(&gc_list->iroot, ino); in find_gc_inode()
344 if (ie) in find_gc_inode()
345 return ie->inode; in find_gc_inode()
366 struct inode_entry *ie, *next_ie; in put_gc_inode() local
367 list_for_each_entry_safe(ie, next_ie, &gc_list->ilist, list) { in put_gc_inode()
368 radix_tree_delete(&gc_list->iroot, ie->inode->i_ino); in put_gc_inode()
369 iput(ie->inode); in put_gc_inode()
370 list_del(&ie->list); in put_gc_inode()
371 kmem_cache_free(inode_entry_slab, ie); in put_gc_inode()
/linux-4.1.27/net/mac80211/
Dmesh.c63 struct ieee802_11_elems *ie) in mesh_matches_local() argument
79 if (!(ifmsh->mesh_id_len == ie->mesh_id_len && in mesh_matches_local()
80 memcmp(ifmsh->mesh_id, ie->mesh_id, ie->mesh_id_len) == 0 && in mesh_matches_local()
81 (ifmsh->mesh_pp_id == ie->mesh_config->meshconf_psel) && in mesh_matches_local()
82 (ifmsh->mesh_pm_id == ie->mesh_config->meshconf_pmetric) && in mesh_matches_local()
83 (ifmsh->mesh_cc_id == ie->mesh_config->meshconf_congest) && in mesh_matches_local()
84 (ifmsh->mesh_sp_id == ie->mesh_config->meshconf_synch) && in mesh_matches_local()
85 (ifmsh->mesh_auth_id == ie->mesh_config->meshconf_auth))) in mesh_matches_local()
88 ieee80211_sta_get_rates(sdata, ie, ieee80211_get_sdata_band(sdata), in mesh_matches_local()
95 ie->ht_operation, &sta_chan_def); in mesh_matches_local()
[all …]
Dscan.c292 (u8 *)local->hw_scan_req->req.ie, in ieee80211_prep_hw_scan()
295 req->ie, req->ie_len, in ieee80211_prep_hw_scan()
498 scan_req->ie, scan_req->ie_len, in ieee80211_scan_state_send_probe()
559 local->hw_scan_req->req.ie = ies; in __ieee80211_start_scan()
1081 u8 *ie; in __ieee80211_request_sched_scan_start() local
1099 ie = kzalloc(num_bands * iebufsz, GFP_KERNEL); in __ieee80211_request_sched_scan_start()
1100 if (!ie) { in __ieee80211_request_sched_scan_start()
1107 len = ieee80211_build_preq_ies(local, ie, num_bands * iebufsz, in __ieee80211_request_sched_scan_start()
1108 &sched_scan_ies, req->ie, in __ieee80211_request_sched_scan_start()
1118 kfree(ie); in __ieee80211_request_sched_scan_start()
Dmesh.h216 struct ieee802_11_elems *ie);
288 u8 *hw_addr, struct ieee802_11_elems *ie);
289 bool mesh_peer_accepts_plinks(struct ieee802_11_elems *ie);
Dutil.c816 const u8 *ie; in ieee802_11_parse_elems_crc() local
1079 ie = cfg80211_find_ie(WLAN_EID_WIDE_BW_CHANNEL_SWITCH, in ieee802_11_parse_elems_crc()
1081 if (ie) { in ieee802_11_parse_elems_crc()
1082 if (ie[1] == sizeof(*elems->wide_bw_chansw_ie)) in ieee802_11_parse_elems_crc()
1084 (void *)(ie + 2); in ieee802_11_parse_elems_crc()
1350 const u8 *ie, size_t ie_len, in ieee80211_build_preq_ies_band() argument
1398 if (ie && ie_len) { in ieee80211_build_preq_ies_band()
1404 noffset = ieee80211_ie_split(ie, ie_len, in ieee80211_build_preq_ies_band()
1410 memcpy(pos, ie + *offset, noffset - *offset); in ieee80211_build_preq_ies_band()
1435 if (ie && ie_len) { in ieee80211_build_preq_ies_band()
[all …]
Dmesh_sync.c43 static bool mesh_peer_tbtt_adjusting(struct ieee802_11_elems *ie) in mesh_peer_tbtt_adjusting() argument
45 return (ie->mesh_config->meshconf_cap & in mesh_peer_tbtt_adjusting()
Dieee80211_i.h408 u8 ie[]; member
575 u8 *ie; member
681 const u8 *ie; member
1938 const u8 *ie, size_t ie_len,
1946 const u8 *ie, size_t ie_len,
1951 const u8 *ie, size_t ie_len,
Dibss.c170 memcpy(pos, ifibss->ie, ifibss->ie_len); in ieee80211_ibss_build_presp()
1795 if (params->ie) { in ieee80211_ibss_join()
1796 sdata->u.ibss.ie = kmemdup(params->ie, params->ie_len, in ieee80211_ibss_join()
1798 if (sdata->u.ibss.ie) in ieee80211_ibss_join()
1847 kfree(sdata->u.ibss.ie); in ieee80211_ibss_leave()
Dmlme.c804 noffset = ieee80211_ie_split_ric(assoc_data->ie, in ieee80211_send_assoc()
812 memcpy(pos, assoc_data->ie + offset, noffset - offset); in ieee80211_send_assoc()
846 noffset = ieee80211_ie_split(assoc_data->ie, assoc_data->ie_len, in ieee80211_send_assoc()
850 memcpy(pos, assoc_data->ie + offset, noffset - offset); in ieee80211_send_assoc()
860 noffset = ieee80211_ie_split_vendor(assoc_data->ie, in ieee80211_send_assoc()
864 memcpy(pos, assoc_data->ie + offset, noffset - offset); in ieee80211_send_assoc()
884 memcpy(pos, assoc_data->ie + offset, noffset - offset); in ieee80211_send_assoc()
4511 if (req->ie && req->ie_len) { in ieee80211_mgd_auth()
4513 req->ie, req->ie_len); in ieee80211_mgd_auth()
4768 if (req->ie && req->ie_len) { in ieee80211_mgd_assoc()
[all …]
Dcfg.c1650 old_ie = ifmsh->ie; in copy_mesh_setup()
1653 new_ie = kmemdup(setup->ie, setup->ie_len, in copy_mesh_setup()
1659 ifmsh->ie = new_ie; in copy_mesh_setup()
/linux-4.1.27/drivers/pinctrl/spear/
Dpinctrl-plgpio.c46 u32 ie; /* interrupt enable register */ member
295 plgpio_reg_set(plgpio->base, offset, plgpio->regs.ie); in plgpio_irq_disable()
314 plgpio_reg_reset(plgpio->base, offset, plgpio->regs.ie); in plgpio_irq_enable()
485 plgpio->regs.ie = val; in plgpio_probe_dt()
637 plgpio->csave_regs[i].ie = readl_relaxed(plgpio->regs.ie + off); in plgpio_suspend()
679 plgpio_prepare_reg(ie, off, mask, tmp); in plgpio_resume()
691 writel_relaxed(plgpio->csave_regs[i].ie, plgpio->regs.ie + off); in plgpio_resume()
/linux-4.1.27/arch/microblaze/kernel/cpu/
Dcache.c512 .ie = __enable_icache_msr,
528 .ie = __enable_icache_nomsr,
544 .ie = __enable_icache_msr,
559 .ie = __enable_icache_nomsr,
575 .ie = __enable_icache_msr,
590 .ie = __enable_icache_nomsr,
/linux-4.1.27/lib/lzo/
Dlzo1x_decompress_safe.c86 const unsigned char *ie = ip + t; in lzo1x_decompress_safe() local
95 } while (ip < ie); in lzo1x_decompress_safe()
96 ip = ie; in lzo1x_decompress_safe()
/linux-4.1.27/arch/microblaze/include/asm/
Dcacheflush.h37 void (*ie)(void); /* enable */ member
57 #define enable_icache() mbc->ie();
/linux-4.1.27/drivers/staging/rtl8188eu/include/
Dieee80211.h1196 u8 oui_len, u8 *ie, uint *ielen);
1228 #define for_each_ie(ie, buf, buf_len) \ argument
1229 for (ie = (void *)buf; (((u8 *)ie) - ((u8 *)buf) + 1) < buf_len; \
1230 ie = (void *)(((u8 *)ie) + *(((u8 *)ie)+1) + 2))
1233 void dump_wps_ie(u8 *ie, u32 ie_len);
Drtw_mlme.h572 u8 *rtw_get_capability_from_ie(u8 *ie);
573 u8 *rtw_get_beacon_interval_from_ie(u8 *ie);
Drtw_xmit.h329 void rtw_update_protection(struct adapter *padapter, u8 *ie, uint ie_len);
/linux-4.1.27/include/net/
Dcfg80211.h1357 const u8 *ie; member
1457 const u8 *ie; member
1540 const u8 *ie; member
1647 const u8 *ieee80211_bss_get_ie(struct cfg80211_bss *bss, u8 ie);
1670 const u8 *ie; member
1715 const u8 *ie, *prev_bssid; member
1740 const u8 *ie; member
1761 const u8 *ie; member
1802 const u8 *ie; member
1859 const u8 *ie; member
[all …]
/linux-4.1.27/net/bluetooth/
Dhci_core.c1117 struct inquiry_entry *ie) in hci_inquiry_cache_update_resolve() argument
1123 list_del(&ie->list); in hci_inquiry_cache_update_resolve()
1127 abs(p->data.rssi) >= abs(ie->data.rssi)) in hci_inquiry_cache_update_resolve()
1132 list_add(&ie->list, pos); in hci_inquiry_cache_update_resolve()
1139 struct inquiry_entry *ie; in hci_inquiry_cache_update() local
1149 ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr); in hci_inquiry_cache_update()
1150 if (ie) { in hci_inquiry_cache_update()
1151 if (!ie->data.ssp_mode) in hci_inquiry_cache_update()
1154 if (ie->name_state == NAME_NEEDED && in hci_inquiry_cache_update()
1155 data->rssi != ie->data.rssi) { in hci_inquiry_cache_update()
[all …]
Dhci_conn.c70 struct inquiry_entry *ie; in hci_acl_create_connection() local
87 ie = hci_inquiry_cache_lookup(hdev, &conn->dst); in hci_acl_create_connection()
88 if (ie) { in hci_acl_create_connection()
89 if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) { in hci_acl_create_connection()
90 cp.pscan_rep_mode = ie->data.pscan_rep_mode; in hci_acl_create_connection()
91 cp.pscan_mode = ie->data.pscan_mode; in hci_acl_create_connection()
92 cp.clock_offset = ie->data.clock_offset | in hci_acl_create_connection()
96 memcpy(conn->dev_class, ie->data.dev_class, 3); in hci_acl_create_connection()
97 if (ie->data.ssp_mode > 0) in hci_acl_create_connection()
Dhci_event.c2314 struct inquiry_entry *ie; in hci_conn_request_evt() local
2351 ie = hci_inquiry_cache_lookup(hdev, &ev->bdaddr); in hci_conn_request_evt()
2352 if (ie) in hci_conn_request_evt()
2353 memcpy(ie->data.dev_class, ev->dev_class, 3); in hci_conn_request_evt()
3565 struct inquiry_entry *ie; in hci_clock_offset_evt() local
3567 ie = hci_inquiry_cache_lookup(hdev, &conn->dst); in hci_clock_offset_evt()
3568 if (ie) { in hci_clock_offset_evt()
3569 ie->data.clock_offset = ev->clock_offset; in hci_clock_offset_evt()
3570 ie->timestamp = jiffies; in hci_clock_offset_evt()
3596 struct inquiry_entry *ie; in hci_pscan_rep_mode_evt() local
[all …]
/linux-4.1.27/drivers/staging/rtl8723au/include/
Drtw_cmd.h599 unsigned char ie[0]; member
605 unsigned char ie[0]; member
611 unsigned char ie[0]; member
617 unsigned char ie[0]; member
Dieee80211.h315 u8 *rtw_get_ie23a_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, u8 oui_len, u8 *ie, uint *ielen);
Drtw_xmit.h341 void rtw_update_protection23a(struct rtw_adapter *padapter, u8 *ie, uint ie_len);
/linux-4.1.27/drivers/net/can/
Dpch_can.c287 u32 ie; in pch_can_set_rxtx() local
290 ie = PCH_IF_MCONT_TXIE; in pch_can_set_rxtx()
292 ie = PCH_IF_MCONT_RXIE; in pch_can_set_rxtx()
304 pch_can_bit_set(&priv->regs->ifregs[dir].mcont, ie); in pch_can_set_rxtx()
308 pch_can_bit_clear(&priv->regs->ifregs[dir].mcont, ie); in pch_can_set_rxtx()
993 u32 ie, enable; in pch_can_get_rxtx_ir() local
996 ie = PCH_IF_MCONT_RXIE; in pch_can_get_rxtx_ir()
998 ie = PCH_IF_MCONT_TXIE; in pch_can_get_rxtx_ir()
1004 ((ioread32(&priv->regs->ifregs[dir].mcont)) & ie)) in pch_can_get_rxtx_ir()
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
Dcfg80211.c392 brcmf_tlv_has_ie(const u8 *ie, const u8 **tlvs, u32 *tlvs_len, in brcmf_tlv_has_ie() argument
396 if (ie[TLV_LEN_OFF] >= oui_len + 1 && in brcmf_tlv_has_ie()
397 !memcmp(&ie[TLV_BODY_OFF], oui, oui_len) && in brcmf_tlv_has_ie()
398 type == ie[TLV_BODY_OFF + oui_len]) { in brcmf_tlv_has_ie()
405 ie += ie[TLV_LEN_OFF] + TLV_HDR_LEN; in brcmf_tlv_has_ie()
407 *tlvs_len -= (int)(ie - *tlvs); in brcmf_tlv_has_ie()
409 *tlvs = ie; in brcmf_tlv_has_ie()
417 const struct brcmf_tlv *ie; in brcmf_find_wpaie() local
419 while ((ie = brcmf_parse_tlvs(parse, len, WLAN_EID_VENDOR_SPECIFIC))) { in brcmf_find_wpaie()
420 if (brcmf_tlv_has_ie((const u8 *)ie, &parse, &len, in brcmf_find_wpaie()
[all …]
Dp2p.c848 static s32 brcmf_p2p_find_listen_channel(const u8 *ie, u32 ie_len) in brcmf_p2p_find_listen_channel() argument
854 err = cfg80211_get_p2p_attr(ie, ie_len, in brcmf_p2p_find_listen_channel()
895 err = brcmf_p2p_find_listen_channel(request->ie, in brcmf_p2p_scan_prep()
915 request->ie, request->ie_len); in brcmf_p2p_scan_prep()
1226 u8 *ie; in brcmf_p2p_scan_finding_common_channel() local
1240 ie = ((u8 *)bi) + le16_to_cpu(bi->ie_offset); in brcmf_p2p_scan_finding_common_channel()
1242 err = cfg80211_get_p2p_attr(ie, le32_to_cpu(bi->ie_length), in brcmf_p2p_scan_finding_common_channel()
1246 err = cfg80211_get_p2p_attr(ie, le32_to_cpu(bi->ie_length), in brcmf_p2p_scan_finding_common_channel()
Dcfg80211.h385 struct brcmf_cfg80211_ie ie; member
/linux-4.1.27/drivers/staging/rtl8192e/
Drtllib_wx.c840 int rtllib_wx_set_gen_ie(struct rtllib_device *ieee, u8 *ie, size_t len) in rtllib_wx_set_gen_ie() argument
845 if (len > MAX_WPA_IE_LEN || (len && ie == NULL)) in rtllib_wx_set_gen_ie()
849 eid = ie[0]; in rtllib_wx_set_gen_ie()
850 if ((eid == MFIE_TYPE_GENERIC) && (!memcmp(&ie[2], in rtllib_wx_set_gen_ie()
855 buf = kmemdup(ie, ieee->wps_ie_len, GFP_KERNEL); in rtllib_wx_set_gen_ie()
866 if (len != ie[1]+2) in rtllib_wx_set_gen_ie()
868 buf = kmemdup(ie, len, GFP_KERNEL); in rtllib_wx_set_gen_ie()
/linux-4.1.27/arch/sh/
DKconfig.cpu25 have FPU units (ie, SH77xx).
48 have DSP units (ie, SH2-DSP, SH3-DSP, and SH4AL-DSP).
/linux-4.1.27/arch/s390/include/asm/
Dnmi.h48 __u32 ie : 1; /* 32 indirect storage error */ member
/linux-4.1.27/sound/pci/au88x0/
Dau88x0.h206 static void vortex_adbdma_setmode(vortex_t * vortex, int adbdma, int ie,
213 static void vortex_wtdma_setmode(vortex_t * vortex, int wtdma, int ie, int fmt, int d, /*int e, */
Dau88x0_core.c1151 vortex_adbdma_setmode(vortex_t * vortex, int adbdma, int ie, int dir, in vortex_adbdma_setmode() argument
1161 (dma->dma_ctrl & ~IE_MASK) | ((ie << IE_SHIFT) & IE_MASK); in vortex_adbdma_setmode()
1419 vortex_wtdma_setmode(vortex_t * vortex, int wtdma, int ie, int fmt, int d, in vortex_wtdma_setmode() argument
1431 (dma->dma_ctrl & ~IE_MASK) | ((ie << IE_SHIFT) & IE_MASK); in vortex_wtdma_setmode()
/linux-4.1.27/drivers/misc/cb710/
DKconfig6 reader found in some laptops (ie. some versions of HP Compaq nx9500).
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Dsrio.txt63 For HW (ie, the P4080) that only supports a LIODN for both
67 For HW (ie, the P304x/P5020, etc) that supports an LIODN for
Dmpc5200.txt34 ie. ethernet on mpc5200: compatible = "fsl,mpc5200-fec";
38 end of the compatible field. ie. A PSC in i2s mode would specify
142 use when setting up PSC clocking. cell-index number starts at '0'. ie:
/linux-4.1.27/Documentation/vm/
Dpagemap.txt116 ie. for file backed page: (in-memory data revision >= on-disk one)
118 ie. for file backed page: (in-memory data revision > on-disk one)
131 13. SWAPCACHE page is mapped to swap space, ie. has an associated swap entry
Dactive_mm.txt40 The rule is that for a process with a real address space (ie tsk->mm is
51 and a "mm_count" counter that is the number of "lazy" users (ie anonymous
Dzsmalloc.txt65 f = fullness_threshold_frac(ie, 4 at the moment)
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Dieee80211_wx.c819 int ieee80211_wx_set_gen_ie(struct ieee80211_device *ieee, u8 *ie, size_t len) in ieee80211_wx_set_gen_ie() argument
823 if (len>MAX_WPA_IE_LEN || (len && ie == NULL)) in ieee80211_wx_set_gen_ie()
832 if (len != ie[1]+2) in ieee80211_wx_set_gen_ie()
834 printk("len:%zu, ie:%d\n", len, ie[1]); in ieee80211_wx_set_gen_ie()
837 buf = kmemdup(ie, len, GFP_KERNEL); in ieee80211_wx_set_gen_ie()
/linux-4.1.27/drivers/net/wireless/ti/wlcore/
Dscan.h34 const u8 *ie, size_t ie_len, u8 band);
Dmain.c3855 u8 *ie = (u8 *)cfg80211_find_ie(eid, skb->data + ieoffset, in wl12xx_remove_ie() local
3857 if (!ie) in wl12xx_remove_ie()
3859 len = ie[1] + 2; in wl12xx_remove_ie()
3860 next = ie + len; in wl12xx_remove_ie()
3861 memmove(ie, next, end - next); in wl12xx_remove_ie()
3871 u8 *ie = (u8 *)cfg80211_find_vendor_ie(oui, oui_type, in wl12xx_remove_vendor_ie() local
3874 if (!ie) in wl12xx_remove_vendor_ie()
3876 len = ie[1] + 2; in wl12xx_remove_vendor_ie()
3877 next = ie + len; in wl12xx_remove_vendor_ie()
3878 memmove(ie, next, end - next); in wl12xx_remove_vendor_ie()
[all …]
Dconf.h745 u8 ie; member
Dcmd.h65 const u8 *ie, size_t ie_len, const u8 *common_ie,
Dacx.c416 ie_table->table[idx++] = r->ie; in wl1271_acx_beacon_filter_table()
419 if (r->ie == WLAN_EID_VENDOR_SPECIFIC) { in wl1271_acx_beacon_filter_table()
/linux-4.1.27/drivers/net/wireless/ti/wl18xx/
Dscan.c114 req->ie, in wl18xx_scan_send()
131 req->ie, in wl18xx_scan_send()
Dmain.c353 .ie = WLAN_EID_CHANNEL_SWITCH,
357 .ie = WLAN_EID_HT_OPERATION,
361 .ie = WLAN_EID_ERP_INFO,
/linux-4.1.27/Documentation/power/
Duserland-swsusp.txt102 - read()s across page boundaries are impossible (ie. if you read() 1/2 of
128 The snapshot image MUST be written to the kernel unaltered (ie. all of the image
146 1. If the value is 1 (ie. the system memory snapshot has just been
161 2. If the value is 0 (ie. the system state has just been restored from
Dswsusp-and-swap-files.txt54 partition. In particular, the swap file has to be active (ie. be present in
Dbasic-pm-debugging.txt204 you will have to unload them every time before an STR transition (ie. before
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
Dcfg80211.c315 request->ie, request->ie_len); in wil_cfg80211_scan()
320 request->ie); in wil_cfg80211_scan()
402 rsn_eid = sme->ie ? in wil_cfg80211_connect()
403 cfg80211_find_ie(WLAN_EID_RSN, sme->ie, sme->ie_len) : in wil_cfg80211_connect()
440 rc = wmi_set_ie(wil, WMI_FRAME_ASSOC_REQ, sme->ie_len, sme->ie); in wil_cfg80211_connect()
Dwmi.c1019 int wmi_set_ie(struct wil6210_priv *wil, u8 type, u16 ie_len, const void *ie) in wmi_set_ie() argument
1027 if (!ie) in wmi_set_ie()
1033 memcpy(cmd->ie_info, ie, ie_len); in wmi_set_ie()
Dwil6210.h708 int wmi_set_ie(struct wil6210_priv *wil, u8 type, u16 ie_len, const void *ie);
/linux-4.1.27/drivers/gpu/drm/msm/
DNOTES22 pageflip after rendering completes (ie. have the kms/crtc code build
70 (ie. like DT super-node.. but I don't have any snapdragon hw yet that
/linux-4.1.27/drivers/isdn/hisax/
Disdnl3.c81 findie(u_char *p, int size, u_char ie, int wanted_set) in findie() argument
104 if (*p == ie) in findie()
113 if (*p > ie) in findie()
Dl3ni1.c593 int ie; member
635 getmax_ie_len(u_char ie) { in getmax_ie_len() argument
637 while (max_ie_len[i].ie != -1) { in getmax_ie_len()
638 if (max_ie_len[i].ie == ie) in getmax_ie_len()
646 ie_in_set(struct l3_process *pc, u_char ie, int *checklist) { in ie_in_set() argument
650 if ((*checklist & 0xff) == ie) { in ie_in_set()
651 if (ie & 0x80) in ie_in_set()
667 u_char *p, ie; in check_infoelements() local
710 ie = *p++; in check_infoelements()
711 if (ie & 0x80) { in check_infoelements()
[all …]
Dl3dss1.c643 int ie; member
685 getmax_ie_len(u_char ie) { in getmax_ie_len() argument
687 while (max_ie_len[i].ie != -1) { in getmax_ie_len()
688 if (max_ie_len[i].ie == ie) in getmax_ie_len()
696 ie_in_set(struct l3_process *pc, u_char ie, int *checklist) { in ie_in_set() argument
700 if ((*checklist & 0xff) == ie) { in ie_in_set()
701 if (ie & 0x80) in ie_in_set()
717 u_char *p, ie; in check_infoelements() local
760 ie = *p++; in check_infoelements()
761 if (ie & 0x80) { in check_infoelements()
[all …]
Dhisax.h1272 u_char *findie(u_char *p, int size, u_char ie, int wanted_set);
/linux-4.1.27/arch/ia64/sn/kernel/sn2/
Dsn2_smp.c330 sn2_ptc_deadlock_recovery(short *nasids, short ib, short ie, int mynasid, in sn2_ptc_deadlock_recovery() argument
343 for (i=ib; i <= ie; i++) { in sn2_ptc_deadlock_recovery()
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
Dcfg80211.c508 status = ath6kl_set_assoc_req_ies(vif, sme->ie, sme->ie_len); in ath6kl_cfg80211_connect()
514 if (sme->ie == NULL || sme->ie_len == 0) in ath6kl_cfg80211_connect()
691 u8 *ie; in ath6kl_add_bss_if_needed() local
713 ie = kmalloc(2 + vif->ssid_len + beacon_ie_len, GFP_KERNEL); in ath6kl_add_bss_if_needed()
714 if (ie == NULL) in ath6kl_add_bss_if_needed()
716 ie[0] = WLAN_EID_SSID; in ath6kl_add_bss_if_needed()
717 ie[1] = vif->ssid_len; in ath6kl_add_bss_if_needed()
718 memcpy(ie + 2, vif->ssid, vif->ssid_len); in ath6kl_add_bss_if_needed()
719 memcpy(ie + 2 + vif->ssid_len, beacon_ie, beacon_ie_len); in ath6kl_add_bss_if_needed()
723 ie, 2 + vif->ssid_len + beacon_ie_len, in ath6kl_add_bss_if_needed()
[all …]
Dwmi.h2692 const u8 *ie, u8 ie_len);
2718 const u8 *ie, u8 ie_len);
Dwmi.c3547 const u8 *ie, u8 ie_len) in ath6kl_wmi_set_appie_cmd() argument
3563 if (ie != NULL && ie_len > 0) in ath6kl_wmi_set_appie_cmd()
3564 memcpy(p->ie_info, ie, ie_len); in ath6kl_wmi_set_appie_cmd()
/linux-4.1.27/drivers/net/ethernet/alteon/
DKconfig41 being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
/linux-4.1.27/Documentation/devicetree/bindings/
DABI.txt27 the old binding. ie. add additional properties, but don't change the
/linux-4.1.27/arch/arm/boot/dts/
Dspear310.dtsi112 st-plgpio,ie-reg = <0x50>;
Dspear320.dtsi140 st-plgpio,ie-reg = <0x64>;
Dspear1340.dtsi167 st-plgpio,ie-reg = <0x80>;
Dspear1310.dtsi309 st-plgpio,ie-reg = <0x30>;
/linux-4.1.27/Documentation/frv/
Dkernel-ABI.txt226 unaffected (ie: 0).
231 value (ie: 1) with 1, which gives a result of 0 - thus leaving
234 ICC2.C would remain unaffected (ie: 0).
/linux-4.1.27/sound/pci/ctxfi/
Dcthardware.h100 int (*src_set_ie)(void *blk, unsigned int ie);
Dcthw20k2.c267 static int src_set_ie(void *blk, unsigned int ie) in src_set_ie() argument
271 set_field(&ctl->ctl, SRCCTL_IE, ie); in src_set_ie()
Dcthw20k1.c267 static int src_set_ie(void *blk, unsigned int ie) in src_set_ie() argument
271 set_field(&ctl->ctl, SRCCTL_IE, ie); in src_set_ie()
/linux-4.1.27/arch/powerpc/kernel/vdso64/
Dsigtramp.S301 # Do we really need to describe the frame at this point? ie. will
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dpsci.txt53 Device tree nodes that require usage of PSCI CPU_SUSPEND function (ie idle
Didle-states.txt93 (ie wake-up) that causes the CPU to return to the EXEC phase.
106 the worst case since it depends on the CPU operating conditions, ie caches
186 costs, it is clear that if the idle state residency time (ie time till next
193 However, the lower power consumption (ie shallower energy curve slope) of idle
Dtopology.txt88 must be "clusterN", "coreN", "threadN" depending on the node type (ie
93 name (ie same number N as other cpu-map child nodes at different device tree
Dcci.txt28 root node (ie from CPUs perspective as per DT standard).
Dcpus.txt6 the "cpus" node, which in turn contains a number of subnodes (ie "cpu")
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
Dwmi.c2198 u8 *ies, *ie; in ath10k_wmi_update_tim() local
2231 ie = (u8 *)cfg80211_find_ie(WLAN_EID_TIM, ies, in ath10k_wmi_update_tim()
2233 if (!ie) { in ath10k_wmi_update_tim()
2239 tim = (void *)ie + 2; in ath10k_wmi_update_tim()
2240 ie_len = ie[1]; in ath10k_wmi_update_tim()
2245 int move_size = skb_tail_pointer(bcn) - (ie + 2 + ie_len); in ath10k_wmi_update_tim()
2246 void *next_ie = ie + 2 + ie_len; in ath10k_wmi_update_tim()
2251 ie[1] += expand_size; in ath10k_wmi_update_tim()
4004 if (arg->ie_len && !arg->ie) in ath10k_wmi_start_scan_verify()
4086 struct wmi_ie_data *ie; in ath10k_wmi_put_start_scan_tlvs() local
[all …]
Dmac.c1023 u8 *ie; in ath10k_mac_remove_vendor_ie() local
1028 ie = (u8 *)cfg80211_find_vendor_ie(oui, oui_type, in ath10k_mac_remove_vendor_ie()
1031 if (!ie) in ath10k_mac_remove_vendor_ie()
1034 len = ie[1] + 2; in ath10k_mac_remove_vendor_ie()
1036 next = ie + len; in ath10k_mac_remove_vendor_ie()
1041 memmove(ie, next, end - next); in ath10k_mac_remove_vendor_ie()
3740 memcpy(arg.ie, req->ie, arg.ie_len); in ath10k_hw_scan()
/linux-4.1.27/Documentation/ABI/stable/
Dsysfs-devices-node82 Contact: Mel Gorman <mel@csn.ul.ie>
/linux-4.1.27/include/linux/
Domap-dma.h224 int ie; /* interrupt enabled */ member
Duwb.h303 struct uwb_ie_drp_avail ie; member
/linux-4.1.27/Documentation/usb/
Dauthorization.txt25 Set new devices connected to hostX to be deauthorized by default (ie:
Dfunctionfs.txt11 may not be in init section (ie. may not use the __init tag).
Dmass-storage.txt200 that MSG is a composite gadget (ie. uses the composite framework)
/linux-4.1.27/Documentation/device-mapper/
Dpersistent-data.txt45 transaction manager is by shadowing an existing block (ie. doing
/linux-4.1.27/Documentation/hwmon/
Dina20983 programmed (ie has a value not equal to zero). If so, this value is retained.
/linux-4.1.27/drivers/net/wireless/ath/carl9170/
Drx.c490 static u8 *carl9170_find_ie(u8 *data, unsigned int len, u8 ie) in carl9170_find_ie() argument
501 if (pos[0] == ie) in carl9170_find_ie()
/linux-4.1.27/Documentation/cpu-freq/
Dpcc-cpufreq.txt48 performance (ie: frequency) between the platform firmware and the OS.
103 a percentage of the nominal (ie: maximum) CPU frequency. The output buffer
/linux-4.1.27/drivers/net/wireless/p54/
Dmain.c77 u8 *p54_find_ie(struct sk_buff *skb, u8 ie) in p54_find_ie() argument
91 if (pos[0] == ie) in p54_find_ie()
Dlmac.h560 u8 *p54_find_ie(struct sk_buff *skb, u8 ie);
/linux-4.1.27/Documentation/
Dmodule-signing.txt54 If this is off (ie. "permissive"), then modules for which the key is not
59 If this is on (ie. "restrictive"), only modules that have a valid
Dvfio.txt45 meant for translation (ie. solving the addressing problems of devices
190 /* Group is not viable (ie, not all devices bound for vfio) */
/linux-4.1.27/sound/pci/rme9652/
Dhdspm.c979 int ie; member
1917 hmidi->hdspm->control_register |= hmidi->ie; in snd_hdspm_midi_input_read()
1937 if (!(hdspm->control_register & hmidi->ie)) { in snd_hdspm_midi_input_trigger()
1939 hdspm->control_register |= hmidi->ie; in snd_hdspm_midi_input_trigger()
1942 hdspm->control_register &= ~hmidi->ie; in snd_hdspm_midi_input_trigger()
2077 hdspm->midi[0].ie = HDSPM_Midi2InterruptEnable; in snd_hdspm_create_midi()
2084 hdspm->midi[0].ie = HDSPM_Midi0InterruptEnable; in snd_hdspm_create_midi()
2092 hdspm->midi[1].ie = HDSPM_Midi1InterruptEnable; in snd_hdspm_create_midi()
2100 hdspm->midi[2].ie = HDSPM_Midi2InterruptEnable; in snd_hdspm_create_midi()
2108 hdspm->midi[2].ie = HDSPM_Midi2InterruptEnable; in snd_hdspm_create_midi()
[all …]
Dhdsp.c1397 u32 ie; in snd_hdsp_midi_input_trigger() local
1401 ie = hmidi->id ? HDSP_Midi1InterruptEnable : HDSP_Midi0InterruptEnable; in snd_hdsp_midi_input_trigger()
1404 if (!(hdsp->control_register & ie)) { in snd_hdsp_midi_input_trigger()
1406 hdsp->control_register |= ie; in snd_hdsp_midi_input_trigger()
1409 hdsp->control_register &= ~ie; in snd_hdsp_midi_input_trigger()
/linux-4.1.27/sound/
DKconfig49 to be removed (ie. PRECLAIM won't be available) and this option is
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DSuspend.txt95 relevant clocks and peripherals setup before use (ie, bootloader).
/linux-4.1.27/Documentation/devicetree/bindings/reserved-memory/
Dreserved-memory.txt27 reflect the purpose of the node (ie. "framebuffer" or "dma-pool"). Unit
/linux-4.1.27/Documentation/cdrom/
Dpacket-writing.txt80 - Defect management (ie automatic remapping of bad sectors) has not
Dcdrom-standard.tex16 \def\ie{{\fo i.e.}}
40 that \linux\ now supports (\ie, i386-PCs, Sparc Suns, etc.)
155 \cdrom\ drives are specific enough (\ie, different from other
442 with $speed=2$. The special value `0' means `auto-selection', \ie,
699 mounted at the similar location, \ie, no matter in which particular
735 the tray is opened on the last release, \ie, if a \cdrom\ is unmounted,
874 150\,kB/sec file system data). The value 0 means `auto-select', \ie,
998 $<device>_release()$, and remove any strategic code (\ie, tray
/linux-4.1.27/drivers/isdn/gigaset/
Dcapi.c296 static const char *format_ie(const char *ie) in format_ie() argument
302 if (!ie) in format_ie()
305 count = len = ie[0]; in format_ie()
309 *pout++ = hex_asc_hi(*++ie); in format_ie()
310 *pout++ = hex_asc_lo(*ie); in format_ie()
/linux-4.1.27/tools/perf/util/
Dsession.c1717 struct id_index_event *ie = &event->id_index; in perf_event__process_id_index() local
1720 max_nr = (ie->header.size - sizeof(struct id_index_event)) / in perf_event__process_id_index()
1722 nr = ie->nr; in perf_event__process_id_index()
1730 struct id_index_entry *e = &ie->entries[i]; in perf_event__process_id_index()
/linux-4.1.27/drivers/net/wireless/ti/wl12xx/
Dmain.c223 .ie = WLAN_EID_CHANNEL_SWITCH,
227 .ie = WLAN_EID_HT_OPERATION,
231 .ie = WLAN_EID_ERP_INFO,
Dscan.c158 wl->scan.req->ie, in wl1271_scan_send()
/linux-4.1.27/drivers/net/wireless/
Dairo.c7378 u8 *ie = (void *)&bss->extra.iep; in airo_translate_scan() local
7381 if (2 + ie[1] > length) { in airo_translate_scan()
7386 switch (ie[0]) { in airo_translate_scan()
7390 if (!ie[1]) in airo_translate_scan()
7395 if (ie[1] >= 4 && in airo_translate_scan()
7396 ie[2] == 0x00 && in airo_translate_scan()
7397 ie[3] == 0x50 && in airo_translate_scan()
7398 ie[4] == 0xf2 && in airo_translate_scan()
7399 ie[5] == 0x01) { in airo_translate_scan()
7402 iwe.u.data.length = min(ie[1] + 2, in airo_translate_scan()
[all …]
Drndis_wlan.c1993 u8 *ie; in rndis_bss_info_update() local
2007 ie = (void *)(bssid->ies + sizeof(struct ndis_80211_fixed_ies)); in rndis_bss_info_update()
2028 ie, ie_len, signal, GFP_KERNEL); in rndis_bss_info_update()
/linux-4.1.27/Documentation/networking/
Dradiotap-headers.txt56 - "alignment" is relative to the start of the ieee80211_radiotap_header, ie,
Drds.txt130 there's room on the send queue (ie the number of bytes queued
Darcnet.txt359 only arc0 unless you have a good reason (like some other software, ie.
506 commands, as well as any pertinent log entries (ie. anything that starts
/linux-4.1.27/Documentation/filesystems/cifs/
DREADME177 files with absolute paths (ie beginning with slash) such as:
180 such symlinks safely by converting unsafe symlinks (ie symlinks to server
246 filenames (ie those which contain valid Linux characters, which normally
494 in order to turn off multiple settings all at once (ie
565 is not oplocked, it could still be cacheable (ie cifs client
664 log slow responses (ie which take longer than 1 second)
707 represent the number of successful (ie non-zero return code from the server)
DCHANGES208 attribute on chmod when adding any write permission (ie on any of
209 user/group/other (not all of user/group/other ie 0222) when
233 (fixes FC problem). Return error in rename 2nd attempt retry (ie report
363 no longer needed). Fix readdir to ASCII servers (ie older servers
/linux-4.1.27/Documentation/zh_CN/
DHOWTO294 - DRM开发源码树, Dave Airlie <airlied@linux.ie>
/linux-4.1.27/drivers/isdn/hardware/eicon/
Dmessage.c4834 byte *ie; in sig_ind() local
5894 ie = multi_fac_parms[0]; /* inspect the facility hook indications */ in sig_ind()
5895 if (plci->State == ADVANCED_VOICE_SIG && ie[0]) { in sig_ind()
5896 switch (ie[1] & 0x91) { in sig_ind()
5902 plci->hook_state = ie[1]; in sig_ind()
5913 plci->hook_state = ie[1]&0x91; in sig_ind()
5970 plci->hook_state = ie[1] & 0x91; in sig_ind()
5977 plci->hook_state = ie[1] & 0x91; in sig_ind()
6121 byte *ie; in SendSetupInfo() local
6129 ie = parms[i]; in SendSetupInfo()
[all …]
Ddebug.c1406 static void print_ie(diva_trace_ie_t *ie, char *buffer, int length) { in print_ie() argument
1412 for (i = 0; ((i < ie->length) && (length > 3)); i++) { in print_ie()
1413 sprintf(buffer, "%02x", ie->data[i]); in print_ie()
1416 if (i < (ie->length - 1)) { in print_ie()
/linux-4.1.27/Documentation/filesystems/
Dpath-lookup.txt311 * When the destination dentry is reached, drop rcu there (ie. take d_lock,
318 * NULL dentry (ie. any uncached path element)
355 What this shows is that failed rcu-walk lookups, ie. ones that are restarted
Dafs.txt114 (ie: symbolic link semantics). If anyone attempts to access them, they will
/linux-4.1.27/Documentation/console/
Dconsole.txt59 '(S)' stands for a (S)ystem driver, ie, it cannot be directly
/linux-4.1.27/Documentation/hid/
Dhidraw.txt109 the first byte of the buffer (ie: the report number is not returned).
/linux-4.1.27/drivers/net/wireless/rt2x00/
Drt2x00dev.c506 static u8 *rt2x00lib_find_ie(u8 *data, unsigned int len, u8 ie) in rt2x00lib_find_ie() argument
517 if (pos[0] == ie) in rt2x00lib_find_ie()
/linux-4.1.27/Documentation/scsi/
Daha152x.txt155 ie. either (C/32/64) or (C/63/255)). This can be extended translation
/linux-4.1.27/arch/m68k/fpsp040/
Dget_op.S432 | ;ie, it doesn't know if this is the
/linux-4.1.27/drivers/net/wireless/cw1200/
Dscan.c87 memcpy(skb_put(frame.skb, req->ie_len), req->ie, req->ie_len); in cw1200_hw_scan()
/linux-4.1.27/Documentation/video4linux/
DREADME.ivtv36 * Provides comprehensive OSD (On Screen Display: ie. graphics overlaying the
/linux-4.1.27/fs/udf/
Dinode.c1334 struct indirectEntry *ie; in udf_read_inode() local
1336 ie = (struct indirectEntry *)ibh->b_data; in udf_read_inode()
1337 loc = lelb_to_cpu(ie->indirectICB.extLocation); in udf_read_inode()
1339 if (ie->indirectICB.extLength) { in udf_read_inode()
/linux-4.1.27/Documentation/scheduler/
Dsched-rt-group.txt102 * A run time of -1 specifies runtime == period, ie. no limit.
/linux-4.1.27/Documentation/locking/
Dspinlocks.txt110 manipulated from a "process context", ie no interrupts involved.
/linux-4.1.27/drivers/net/wireless/b43legacy/
Dmain.c973 const u8 *ie; in b43legacy_write_beacon_template() local
1004 ie = bcn->u.beacon.variable; in b43legacy_write_beacon_template()
1009 ie_id = ie[i]; in b43legacy_write_beacon_template()
1010 ie_len = ie[i + 1]; in b43legacy_write_beacon_template()
1029 dtim_period = ie[i + 3]; in b43legacy_write_beacon_template()
/linux-4.1.27/drivers/net/wireless/ipw2x00/
Dlibipw.h598 struct libipw_info_element ie; member
/linux-4.1.27/net/ipv6/netfilter/
DKconfig305 only useful for dialup accounts with dynamic IP address (ie. your IP
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/
Dscan.c870 priv->scan_request->ie, in iwlagn_request_scan()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dbrcm,bcm11351-pinctrl.txt177 - setting pull-up resistance to 720 Ohm (ie. enabling 1.2k and 1.8k resistors
/linux-4.1.27/Documentation/ide/
Dide.txt96 If the auto-probing during boot time confuses a drive (ie. the drive works
/linux-4.1.27/net/ipv4/netfilter/
DKconfig276 only useful for dialup accounts with dynamic IP address (ie. your IP
/linux-4.1.27/drivers/staging/rtl8723au/os_dep/
Dioctl_cfg80211.c1367 if (request->ie && request->ie_len > 0) { in cfg80211_rtw_scan()
1369 (u8 *) request->ie, in cfg80211_rtw_scan()
2070 ret = rtw_cfg80211_set_wpa_ie(padapter, sme->ie, sme->ie_len); in cfg80211_rtw_connect()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-devices-power60 be executed asynchronously (ie. in separate threads, in parallel
/linux-4.1.27/drivers/net/wireless/b43/
Dmain.c1616 const u8 *ie; in b43_write_beacon_template() local
1662 ie = bcn->u.beacon.variable; in b43_write_beacon_template()
1667 ie_id = ie[i]; in b43_write_beacon_template()
1668 ie_len = ie[i + 1]; in b43_write_beacon_template()
1686 dtim_period = ie[i + 3]; in b43_write_beacon_template()
/linux-4.1.27/arch/xtensa/
DKconfig131 ie: it supports a TLB with auto-loading, page protection.
/linux-4.1.27/Documentation/arm/OMAP/
DDSS175 input_size width,height (ie. the framebuffer size)
/linux-4.1.27/Documentation/isdn/
DINTERFACE.CAPI149 Calls to this function are not serialized by Kernel CAPI, ie. it must
/linux-4.1.27/Documentation/kbuild/
Dkconfig-language.txt298 then you may define the same choice (ie. with the same entries) in another
/linux-4.1.27/drivers/net/wireless/ti/wl1251/
Dmain.c1040 memcpy(skb_put(skb, req->ie_len), req->ie, req->ie_len); in wl1251_op_hw_scan()

12