Home
last modified time | relevance | path

Searched refs:IW_CUSTOM_MAX (Results 1 – 9 of 9) sorted by relevance

/Linux-v5.10/drivers/staging/rtl8712/
Dmlme_linux.c143 buff = kzalloc(IW_CUSTOM_MAX, GFP_ATOMIC); in r8712_report_sec_ie()
149 len = (len < IW_CUSTOM_MAX) ? len : IW_CUSTOM_MAX; in r8712_report_sec_ie()
155 wrqu.data.length = (wrqu.data.length < IW_CUSTOM_MAX) ? in r8712_report_sec_ie()
156 wrqu.data.length : IW_CUSTOM_MAX; in r8712_report_sec_ie()
Drtl871x_mlme.c1315 u8 sec_ie[IW_CUSTOM_MAX], uncst_oui[4], bkup_ie[255]; in r8712_restruct_sec_ie()
/Linux-v5.10/drivers/staging/rtl8723bs/os_dep/
Dmlme_linux.c153 buff = rtw_zmalloc(IW_CUSTOM_MAX); in rtw_report_sec_ie()
164 len = (len < IW_CUSTOM_MAX) ? len : IW_CUSTOM_MAX; in rtw_report_sec_ie()
176 wrqu.data.length = (wrqu.data.length < IW_CUSTOM_MAX) ? wrqu.data.length : IW_CUSTOM_MAX; in rtw_report_sec_ie()
/Linux-v5.10/drivers/staging/rtl8188eu/os_dep/
Dmlme_linux.c96 buff = rtw_malloc(IW_CUSTOM_MAX); in rtw_report_sec_ie()
99 memset(buff, 0, IW_CUSTOM_MAX); in rtw_report_sec_ie()
103 len = min_t(uint, len, IW_CUSTOM_MAX); in rtw_report_sec_ie()
108 wrqu.data.length = min_t(__u16, p - buff, IW_CUSTOM_MAX); in rtw_report_sec_ie()
/Linux-v5.10/include/uapi/linux/
Dwireless.h560 #define IW_CUSTOM_MAX 256 /* In bytes */ macro
/Linux-v5.10/drivers/net/wireless/intersil/prism54/
Disl_ioctl.c2032 int n = snprintf(dest, IW_CUSTOM_MAX, in format_event()
2039 WARN_ON(n >= IW_CUSTOM_MAX); in format_event()
2050 memptr = kmalloc(IW_CUSTOM_MAX, GFP_KERNEL); in send_formatted_event()
2068 memptr = kmalloc(IW_CUSTOM_MAX, GFP_KERNEL); in send_simple_event()
2071 BUG_ON(n >= IW_CUSTOM_MAX); in send_simple_event()
/Linux-v5.10/drivers/staging/rtl8192e/
Drtllib.h60 #ifndef IW_CUSTOM_MAX
62 #define IW_CUSTOM_MAX 256 /* In bytes */ macro
/Linux-v5.10/net/wireless/
Dwext-core.c275 .max_tokens = IW_CUSTOM_MAX,
/Linux-v5.10/drivers/staging/ks7010/
Dks_hostif.c870 char buf[IW_CUSTOM_MAX]; in hostif_associate_indication()