Home
last modified time | relevance | path

Searched refs:icon (Results 1 – 25 of 36) sorted by relevance

12

/freebsd/contrib/wpa/wpa_supplicant/
H A Dhs20_supplicant.c63 struct osu_icon icon[OSU_MAX_ITEMS]; member
325 struct icon_entry *icon; in hs20_find_icon() local
327 dl_list_for_each(icon, &wpa_s->icon_head, struct icon_entry, list) { in hs20_find_icon()
328 if (ether_addr_equal(icon->bssid, bssid) && in hs20_find_icon()
329 os_strcmp(icon->file_name, file_name) == 0 && icon->image) in hs20_find_icon()
330 return icon; in hs20_find_icon()
341 struct icon_entry *icon; in hs20_get_icon() local
351 icon = hs20_find_icon(wpa_s, bssid, file_name); in hs20_get_icon()
352 if (!icon || !icon->image || offset >= icon->image_len) in hs20_get_icon()
354 if (size > icon->image_len - offset) in hs20_get_icon()
[all …]
H A Dctrl_iface.c8204 char *ctx = NULL, *icon, *poffset, *psize; in get_hs20_icon() local
8211 icon = str_token(cmd, " ", &ctx); in get_hs20_icon()
8214 if (!icon || !poffset || !psize) in get_hs20_icon()
8218 return hs20_get_icon(wpa_s, dst_addr, icon, atoi(poffset), atoi(psize), in get_hs20_icon()
8227 char *icon; in del_hs20_icon() local
8238 icon = cmd[used] ? &cmd[used] : NULL; in del_hs20_icon()
8240 return hs20_del_icon(wpa_s, dst_addr, icon); in del_hs20_icon()
8248 char *icon; in hs20_icon_request() local
8256 icon = &cmd[used]; in hs20_icon_request()
8260 (u8 *) icon, os_strlen(icon), inmem); in hs20_icon_request()
/freebsd/contrib/libxo/xohtml/external/
H A Djquery.qtip.css71 .qtip-titlebar .ui-icon,
72 .qtip-icon .ui-icon{
78 .qtip-icon, .qtip-icon .ui-icon{
85 .qtip-icon .ui-icon{
118 .qtip-default .qtip-icon{
154 .qtip-dark .qtip-icon{
174 .qtip-cream .qtip-close .qtip-icon{
190 .qtip-red .qtip-close .qtip-icon{
194 .qtip-red .qtip-icon{
214 .qtip-green .qtip-close .qtip-icon{
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Damigaos15 >>48 byte 1 disk icon
16 >>48 byte 2 drawer icon
17 >>48 byte 3 tool icon
18 >>48 byte 4 project icon
19 >>48 byte 5 garbage icon
20 >>48 byte 6 device icon
21 >>48 byte 7 kickstart icon
22 >>48 byte 8 workbench application icon
23 >2 beshort >1 icon, vers. %d
211 0 string AmIc AMOS Basic icon bank
H A Dmsdos2067 # displays number of icons and information for icon or cursor
2074 >>>0 ubelong 0x00000100 icon resource
2075 # https://www.iana.org/assignments/media-types/image/vnd.microsoft.icon
2076 !:mime image/vnd.microsoft.icon
2077 #!:mime image/x-icon
2079 >>>>4 uleshort x - %d icon
2082 # 1st icon
2084 # 2nd icon
2091 >>>>4 uleshort x - %d icon
2101 # display information of one icon entry
[all …]
H A Dimages1106 # skip Lotus smart icon *.smi by looking for valid hotspot coordinates
1107 >6 ulelong&0xFF00FF00 =0 OS/2 icon
1121 #0 string CI PC color icon data
1129 >>14 ulelong 12 1.x color icon
1138 >>14 ulelong 64 2.x color icon
1228 # Note: container for OS/2 icon "IC", color icon "CI", color pointer "CP" or bitmap "BM"
2189 #0 string P7\ 332 XV "thumbnail file" (icon) data
2572 0 string C565 OLPC firmware icon image data
2856 0 string icns Mac OS X icon
2863 # icon type
H A Dwindows760 # TargetAnsi (260 bytes); NULL-terminated path to environment icon variable encoded with system def…
762 # TargetUnicode (520 bytes); optional NULL-terminated path to same icon environment variable Unicod…
1195 # look for icon file directive maybe pointing to malicious file
1196 >>>1 search/128 IconFile= \b, icon
/freebsd/contrib/wpa/src/ap/
H A Dgas_serv.c714 struct hs20_icon *icon = NULL; in anqp_add_icon() local
716 for (j = 0; j < bss->hs20_icons_count && !icon; j++) { in anqp_add_icon()
718 icon = &bss->hs20_icons[j]; in anqp_add_icon()
720 if (!icon) in anqp_add_icon()
723 wpabuf_put_le16(buf, icon->width); in anqp_add_icon()
724 wpabuf_put_le16(buf, icon->height); in anqp_add_icon()
725 wpabuf_put_data(buf, icon->language, 3); in anqp_add_icon()
726 wpabuf_put_u8(buf, os_strlen(icon->type)); in anqp_add_icon()
727 wpabuf_put_str(buf, icon->type); in anqp_add_icon()
728 wpabuf_put_u8(buf, os_strlen(icon->name)); in anqp_add_icon()
[all …]
/freebsd/contrib/libfido2/src/
H A Dcred.c562 free(cred->user.icon); in fido_cred_reset_tx()
835 const char *icon) in fido_cred_set_user() argument
852 if (up->icon != NULL) { in fido_cred_set_user()
853 free(up->icon); in fido_cred_set_user()
854 up->icon = NULL; in fido_cred_set_user()
864 if (icon != NULL && (up->icon = strdup(icon)) == NULL) in fido_cred_set_user()
872 free(up->icon); in fido_cred_set_user()
878 up->icon = NULL; in fido_cred_set_user()
H A Dwinhello.c323 pack_user(wchar_t **name, wchar_t **icon, wchar_t **display_name, in pack_user()
340 if (in->icon != NULL) { in pack_user()
341 if ((out->pwszIcon = *icon = to_utf16(in->icon)) == NULL) { in pack_user()
342 fido_log_debug("%s: icon", __func__); in pack_user()
316 pack_user(wchar_t ** name,wchar_t ** icon,wchar_t ** display_name,WEBAUTHN_USER_ENTITY_INFORMATION * out,const fido_user_t * in) pack_user() argument
H A Dcbor.c461 (user->icon && cbor_add_string(item, "icon", user->icon) < 0) || in cbor_encode_user_entity()
1543 if (cbor_string_copy(val, &user->icon) < 0) { in decode_user_entry()
H A Dassert.c804 free(assert->stmt[i].user.icon); in fido_assert_count()
962 return (assert->stmt[idx].user.icon); in fido_assert_largeblob_key_len()
/freebsd/contrib/wpa/hs20/client/
H A Dosu_client.c2010 struct osu_icon icon[MAX_OSU_VALS]; member
2138 struct osu_icon *icon; in parse_osu_providers() local
2141 icon = &last->icon[last->icon_count++]; in parse_osu_providers()
2142 icon->id = atoi(buf + 5); in parse_osu_providers()
2157 res = os_snprintf(icon->lang, sizeof(icon->lang), in parse_osu_providers()
2159 if (os_snprintf_error(sizeof(icon->lang), res)) in parse_osu_providers()
2166 res = os_snprintf(icon->mime_type, in parse_osu_providers()
2167 sizeof(icon->mime_type), "%s", pos); in parse_osu_providers()
2168 if (os_snprintf_error(sizeof(icon->mime_type), res)) in parse_osu_providers()
2177 res = os_snprintf(icon->filename, in parse_osu_providers()
[all …]
/freebsd/contrib/libxo/xohtml/
H A Dxohtml.css174 div.keeper-active div.icon-box img.keeper {
181 div.icon-box img.keeper {
540 div.icon-box {
549 img.icon {
959 .ui-state-info .ui-icon {
967 .ui-state-success .ui-icon {
975 .ui-state-warning .ui-icon {
/freebsd/contrib/unifdef/tests/
H A Dxterm.expout59 { "#geom", "icon window geometry" },
/freebsd/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_gui.sgml79 icon pop-up messages.</para></listitem>
/freebsd/contrib/libfido2/src/fido/
H A Dtypes.h158 char *icon; /* optional */ member
/freebsd/contrib/wpa/hostapd/
H A Dconfig_file.c1840 struct hs20_icon *icon; in hs20_parse_icon() local
1843 icon = os_realloc_array(bss->hs20_icons, bss->hs20_icons_count + 1, in hs20_parse_icon()
1845 if (icon == NULL) in hs20_parse_icon()
1847 bss->hs20_icons = icon; in hs20_parse_icon()
1848 icon = &bss->hs20_icons[bss->hs20_icons_count]; in hs20_parse_icon()
1849 os_memset(icon, 0, sizeof(*icon)); in hs20_parse_icon()
1851 icon->width = atoi(pos); in hs20_parse_icon()
1857 icon->height = atoi(pos); in hs20_parse_icon()
1866 os_memcpy(icon->language, pos, end - pos); in hs20_parse_icon()
1872 os_memcpy(icon->type, pos, end - pos); in hs20_parse_icon()
[all …]
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dicon.dts16 model = "mosaixtech,icon";
17 compatible = "mosaixtech,icon";
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DNodes.td64 Expression for integer literals. C++ [lex.icon]
/freebsd/usr.bin/vgrind/
H A Dvgrindefs.src92 Icon|icon|I:\
/freebsd/contrib/libpcap/doc/
H A DREADME.windows.md90 PATH for all users and to create the desktop icon.
/freebsd/contrib/tcsh/
H A Dhost.defs775 vendor : : "icon"
776 hosttype: : "icon"
/freebsd/sys/contrib/libsodium/packaging/nuget/
H A Dpackage.gsl37 <!-- Salt shaker icon by Dubravko Soric :
/freebsd/contrib/dialog/
H A Ddialog.c301 { "icon", xxS(icon), 1, NULL },

12