Lines Matching refs:iovbuf
1437 char iovbuf[WL_EVENTING_MASK_LEN + 12]; /* Room for "event_msgs" + '\0' + bitvec */ in dhd_conf_set_intiovar() local
1446 bcm_mkiovar(name, (char *)&val, sizeof(val), iovbuf, sizeof(iovbuf)); in dhd_conf_set_intiovar()
1447 if ((ret = dhd_wl_ioctl_cmd(dhd, WLC_SET_VAR, iovbuf, sizeof(iovbuf), TRUE, ifidx)) < 0) in dhd_conf_set_intiovar()
1463 char iovbuf[WLC_IOCTL_SMLEN]; in dhd_conf_set_bufiovar() local
1473 iovar_len = bcm_mkiovar(name, buf, len, iovbuf, sizeof(iovbuf)); in dhd_conf_set_bufiovar()
1475 ret = dhd_wl_ioctl_cmd(dhd, cmd, iovbuf, iovar_len, TRUE, ifidx); in dhd_conf_set_bufiovar()
1492 char *iovbuf = NULL; in dhd_conf_iovar_buf() local
1496 iovbuf = kmalloc(iovbuf_len, GFP_KERNEL); in dhd_conf_iovar_buf()
1497 if (iovbuf == NULL) { in dhd_conf_iovar_buf()
1503 if (bcm_mkiovar(name, buf, len, iovbuf, iovbuf_len)) { in dhd_conf_iovar_buf()
1504 ret = dhd_wl_ioctl_cmd(dhd, cmd, iovbuf, iovbuf_len, FALSE, ifidx); in dhd_conf_iovar_buf()
1506 memcpy(buf, iovbuf, len); in dhd_conf_iovar_buf()
1514 iovar_len = bcm_mkiovar(name, buf, len, iovbuf, iovbuf_len); in dhd_conf_iovar_buf()
1516 ret = dhd_wl_ioctl_cmd(dhd, cmd, iovbuf, iovar_len, TRUE, ifidx); in dhd_conf_iovar_buf()
1524 if (iovbuf) in dhd_conf_iovar_buf()
1525 kfree(iovbuf); in dhd_conf_iovar_buf()
1533 char iovbuf[WLC_IOCTL_SMLEN]; in dhd_conf_get_iovar() local
1537 if (bcm_mkiovar(name, NULL, 0, iovbuf, sizeof(iovbuf))) { in dhd_conf_get_iovar()
1538 ret = dhd_wl_ioctl_cmd(dhd, cmd, iovbuf, sizeof(iovbuf), FALSE, ifidx); in dhd_conf_get_iovar()
1540 memcpy(buf, iovbuf, len); in dhd_conf_get_iovar()
1862 char sub_cmd[32], iovbuf[WLC_IOCTL_SMLEN]; in dhd_conf_scan_mac() local
1879 iovar_len = bcm_mkiovar("scanmac", buffer, len, iovbuf, sizeof(iovbuf)); in dhd_conf_scan_mac()
1881 ret = dhd_wl_ioctl_cmd(dhd, WLC_SET_VAR, iovbuf, iovar_len, TRUE, 0); in dhd_conf_scan_mac()
2203 char iovbuf[WLC_IOCTL_SMLEN]; in dhd_conf_get_wme() local
2206 bzero(iovbuf, sizeof(iovbuf)); in dhd_conf_get_wme()
2213 bcm_mkiovar("wme_ac_sta", NULL, 0, iovbuf, sizeof(iovbuf)); in dhd_conf_get_wme()
2215 bcm_mkiovar("wme_ac_ap", NULL, 0, iovbuf, sizeof(iovbuf)); in dhd_conf_get_wme()
2216 if ((bcmerror = dhd_wl_ioctl_cmd(dhd, WLC_GET_VAR, iovbuf, sizeof(iovbuf), in dhd_conf_get_wme()
2221 memcpy((char*)acp, iovbuf, sizeof(edcf_acparam_t)*AC_COUNT); in dhd_conf_get_wme()