Lines Matching refs:ioct_rqst
867 static void dhd_prot_ioctl_trace(dhd_pub_t *dhd, ioctl_req_msg_t *ioct_rqst, uchar *buf, int len);
9752 ioct_reqst_hdr_t *ioct_rqst; local
9768 ioct_rqst = (ioct_reqst_hdr_t *)
9771 if (ioct_rqst == NULL) {
9783 ptr = (uint8 *)ioct_rqst; /* XXX: failure!!! */
9790 ioct_rqst->msg.epoch = ring->seqnum % H2D_EPOCH_MODULO;
9793 ioct_rqst->msg.msg_type = MSG_TYPE_LOOPBACK;
9794 ioct_rqst->msg.if_id = 0;
9795 ioct_rqst->msg.flags = ring->current_phase;
9797 bcm_print_bytes("LPBK REQ: ", (uint8 *)ioct_rqst, msglen);
9800 dhd_prot_ring_write_complete(dhd, ring, ioct_rqst, 1);
10856 ioctl_req_msg_t *ioct_rqst; local
10914 ioct_rqst = (ioctl_req_msg_t*)
10916 if (ioct_rqst == NULL) {
10929 ioct_rqst->cmn_hdr.msg_type = MSG_TYPE_IOCTLPTR_REQ;
10930 ioct_rqst->cmn_hdr.if_id = (uint8)ifidx;
10931 ioct_rqst->cmn_hdr.flags = ring->current_phase;
10932 ioct_rqst->cmn_hdr.request_id = htol32(DHD_IOCTL_REQ_PKTID);
10933 ioct_rqst->cmn_hdr.epoch = ring->seqnum % H2D_EPOCH_MODULO;
10936 ioct_rqst->cmd = htol32(cmd);
10938 ioct_rqst->output_buf_len = htol16(resplen);
10940 ioct_rqst->trans_id = prot->ioctl_trans_id;
10943 ioct_rqst->input_buf_len = htol16(rqstlen);
10944 ioct_rqst->host_input_buf_addr.high = htol32(PHYSADDRHI(prot->ioctbuf.pa));
10945 ioct_rqst->host_input_buf_addr.low = htol32(PHYSADDRLO(prot->ioctbuf.pa));
10960 ioct_rqst->cmn_hdr.request_id, cmd, ioct_rqst->output_buf_len,
10961 ioct_rqst->trans_id));
10964 dhd_prot_ioctl_trace(dhd, ioct_rqst, buf, len);
10968 dhd_prot_ring_write_complete(dhd, ring, ioct_rqst, 1);
14249 dhd_prot_ioctl_trace(dhd_pub_t *dhd, ioctl_req_msg_t *ioct_rqst, uchar *buf, int len) argument
14254 prot->ioctl_trace[cnt].cmd = ioct_rqst->cmd;
14255 prot->ioctl_trace[cnt].transid = ioct_rqst->trans_id;
14256 if ((ioct_rqst->cmd == 262 || ioct_rqst->cmd == 263) && buf)