Searched refs:icon (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dhs20_supplicant.c62 struct osu_icon icon[OSU_MAX_ITEMS]; member in struct:osu_provider
325 struct icon_entry *icon; local
327 dl_list_for_each(icon, &wpa_s->icon_head, struct icon_entry, list) {
328 if (os_memcmp(icon->bssid, bssid, ETH_ALEN) == 0 &&
329 os_strcmp(icon->file_name, file_name) == 0 && icon->image)
330 return icon;
341 struct icon_entry *icon; local
347 wpa_printf(MSG_DEBUG, "HS20: Get icon " MACSTR " %s @ %u +%u (%u)",
351 icon
374 hs20_free_icon_entry(struct icon_entry *icon) argument
390 struct icon_entry *icon, *tmp; local
444 struct icon_entry *icon, *tmp; local
467 struct icon_entry *icon; local
576 struct osu_icon *icon = &osu->icon[j]; local
806 struct osu_icon *icon = &osu->icon[j]; local
831 struct osu_icon *icon = &osu->icon[j]; local
966 struct osu_icon *icon = &prov->icon[prov->icon_count]; local
[all...]
H A Dctrl_iface.c7414 char *ctx = NULL, *icon, *poffset, *psize; local
7421 icon = str_token(cmd, " ", &ctx);
7424 if (!icon || !poffset || !psize)
7428 return hs20_get_icon(wpa_s, dst_addr, icon, atoi(poffset), atoi(psize),
7437 char *icon; local
7448 icon = cmd[used] ? &cmd[used] : NULL;
7450 return hs20_del_icon(wpa_s, dst_addr, icon);
7458 char *icon; local
7466 icon = &cmd[used];
7470 (u8 *) icon, os_strle
[all...]
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dgas_serv.c714 struct hs20_icon *icon = NULL; local
716 for (j = 0; j < bss->hs20_icons_count && !icon; j++) {
718 icon = &bss->hs20_icons[j];
720 if (!icon)
721 return; /* icon info not found */
723 wpabuf_put_le16(buf, icon->width);
724 wpabuf_put_le16(buf, icon->height);
725 wpabuf_put_data(buf, icon->language, 3);
726 wpabuf_put_u8(buf, os_strlen(icon->type));
727 wpabuf_put_str(buf, icon
860 struct hs20_icon *icon; local
[all...]
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Dscan.l74 static int icon(int);
100 0{OD}*[lLuU]* return (icon(8));
101 {NZD}{D}*[lLuU]* return (icon(10));
102 0[xX]{HD}+[lLuU]* return (icon(16));
455 * The value is returned in yylval. icon() (and yylex()) returns T_CON.
458 icon(int base)
515 LERROR("icon()");
/freebsd-11-stable/contrib/wpa/hs20/client/
H A Dosu_client.c2009 struct osu_icon icon[MAX_OSU_VALS]; member in struct:osu_data
2107 if (strncmp(buf, "icon=", 5) == 0) {
2108 struct osu_icon *icon; local
2111 icon = &last->icon[last->icon_count++];
2112 icon->id = atoi(buf + 5);
2127 snprintf(icon->lang, sizeof(icon->lang), "%s", pos);
2133 snprintf(icon->mime_type, sizeof(icon
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dresrc.c86 /* We read the directory entries in a cursor or icon file into
105 } icon; member in union:icondir::__anon287
161 /* The number of icon resources we have written out. */
722 /* A cursor file is basically an icon file. The start of the file
733 /* Read in the icon directory entries. */
1104 /* Define an icon resource. An icon file may contain a set of
1105 bitmaps, each representing the same icon at various different
1107 real icon resource is then a group resource which can be used to
1108 select one of the actual icon bitmap
[all...]
H A Drcparse.y183 | input icon
981 icon: label
/freebsd-11-stable/contrib/wpa/hostapd/
H A Dconfig_file.c1882 struct hs20_icon *icon; local
1885 icon = os_realloc_array(bss->hs20_icons, bss->hs20_icons_count + 1,
1887 if (icon == NULL)
1889 bss->hs20_icons = icon;
1890 icon = &bss->hs20_icons[bss->hs20_icons_count];
1891 os_memset(icon, 0, sizeof(*icon));
1893 icon->width = atoi(pos);
1899 icon->height = atoi(pos);
1908 os_memcpy(icon
[all...]

Completed in 364 milliseconds