/linux-4.1.27/drivers/net/wireless/ath/ath10k/ |
D | htc.c | 76 ep->eid, skb); in ath10k_htc_notify_tx_completion() 81 ath10k_warn(ar, "no tx handler for eid %d\n", ep->eid); in ath10k_htc_notify_tx_completion() 100 ep->eid); in ath10k_htc_ep_need_credit_update() 111 hdr->eid = ep->eid; in ath10k_htc_prepare_tx_skb() 125 enum ath10k_htc_ep_id eid, in ath10k_htc_send() argument 129 struct ath10k_htc_ep *ep = &htc->endpoint[eid]; in ath10k_htc_send() 139 if (eid >= ATH10K_HTC_EP_COUNT) { in ath10k_htc_send() 140 ath10k_warn(ar, "Invalid endpoint id: %d\n", eid); in ath10k_htc_send() 157 eid, credits, ep->tx_credits); in ath10k_htc_send() 163 skb_cb->eid = eid; in ath10k_htc_send() [all …]
|
D | htc.h | 65 u8 eid; /* @enum ath10k_htc_ep_id */ member 148 u8 eid; member 190 u8 eid; /* @enum ath10k_htc_ep_id */ member 292 enum ath10k_htc_ep_id eid; member 307 enum ath10k_htc_ep_id eid; member 355 int ath10k_htc_send(struct ath10k_htc *htc, enum ath10k_htc_ep_id eid,
|
D | htt.c | 46 htt->eid = conn_resp.eid; in ath10k_htt_connect()
|
D | htt_tx.c | 153 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_h2t_ver_req_msg() 193 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_h2t_stats_req() 281 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_send_rx_ring_cfg_ll() 328 ret = ath10k_htc_send(&htt->ar->htc, htt->eid, skb); in ath10k_htt_h2t_aggr_cfg_msg() 391 res = ath10k_htc_send(&htt->ar->htc, htt->eid, txdesc); in ath10k_htt_mgmt_tx() 508 skb_cb->htt.txbuf->htc_hdr.eid = htt->eid; in ath10k_htt_tx() 568 htt->ar->htc.endpoint[htt->eid].ul_pipe_id, in ath10k_htt_tx()
|
D | core.h | 83 u8 eid; member 139 enum ath10k_htc_ep_id eid; member
|
D | htt.h | 1246 enum ath10k_htc_ep_id eid; member
|
D | wmi.c | 944 ret = ath10k_htc_send(&ar->htc, ar->wmi.eid, skb); in ath10k_wmi_cmd_send_nowait() 3663 ar->wmi.eid = conn_resp.eid; in ath10k_wmi_connect()
|
/linux-4.1.27/sound/firewire/oxfw/ |
D | oxfw-stream.c | 490 unsigned int i, eid; in assume_stream_formats() local 504 eid = 0; in assume_stream_formats() 509 formats[eid] = kmalloc(*len, GFP_KERNEL); in assume_stream_formats() 510 if (formats[eid] == NULL) { in assume_stream_formats() 514 memcpy(formats[eid], buf, *len); in assume_stream_formats() 527 eid++; in assume_stream_formats() 528 formats[eid] = kmalloc(*len, GFP_KERNEL); in assume_stream_formats() 529 if (formats[eid] == NULL) { in assume_stream_formats() 533 memcpy(formats[eid], buf, *len); in assume_stream_formats() 534 formats[eid][2] = avc_stream_rate_table[i]; in assume_stream_formats() [all …]
|
D | oxfw-command.c | 53 u8 *buf, unsigned int *len, unsigned int eid) in avc_stream_get_format() argument 58 if (eid == 0xff) in avc_stream_get_format() 73 buf[10] = 0xff & eid; /* entry ID for LIST subfunction */ in avc_stream_get_format() 89 else if ((subfunc == 0xc1) && (buf[10] != eid)) in avc_stream_get_format()
|
D | oxfw.h | 84 u8 *buf, unsigned int *len, unsigned int eid); 96 unsigned int eid) in avc_stream_get_format_list() argument 98 return avc_stream_get_format(unit, dir, pid, buf, len, eid); in avc_stream_get_format_list()
|
/linux-4.1.27/drivers/staging/wlan-ng/ |
D | p80211mgmt.h | 223 u8 eid; member 229 u8 eid; member 236 u8 eid; member 243 u8 eid; member 253 u8 eid; member 261 u8 eid; member 271 u8 eid; member 281 u8 eid; member 288 u8 eid; member
|
/linux-4.1.27/arch/x86/tools/ |
D | gen-insn-attr-x86.awk | 20 eid = -1 # escape id 130 eid = escape[ref] 131 tname = sprintf("inat_escape_table_%d", eid) 144 if (aid == -1 && eid == -1) # primary opcode table 195 etable[eid,0] = tname 202 etable[eid,1] = tname "_1" 209 etable[eid,2] = tname "_2" 216 etable[eid,3] = tname "_3"
|
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/ |
D | txrx.c | 287 enum htc_endpoint_id eid) in ath6kl_control_tx() argument 300 if (WARN_ON_ONCE(eid == ENDPOINT_UNUSED || in ath6kl_control_tx() 301 eid >= ENDPOINT_MAX)) { in ath6kl_control_tx() 310 skb, skb->len, eid); in ath6kl_control_tx() 312 if (test_bit(WMI_CTRL_EP_FULL, &ar->flag) && (eid == ar->ctrl_ep)) { in ath6kl_control_tx() 330 ar->tx_pending[eid]++; in ath6kl_control_tx() 332 if (eid != ar->ctrl_ep) in ath6kl_control_tx() 340 eid, ATH6KL_CONTROL_PKT_TAG); in ath6kl_control_tx() 360 enum htc_endpoint_id eid = ENDPOINT_UNUSED; in ath6kl_data_tx() local 461 eid = ath6kl_ibss_map_epid(skb, dev, &map_no); in ath6kl_data_tx() [all …]
|
D | htc.h | 156 u8 eid; member 197 u8 eid; member 221 u8 eid; member 509 enum htc_endpoint_id eid; member 637 enum htc_endpoint_id eid, u16 tag) in set_htc_pkt_info() argument 642 packet->endpoint = eid; in set_htc_pkt_info() 654 enum htc_endpoint_id eid) in set_htc_rxpkt_info() argument 660 packet->endpoint = eid; in set_htc_rxpkt_info()
|
D | htc_mbox.c | 370 hdr->eid = packet->endpoint; in ath6kl_htc_tx_prep_pkt() 446 endpoint->eid, get_queue_depth(txq)); in htc_tx_complete() 548 enum htc_endpoint_id eid, unsigned int len, in htc_check_credits() argument 558 if (eid == ENDPOINT_0) in htc_check_credits() 571 eid); in htc_check_credits() 769 ac = target->dev->ar->ep2ac_map[endpoint->eid]; in ath6kl_htc_tx_bundle() 886 ac = target->dev->ar->ep2ac_map[endpoint->eid]; in ath6kl_htc_tx_from_queue() 985 endpoint->eid, txq_depth, in ath6kl_htc_tx_try() 1153 enum htc_endpoint_id eid, u16 tag) in ath6kl_htc_mbox_flush_txep() argument 1157 struct htc_endpoint *endpoint = &target->endpoint[eid]; in ath6kl_htc_mbox_flush_txep() [all …]
|
D | htc_pipe.c | 50 __func__, ep->eid, in do_send_completion() 71 __func__, ep->eid, packet); in do_send_completion() 132 if (ep->eid == ENDPOINT_0) { in get_htc_packet_credit_based() 244 htc_hdr->eid = (u8) packet->endpoint; in htc_issue_packets() 349 __func__, ep->eid, overflow, txqueue_depth, in htc_try_send() 667 if (rpt->eid >= ENDPOINT_MAX) { in htc_process_credit_report() 673 ep = &target->endpoint[rpt->eid]; in htc_process_credit_report() 757 ep_id = htc_hdr->eid; in ath6kl_htc_pipe_tx_complete() 985 if (htc_hdr->eid >= ENDPOINT_MAX) { in ath6kl_htc_pipe_rx_complete() 988 htc_hdr->eid); in ath6kl_htc_pipe_rx_complete() [all …]
|
D | core.h | 935 enum htc_endpoint_id eid);
|
/linux-4.1.27/arch/ia64/include/asm/ |
D | smp.h | 31 unsigned long eid : 8; in ia64_get_lid() member 39 return lid.f.id << 8 | lid.f.eid; in ia64_get_lid()
|
D | iosapic.h | 102 u16 eid, u16 id, 116 #define iosapic_register_platform_intr(type,gsi,pmi,eid,id, \ argument
|
D | processor.h | 149 __u64 eid : 8; member
|
D | sal.h | 220 u64 eid : 8; /* eid of processor */ member
|
/linux-4.1.27/sound/firewire/bebob/ |
D | bebob_stream.c | 810 unsigned int len, eid; in fill_stream_formations() local 823 for (eid = 0; eid < SND_BEBOB_STRM_FMT_ENTRIES; eid++) { in fill_stream_formations() 828 &len, eid); in fill_stream_formations() 830 if (err == -EINVAL && eid > 0) { in fill_stream_formations() 836 eid, in fill_stream_formations()
|
D | bebob_command.c | 244 unsigned int *len, unsigned int eid) in avc_bridgeco_get_plug_strm_fmt() argument 258 buf[10] = 0xff & eid; /* Entry ID */ in avc_bridgeco_get_plug_strm_fmt() 271 else if (buf[10] != eid) in avc_bridgeco_get_plug_strm_fmt()
|
D | bebob.h | 203 unsigned int *len, unsigned int eid);
|
/linux-4.1.27/drivers/staging/rtl8188eu/core/ |
D | rtw_ieee80211.c | 254 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 269 if (eid == in_ie[cnt] && (!oui || !memcmp(&in_ie[cnt+2], oui, oui_len))) { in rtw_get_ie_ex() 297 int rtw_ies_remove_ie(u8 *ies, uint *ies_len, uint offset, u8 eid, u8 *oui, u8 oui_len) in rtw_ies_remove_ie() argument 312 target_ie = rtw_get_ie_ex(start, search_len, eid, oui, oui_len, NULL, &target_ielen); in rtw_ies_remove_ie() 722 u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04}; in rtw_is_wps_ie() local 727 eid = ie_ptr[0]; in rtw_is_wps_ie() 729 if ((eid == _WPA_IE_ID_) && (!memcmp(&ie_ptr[2], wps_oui, 4))) { in rtw_is_wps_ie() 749 u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04}; in rtw_get_wps_ie() local 760 eid = in_ie[cnt]; in rtw_get_wps_ie() 762 if ((eid == _WPA_IE_ID_) && (!memcmp(&in_ie[cnt+2], wps_oui, 4))) { in rtw_get_wps_ie()
|
/linux-4.1.27/drivers/staging/rtl8712/ |
D | ieee80211.c | 401 u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04}; in r8712_get_wps_ie() local 406 eid = in_ie[cnt]; in r8712_get_wps_ie() 407 if ((eid == _WPA_IE_ID_) && in r8712_get_wps_ie()
|
D | rtl871x_ioctl_linux.c | 597 u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04}; in r871x_set_wpa_ie() local 600 eid = buf[cnt]; in r871x_set_wpa_ie() 602 if ((eid == _VENDOR_SPECIFIC_IE_) && in r871x_set_wpa_ie()
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | ieee80211.h | 315 u8 *rtw_get_ie23a_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, u8 oui_len, u8 *ie, uint *ielen); 316 int rtw_ies_remove_ie23a(u8 *ies, uint *ies_len, uint offset, u8 eid, u8 *oui, u8 oui_len);
|
D | rtl8723a_cmd.h | 56 u8 eid; /* element id */ member
|
/linux-4.1.27/drivers/staging/rtl8188eu/include/ |
D | rtl8188e_cmd.h | 58 u8 eid; /* element id */ member
|
D | ieee80211.h | 1195 u8 *rtw_get_ie_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, 1198 u8 eid, u8 *oui, u8 oui_len);
|
/linux-4.1.27/drivers/acpi/ |
D | tables.c | 171 p->processor_id, p->id, p->eid, in acpi_table_print_madt_entry() 183 p->type, p->id, p->eid, p->io_sapic_vector, in acpi_table_print_madt_entry()
|
D | processor_core.c | 82 *apic_id = (lsapic->id << 8) | lsapic->eid; in map_lsapic_id()
|
/linux-4.1.27/include/acpi/ |
D | actbl1.h | 181 u8 eid; /* Processor EID */ member 753 u8 eid; /* SAPIC EID */ member 767 u8 eid; /* Processor EID */ member
|
/linux-4.1.27/drivers/scsi/bfa/ |
D | bfa_plog.h | 42 u8 eid; /* indicates Rx, Tx, IOCTL, etc. bfa_plog_eid */ member
|
D | bfa_svc.c | 365 lp.eid = event; in bfa_plog_str() 389 lp.eid = event; in bfa_plog_intarr()
|
/linux-4.1.27/drivers/staging/rtl8723au/core/ |
D | rtw_ieee80211.c | 217 u8 *rtw_get_ie23a_ex(u8 *in_ie, uint in_len, u8 eid, u8 *oui, u8 oui_len, in rtw_get_ie23a_ex() argument 232 if (eid == in_ie[cnt] && in rtw_get_ie23a_ex() 261 int rtw_ies_remove_ie23a(u8 *ies, uint *ies_len, uint offset, u8 eid, in rtw_ies_remove_ie23a() argument 277 target_ie = rtw_get_ie23a_ex(start, search_len, eid, oui, oui_len, in rtw_ies_remove_ie23a()
|
/linux-4.1.27/arch/ia64/kernel/ |
D | acpi.c | 209 (lsapic->id << 8) | lsapic->eid; in acpi_parse_lsapic() 266 plintsrc->eid, in acpi_parse_plat_int_src() 283 acpi_cpei_phys_cpuid = ((plintsrc->id << 8) | (plintsrc->eid)) & 0xffff; in acpi_parse_plat_int_src()
|
D | iosapic.c | 862 int iosapic_vector, u16 eid, u16 id, in iosapic_register_platform_intr() argument 868 unsigned int dest = ((id << 8) | eid) & 0xffff; in iosapic_register_platform_intr()
|
/linux-4.1.27/drivers/net/can/spi/ |
D | mcp251x.c | 412 u32 sid, eid, exide, rtr; in mcp251x_hw_tx() local 420 eid = frame->can_id & CAN_EFF_MASK; /* Extended ID */ in mcp251x_hw_tx() 427 ((eid >> SIDL_EID_SHIFT) & SIDL_EID_MASK); in mcp251x_hw_tx() 428 buf[TXBEID8_OFF] = GET_BYTE(eid, 1); in mcp251x_hw_tx() 429 buf[TXBEID0_OFF] = GET_BYTE(eid, 0); in mcp251x_hw_tx()
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-pko-defs.h | 1233 uint64_t eid:5; member 1239 uint64_t eid:5; 1263 uint64_t eid:5; member 1269 uint64_t eid:5; 1340 uint64_t eid:4; member 1344 uint64_t eid:4; 1370 uint64_t eid:4; member 1374 uint64_t eid:4;
|
/linux-4.1.27/arch/mips/cavium-octeon/executive/ |
D | cvmx-helper-xaui.c | 101 pko_mem_port_ptrs.s.eid = interface * 4; in __cvmx_helper_xaui_probe()
|
/linux-4.1.27/drivers/staging/rtl8192e/ |
D | rtllib_wx.c | 843 u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04}; in rtllib_wx_set_gen_ie() local 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()
|
/linux-4.1.27/fs/udf/ |
D | inode.c | 1696 struct regid *eid; in udf_update_inode() local 1711 eid = (struct regid *)dsea->impUse; in udf_update_inode() 1712 memset(eid, 0, sizeof(struct regid)); in udf_update_inode() 1713 strcpy(eid->ident, UDF_ID_DEVELOPER); in udf_update_inode() 1714 eid->identSuffix[0] = UDF_OS_CLASS_UNIX; in udf_update_inode() 1715 eid->identSuffix[1] = UDF_OS_ID_LINUX; in udf_update_inode()
|
/linux-4.1.27/drivers/net/ethernet/hp/ |
D | hp100.c | 455 const char *eid; in hp100_probe1() local 491 eid = hp100_read_id(ioaddr); in hp100_probe1() 492 if (eid == NULL) { /* bad checksum? */ in hp100_probe1() 664 strlcpy(lp->id, eid, HP100_SIG_LEN); in hp100_probe1()
|
/linux-4.1.27/net/wireless/ |
D | scan.c | 354 const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len) in cfg80211_find_ie() argument 356 while (len > 2 && ies[0] != eid) { in cfg80211_find_ie()
|
/linux-4.1.27/arch/x86/kernel/acpi/ |
D | boot.c | 260 acpi_register_lapic((processor->id << 8) | processor->eid,/* APIC ID */ in acpi_parse_sapic()
|
/linux-4.1.27/drivers/staging/rtl8188eu/os_dep/ |
D | ioctl_linux.c | 598 u8 eid, wps_oui[4] = {0x0, 0x50, 0xf2, 0x04}; in rtw_set_wpa_ie() local 601 eid = buf[cnt]; in rtw_set_wpa_ie() 602 if ((eid == _VENDOR_SPECIFIC_IE_) && (!memcmp(&buf[cnt+2], wps_oui, 4))) { in rtw_set_wpa_ie()
|
/linux-4.1.27/drivers/net/wireless/ti/wlcore/ |
D | main.c | 3851 static void wl12xx_remove_ie(struct sk_buff *skb, u8 eid, int ieoffset) in wl12xx_remove_ie() argument 3855 u8 *ie = (u8 *)cfg80211_find_ie(eid, skb->data + ieoffset, in wl12xx_remove_ie() 5439 u8 eid) in wlcore_get_beacon_ie() argument 5448 return cfg80211_find_ie(eid, in wlcore_get_beacon_ie()
|
/linux-4.1.27/include/net/ |
D | cfg80211.h | 3775 const u8 *cfg80211_find_ie(u8 eid, const u8 *ies, int len);
|