Lines Matching refs:wl
61 extern int wl_get(void *wl, int cmd, void *buf, int len);
62 extern int wl_set(void *wl, int cmd, void *buf, int len);
97 /* By default try to execute wl commands */
125 * the initial set of wl commands for wifi transport (e.g slow_timer, fast_timer etc)
127 int wl_ioctl(void *wl, int cmd, void *buf, int len, bool set)
129 return dhd_ioctl(wl, cmd, buf, len, set); /* Call actual wl_ioctl here: Shubhro */
132 /* Search if dhd adapter or wl adapter is present
133 * This is called by dhd_find to check if it supports wl or dhd
134 * The reason for checking wl adapter is that we can still send remote dhd commands over
173 * So we make use of wl pipes to execute this.
221 /* Verify the wl adapter found.
222 * This is called by dhd_find to check if it supports wl
223 * The reason for checking wl adapter is that we can still send remote dhd commands over
227 wl_check(void *wl)
232 if (!dhd_check (wl))
236 * If dhd_check() fails then go for a regular wl driver verification
238 if ((ret = wl_get(wl, WLC_GET_MAGIC, &val, sizeof(int))) < 0)
242 if ((ret = wl_get(wl, WLC_GET_VERSION, &val, sizeof(int))) < 0)
250 /* Search and verify the request type of adapter (wl or dhd)
289 * or send a dhd command over wl transport
292 ioctl_queryinformation_fe(void *wl, int cmd, void* input_buf, int *input_len)
294 return dhd_ioctl(wl, cmd, input_buf, *input_len, FALSE);
298 * or send a dhd command over wl transport
301 ioctl_setinformation_fe(void *wl, int cmd, void* buf, int *len)
303 return dhd_ioctl(wl, cmd, buf, *len, TRUE);
310 wl_get(void *wl, int cmd, void *buf, int len)
313 error = (int)ioctl_queryinformation_fe(wl, cmd, buf, &len);
325 wl_set(void *wl, int cmd, void *buf, int len)
329 error = (int)ioctl_setinformation_fe(wl, cmd, buf, &len);
365 * (shell cmd, wl cmd) .The code is mostly from wlu_linux.c. This code can be
431 rwl_shell_createproc(void *wl)
433 UNUSED_PARAMETER(wl);