HomeSort by: relevance | last modified time | path
    Searched refs:icon (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/bsd/wpa/dist/wpa_supplicant/
hs20_supplicant.c 63 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 (ether_addr_equal(icon->bssid, bssid) &&
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 = hs20_find_icon(wpa_s, bssid, file_name)
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
977 struct osu_icon *icon = &prov->icon[prov->icon_count]; local
    [all...]
  /src/external/mit/xorg/include/xbitmaps/
Makefile 12 hlines3 icon keyboard16 left_ptr left_ptrmsk letters light_gray \
  /src/sys/arch/hpcsh/dev/
j6x0tp.c 104 * Bottom of the n'th hard icon (n = 1..4)
449 int icon; local
470 icon = 0;
472 icon = j6x0tp_get_hard_icon(rawx, rawy);
474 if (icon != 0) {
475 DPRINTFN(2, ("icon %d\n", icon));
476 sc->sc_hard_icon = icon;
477 wskbd_input(sc->sc_wskbddev, WSCONS_EVENT_KEY_DOWN, icon);
639 * Return the icon number 1..4, or 0 if not inside an icon
    [all...]
  /src/sys/arch/hpcarm/dev/
j720tp.c 158 /* Max Y value of the n'th hard icon. */
163 /* Default raw X/Y values of the hard icon area. */
169 /* Maps the icon number to a raw keycode. */
171 /* Icon 1 */ 199,
172 /* Icon 2 */ 201,
173 /* Icon 3 */ 209,
174 /* Icon 4 */ 207
459 int icon = 0; local
468 icon = 1;
470 icon = 2
    [all...]
  /src/external/bsd/wpa/dist/src/ap/
gas_serv.c 714 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->type)
860 struct hs20_icon *icon; local
    [all...]
  /src/external/mit/ctwm/etc/
system.ctwmrc 23 # 3D icon managers do not seemingly honor IconManagerHighlight,
202 Icon "left_ptr"
367 "TWM Icon Manager"
374 "TWM Icon Manager"
400 Button1 = : icon | iconmgr : f.iconify
401 Button2 = : icon : f.move
402 Button3 = : icon | iconmgr : f.raiselower
  /src/distrib/utils/embedded/conf/
nintendo.conf 57 cp ${DIR}/files/evbppc_wii_icon.png ${mnt}/boot/apps/netbsd/icon.png
  /src/external/bsd/libfido2/dist/src/
cred.c 588 free(cred->user.icon);
910 const char *icon)
927 if (up->icon != NULL) {
928 free(up->icon);
929 up->icon = NULL;
939 if (icon != NULL && (up->icon = strdup(icon)) == NULL)
947 free(up->icon);
953 up->icon = NULL
    [all...]
winhello.c 323 pack_user(wchar_t **name, wchar_t **icon, wchar_t **display_name,
340 if (in->icon != NULL) {
341 if ((out->pwszIcon = *icon = to_utf16(in->icon)) == NULL) {
342 fido_log_debug("%s: icon", __func__);
assert.c 804 free(assert->stmt[i].user.icon);
962 return (assert->stmt[idx].user.icon);
cbor.c 461 (user->icon && cbor_add_string(item, "icon", user->icon) < 0) ||
1633 if (!strcmp(name, "icon")) {
1634 if (cbor_string_copy(val, &user->icon) < 0) {
1635 fido_log_debug("%s: icon", __func__);
  /src/external/bsd/wpa/dist/hs20/client/
osu_client.c 2010 struct osu_icon icon[MAX_OSU_VALS]; member in struct:osu_data
2137 if (strncmp(buf, "icon=", 5) == 0) {
2138 struct osu_icon *icon; local
2141 icon = &last->icon[last->icon_count++];
2142 icon->id = atoi(buf + 5);
2157 res = os_snprintf(icon->lang, sizeof(icon->lang),
2159 if (os_snprintf_error(sizeof(icon->lang), res))
2166 res = os_snprintf(icon->mime_type
    [all...]
  /src/external/bsd/libfido2/dist/src/fido/
types.h 158 char *icon; /* optional */ member in struct:fido_user
  /src/external/gpl3/gdb.old/dist/sim/bfin/
gui.c 47 void (*WM_SetCaption) (const char *title, const char *icon);
  /src/external/gpl3/gdb/dist/sim/bfin/
gui.c 47 void (*WM_SetCaption) (const char *title, const char *icon);
  /src/external/bsd/wpa/dist/hostapd/
config_file.c 1840 struct hs20_icon *icon; local
1843 icon = os_realloc_array(bss->hs20_icons, bss->hs20_icons_count + 1,
1845 if (icon == NULL)
1847 bss->hs20_icons = icon;
1848 icon = &bss->hs20_icons[bss->hs20_icons_count];
1849 os_memset(icon, 0, sizeof(*icon));
1851 icon->width = atoi(pos);
1857 icon->height = atoi(pos);
1866 os_memcpy(icon->language, pos, end - pos)
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 612 * deactivate timer, otherwise keep it going. Tray icon has to
1576 QIcon icon; local
1580 icon = QIcon::fromTheme(*it);
1581 if (!icon.isNull())
1582 return icon;
1616 /* give user a visual hint that the tray icon exists */
  /src/sys/arch/dreamcast/dev/maple/
mmemcard.c 96 uint16_t icon; member in struct:mmem_media_info
432 printf("%s: %s, blk %d %d, inf %d, fat %d %d, dir %d %d, icon %d, data %d\n",
439 pt->pt_info.icon,
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
olectl.d 379 _icon icon;
  /src/external/gpl3/binutils/dist/binutils/
resrc.c 81 /* We read the directory entries in a cursor or icon file into
100 } icon; member in union:icondir::__anon9924
156 /* The number of icon resources we have written out. */
778 /* A cursor file is basically an icon file. The start of the file
789 /* Read in the icon directory entries. */
1160 /* Define an icon resource. An icon file may contain a set of
1161 bitmaps, each representing the same icon at various different
1163 real icon resource is then a group resource which can be used to
1164 select one of the actual icon bitmaps. *
    [all...]
rcparse.y 124 %token ICON
185 | input icon
719 | ICON resref numexpr cnumexpr cnumexpr opt_control_data
724 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
730 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
736 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
981 /* Icon resources. */
983 icon: label
984 id ICON memflags_move_discard file_name
  /src/external/gpl3/binutils.old/dist/binutils/
resrc.c 81 /* We read the directory entries in a cursor or icon file into
100 } icon; member in union:icondir::__anon11404
156 /* The number of icon resources we have written out. */
778 /* A cursor file is basically an icon file. The start of the file
789 /* Read in the icon directory entries. */
1160 /* Define an icon resource. An icon file may contain a set of
1161 bitmaps, each representing the same icon at various different
1163 real icon resource is then a group resource which can be used to
1164 select one of the actual icon bitmaps. *
    [all...]
rcparse.y 124 %token ICON
185 | input icon
719 | ICON resref numexpr cnumexpr cnumexpr opt_control_data
724 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
730 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
736 | ICON resref numexpr cnumexpr cnumexpr cnumexpr cnumexpr
981 /* Icon resources. */
983 icon: label
984 id ICON memflags_move_discard file_name
  /src/external/gpl3/gdb/dist/readline/readline/doc/
texi2html 1018 # insert here name of icon images for buttons
1039 # insert here name of icon images for these, if button is inactive
1062 my $icon = shift;
1064 return qq{<IMG SRC="$icon" BORDER="0" ALT="$button: $name" ALIGN="MIDDLE">};
1115 $T2H_ICONS && $T2H_ACTIVE_ICONS{$button} ? # use icon ?
  /src/external/gpl3/gdb.old/dist/readline/readline/doc/
texi2html 1018 # insert here name of icon images for buttons
1039 # insert here name of icon images for these, if button is inactive
1062 my $icon = shift;
1064 return qq{<IMG SRC="$icon" BORDER="0" ALT="$button: $name" ALIGN="MIDDLE">};
1115 $T2H_ICONS && $T2H_ACTIVE_ICONS{$button} ? # use icon ?

Completed in 33 milliseconds

1 2