• Home
  • Raw
  • Download

Lines Matching refs:wl

180 int wl_ioctl(void *wl, int cmd, void *buf, int len, bool set)  in wl_ioctl()  argument
182 return dhd_ioctl(wl, cmd, buf, len, set); /* Call actual wl_ioctl here: Shubhro */ in wl_ioctl()
279 wl_check(void *wl) in wl_check() argument
284 if (!dhd_check (wl)) in wl_check()
290 if ((ret = wl_get(wl, WLC_GET_MAGIC, &val, sizeof(int))) < 0) in wl_check()
294 if ((ret = wl_get(wl, WLC_GET_VERSION, &val, sizeof(int))) < 0) in wl_check()
344 ioctl_queryinformation_fe(void *wl, int cmd, void* input_buf, int *input_len) in ioctl_queryinformation_fe() argument
347 return dhd_ioctl(wl, cmd, input_buf, *input_len, FALSE); in ioctl_queryinformation_fe()
351 return rwl_queryinformation_fe(wl, cmd, input_buf, in ioctl_queryinformation_fe()
363 ioctl_setinformation_fe(void *wl, int cmd, void* buf, int *len) in ioctl_setinformation_fe() argument
366 return dhd_ioctl(wl, cmd, buf, *len, TRUE); in ioctl_setinformation_fe()
370 return rwl_setinformation_fe(wl, cmd, buf, (unsigned long*)len, 0, RDHD_SET_IOCTL); in ioctl_setinformation_fe()
382 wl_get(void *wl, int cmd, void *buf, int len) in wl_get() argument
387 error = (int)ioctl_queryinformation_fe(wl, WL_OID_BASE + cmd, buf, &len); in wl_get()
389 error = (int)ioctl_queryinformation_fe(wl, cmd, buf, &len); in wl_get()
404 wl_set(void *wl, int cmd, void *buf, int len) in wl_set() argument
410 error = (int)ioctl_setinformation_fe(wl, WL_OID_BASE + cmd, buf, &len); in wl_set()
412 error = (int)ioctl_setinformation_fe(wl, cmd, buf, &len); in wl_set()
645 rwl_shell_createproc(void *wl) in rwl_shell_createproc() argument
647 UNUSED_PARAMETER(wl); in rwl_shell_createproc()