Searched refs:essid (Results 1 - 25 of 46) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8187se/ieee80211/
H A Dieee80211_softmac_wx.c200 wrqu->essid.length = len;
202 wrqu->essid.flags = 1;
349 if (wrqu->essid.length > IW_ESSID_MAX_SIZE){
367 if (wrqu->essid.flags && wrqu->essid.length) {
369 len = (wrqu->essid.length < IW_ESSID_MAX_SIZE) ? (wrqu->essid.length) : IW_ESSID_MAX_SIZE;
388 //printk("==========set essid %s!\n",ieee->current_network.ssid);
H A Dieee80211.h923 * fields bssid and essid may be valid (if wpa_set and essid_set
1199 extern inline int ieee80211_is_empty_essid(const char *essid, int essid_len) argument
1202 if (essid_len == 1 && essid[0] == ' ')
1205 /* Otherwise, if the entire essid is 0, we assume it is hidden */
1208 if (essid[essid_len] != '\0')
1435 static inline const char *escape_essid(const char *essid, u8 essid_len) { argument
1437 const char *s = essid;
1440 if (ieee80211_is_empty_essid(essid, essid_len)) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/
H A Dps3_gelic_wireless.c51 u8 *essid, size_t essid_len);
383 u8 *essid = NULL; local
389 essid = req->essid;
391 pr_debug("%s: ESSID scan =%s\n", __func__, essid);
393 return gelic_wl_start_scan(wl, 1, essid, essid_len);
598 iwe.u.data.length = strnlen(scan->essid, 32);
599 ev = iwe_stream_add_point(info, ev, stop, &iwe, scan->essid);
644 ev = iwe_stream_add_point(info, ev, stop, &iwe, scan->essid);
779 pr_debug("essid
1444 gelic_wl_start_scan(struct gelic_wl_info *wl, int always_scan, u8 *essid, size_t essid_len) argument
2184 u8 *essid; local
[all...]
H A Dps3_gelic_wireless.h166 u8 essid[32]; /* IW_ESSID_MAX_SIZE */ member in struct:gelic_eurus_scan_info
286 u8 essid[IW_ESSID_MAX_SIZE]; member in struct:gelic_wl_info
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/
H A Dat76c50x-usb.h193 u8 essid[32]; member in struct:at76_req_scan
205 u8 essid[32]; member in struct:at76_req_ibss
214 u8 essid[32]; member in struct:at76_req_join
404 u8 essid[IW_ESSID_MAX_SIZE]; member in struct:at76_priv
H A Dwl3501_cs.c652 iw_copy_mgmt_info_element(&sig.ssid.el, &this->essid.el);
653 iw_copy_mgmt_info_element(&this->keep_essid.el, &this->essid.el);
672 if (!this->essid.el.len)
674 else if (this->essid.el.len == 3 &&
675 !memcmp(this->essid.essid, "ANY", 3))
677 else if (this->essid.el.len != sig.ssid.el.len)
679 else if (memcmp(this->essid.essid, sig.ssid.essid,
[all...]
H A Dzd1201.h45 char essid[IW_ESSID_MAX_SIZE+1]; member in struct:zd1201
H A Dzd1201.c703 static int zd1201_join(struct zd1201 *zd, char *essid, int essidlen) argument
719 memcpy(buf+2, essid, essidlen);
749 /* Start MAC with wildcard if no essid set */
751 zd1201_join(zd, zd->essid, zd->essidlen);
890 struct iw_request_info *info, struct iw_point *data, char *essid)
967 setting an 'impossible' essid.
991 memcpy(buffer+2, zd->essid, zd->essidlen);
1203 struct iw_request_info *info, struct iw_point *data, char *essid)
1212 memset(zd->essid, 0, IW_ESSID_MAX_SIZE+1);
1213 memcpy(zd->essid, essi
889 zd1201_config_commit(struct net_device *dev, struct iw_request_info *info, struct iw_point *data, char *essid) argument
1202 zd1201_set_essid(struct net_device *dev, struct iw_request_info *info, struct iw_point *data, char *essid) argument
1217 zd1201_get_essid(struct net_device *dev, struct iw_request_info *info, struct iw_point *data, char *essid) argument
[all...]
H A Dwl3501.h238 u8 essid[IW_ESSID_MAX_SIZE]; member in struct:iw_mgmt_essid_pset
592 struct iw_mgmt_essid_pset essid; member in struct:wl3501_card
H A Dray_cs.c149 static char *essid; variable
192 module_param(essid, charp, 0);
676 if (essid != NULL)
677 strncpy(local->sparm.b4.a_current_ess_id, essid, ESSID_SIZE);
1127 if (wrqu->essid.flags == 0)
1132 if (wrqu->essid.length > IW_ESSID_MAX_SIZE)
1137 memcpy(local->sparm.b5.a_current_ess_id, extra, wrqu->essid.length);
1151 /* Get the essid that was set */
1155 wrqu->essid.length = strlen(extra);
1156 wrqu->essid
[all...]
H A Drndis_wlan.c267 u8 essid[NDIS_802_11_LENGTH_SSID]; member in struct:ndis_80211_ssid
499 struct ndis_80211_ssid essid; member in struct:rndis_wlan_private
1010 memcpy(&priv->essid, ssid, sizeof(priv->essid));
1099 ssid.length = cpu_to_le32(sizeof(ssid.essid));
1100 get_random_bytes(&ssid.essid[2], sizeof(ssid.essid)-2);
1101 ssid.essid[0] = 0x1;
1102 ssid.essid[1] = 0xff;
1103 for (i = 2; i < sizeof(ssid.essid);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192e/ieee80211/
H A Dieee80211_softmac_wx.c205 wrqu->essid.length = len;
207 wrqu->essid.flags = 1;
409 if (wrqu->essid.length > IW_ESSID_MAX_SIZE){
429 if (wrqu->essid.flags && wrqu->essid.length) {
431 len = ((wrqu->essid.length-1) < IW_ESSID_MAX_SIZE) ? (wrqu->essid.length-1) : IW_ESSID_MAX_SIZE;
H A Dieee80211.h2070 * fields bssid and essid may be valid (if wpa_set and essid_set
2400 extern inline int ieee80211_is_empty_essid(const char *essid, int essid_len) argument
2403 if (essid_len == 1 && essid[0] == ' ')
2406 /* Otherwise, if the entire essid is 0, we assume it is hidden */
2409 if (essid[essid_len] != '\0')
2738 static inline const char *escape_essid(const char *essid, u8 essid_len) { argument
2740 const char *s = essid;
2743 if (ieee80211_is_empty_essid(essid, essid_len)) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192su/ieee80211/
H A Dieee80211_softmac_wx.c202 wrqu->essid.length = len;
204 wrqu->essid.flags = 1;
413 if (wrqu->essid.length > IW_ESSID_MAX_SIZE){
432 if (wrqu->essid.flags && wrqu->essid.length) {
434 len = ((wrqu->essid.length-1) < IW_ESSID_MAX_SIZE) ? (wrqu->essid.length-1) : IW_ESSID_MAX_SIZE;
H A Dieee80211.h1265 * fields bssid and essid may be valid (if wpa_set and essid_set
1581 extern inline int ieee80211_is_empty_essid(const char *essid, int essid_len) argument
1584 if (essid_len == 1 && essid[0] == ' ')
1587 /* Otherwise, if the entire essid is 0, we assume it is hidden */
1590 if (essid[essid_len] != '\0')
1865 static inline const char *escape_essid(const char *essid, u8 essid_len) { argument
1867 const char *s = essid;
1870 if (ieee80211_is_empty_essid(essid, essid_len)) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_softmac_wx.c206 wrqu->essid.length = len;
208 wrqu->essid.flags = 1;
397 if (wrqu->essid.length > IW_ESSID_MAX_SIZE){
416 if (wrqu->essid.flags && wrqu->essid.length) {
418 len = ((wrqu->essid.length-1) < IW_ESSID_MAX_SIZE) ? (wrqu->essid.length-1) : IW_ESSID_MAX_SIZE;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/vt6656/
H A Dmain_usb.c1663 char essid[IW_ESSID_MAX_SIZE+1]; local
1664 if (wrq->u.essid.length > IW_ESSID_MAX_SIZE) {
1668 if (copy_from_user(essid, wrq->u.essid.pointer,
1669 wrq->u.essid.length)) {
1674 &(wrq->u.essid), essid);
1683 char essid[IW_ESSID_MAX_SIZE+1]; local
1684 if (wrq->u.essid.pointer)
1686 &(wrq->u.essid), essi
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/orinoco/
H A Dhermes.h270 u8 essid[32]; /* ESSID of the network */ member in struct:prism2_scan_apinfo
287 u8 essid[32]; /* ESSID of the network */ member in struct:agere_scan_apinfo
301 u8 essid[32]; /* ESSID of the network */ member in struct:symbol_scan_apinfo
H A Dscan.c94 memcpy(&ie_buf[2], bss->a.essid, len);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/otus/
H A Dioctl.c883 struct iw_point *essid, char *extra)
891 if (essid->flags == 1) {
892 if (essid->length > IW_ESSID_MAX_SIZE)
895 if (copy_from_user(&EssidBuf, essid->pointer, essid->length))
898 EssidBuf[essid->length] = '\0';
900 /* printk("siwessid - Essid Len : %d\n",essid->length); */
901 /* printk("siwessid - Essid Flag : %x\n",essid->flags); */
921 struct iw_point *essid, char *extra)
939 /* Make sure the essid lengt
881 usbdrvwext_siwessid(struct net_device *dev, struct iw_request_info *info, struct iw_point *essid, char *extra) argument
919 usbdrvwext_giwessid(struct net_device *dev, struct iw_request_info *info, struct iw_point *essid, char *extra) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rt2860/
H A Dsta_ioctl.c1126 struct iw_point *data, char *essid)
1148 NdisMoveMemory(pSsidString, essid, data->length);
1163 struct iw_point *data, char *essid)
1178 memcpy(essid, pAdapter->CommonCfg.Ssid,
1185 memcpy(essid, pAdapter->CommonCfg.Ssid,
2485 struct iw_point *essid = &wrq->u.essid; local
2486 rt_ioctl_giwessid(net_dev, NULL, essid, essid->pointer);
2491 struct iw_point *essid local
1124 rt_ioctl_siwessid(struct net_device *dev, struct iw_request_info *info, struct iw_point *data, char *essid) argument
1161 rt_ioctl_giwessid(struct net_device *dev, struct iw_request_info *info, struct iw_point *data, char *essid) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/ipw2x00/
H A Dipw2100.c2008 char essid[IW_ESSID_MAX_SIZE]; local
2024 essid, &essid_len);
2075 priv->net_dev->name, print_ssid(ssid, essid, essid_len),
2081 memcpy(priv->essid, essid, priv->essid_len);
2092 static int ipw2100_set_essid(struct ipw2100_priv *priv, char *essid, argument
2104 IPW_DEBUG_HC("SSID: '%s'\n", print_ssid(ssid, essid, ssid_len));
2107 memcpy(cmd.host_command_parameters, essid, ssid_len);
2130 memset(priv->essid + ssid_len, 0, IW_ESSID_MAX_SIZE - ssid_len);
2131 memcpy(priv->essid, essi
4143 char essid[IW_ESSID_MAX_SIZE + 1]; local
6992 char *essid = ""; /* ANY */ local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dwireless.h742 __u32 nwid; /* Rx : Wrong nwid/essid */
798 __u8 essid[IW_ESSID_MAX_SIZE]; member in struct:iw_scan_req
928 struct iw_point essid; /* Extended network name */ member in union:iwreq_data
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/prism54/
H A Disl_ioctl.c249 /* Commit in Monitor mode is not necessary, also setting essid
739 struct obj_ssid essid; local
741 memset(essid.octets, 0, 33);
747 essid.length = dwrq->length;
748 memcpy(essid.octets, extra, dwrq->length);
750 essid.length = 0;
753 return mgt_set_request(priv, DOT11_OID_SSID, 0, &essid);
756 mgt_set(priv, DOT11_OID_SSID, &essid);
766 struct obj_ssid *essid; local
771 essid
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/vt6655/
H A Ddevice_main.c3145 char essid[IW_ESSID_MAX_SIZE+1];
3146 if (wrq->u.essid.length > IW_ESSID_MAX_SIZE) {
3150 if (copy_from_user(essid, wrq->u.essid.pointer,
3151 wrq->u.essid.length)) {
3156 &(wrq->u.essid), essid);
3165 char essid[IW_ESSID_MAX_SIZE+1];
3166 if (wrq->u.essid.pointer)
3168 &(wrq->u.essid), essi
[all...]

Completed in 431 milliseconds

12