/freebsd/sys/kern/ |
H A D | kern_intr.c | 113 static void intr_event_update(struct intr_event *ie); 114 static int intr_event_schedule_thread(struct intr_event *ie, struct trapframe *frame); 118 struct intr_event *ie); 185 struct intr_event *ie; in ithread_update() local 189 ie = ithd->it_event; in ithread_update() 191 mtx_assert(&ie->ie_lock, MA_OWNED); in ithread_update() 194 if (CK_SLIST_EMPTY(&ie->ie_handlers)) in ithread_update() 197 pri = CK_SLIST_FIRST(&ie->ie_handlers)->ih_pri; in ithread_update() 200 strlcpy(td->td_name, ie->ie_fullname, sizeof(td->td_name)); in ithread_update() 213 intr_event_update(struct intr_event *ie) in intr_event_update() argument [all …]
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | wifi_display.c | 41 struct wpabuf *ie; in wifi_display_get_wfd_ie() local 54 ie = wpabuf_alloc(len); in wifi_display_get_wfd_ie() 55 if (ie == NULL) in wifi_display_get_wfd_ie() 60 wpabuf_put_buf(ie, global->wfd_subelem[i]); in wifi_display_get_wfd_ie() 63 return ie; in wifi_display_get_wfd_ie() 69 struct wpabuf *ie, *buf; in wifi_display_update_wfd_ie() local 75 wpa_printf(MSG_DEBUG, "WFD: Update WFD IE"); in wifi_display_update_wfd_ie() 79 "include WFD IE"); in wifi_display_update_wfd_ie() 106 * WFD IE is included in number of management frames. Two different in wifi_display_update_wfd_ie() 174 ie = wifi_display_encaps(buf); in wifi_display_update_wfd_ie() [all …]
|
H A D | bss.c | 27 const u8 *ie = wpa_bss_get_ie(bss, WLAN_EID_INTERWORKING); in wpa_bss_set_hessid() local 28 if (ie == NULL || (ie[1] != 7 && ie[1] != 9)) { in wpa_bss_set_hessid() 32 if (ie[1] == 7) in wpa_bss_set_hessid() 33 os_memcpy(bss->hessid, ie + 3, ETH_ALEN); in wpa_bss_set_hessid() 35 os_memcpy(bss->hessid, ie + 5, ETH_ALEN); in wpa_bss_set_hessid() 541 const struct wpa_scan_res *new_res, u32 ie) in are_ies_equal() argument 548 switch (ie) { in are_ies_equal() 550 old_ie = wpa_bss_get_vendor_ie(old, ie); in are_ies_equal() 551 new_ie = wpa_scan_get_vendor_ie(new_res, ie); in are_ies_equal() 555 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie); in are_ies_equal() [all …]
|
H A D | mbo.c | 107 struct wpa_ie_data ie; in wpas_mbo_check_pmf() local 119 if (!rsne || wpa_parse_wpa_ie(rsne, 2 + rsne[1], &ie) < 0) in wpas_mbo_check_pmf() 122 if (!(ie.capabilities & WPA_CAPABILITY_MFPC)) in wpas_mbo_check_pmf() 242 /* Leave room for the MBO IE header */ in wpas_mbo_ie() 267 wpa_printf(MSG_ERROR, "Failed to add MBO/OCE IE"); in wpas_mbo_ie() 340 * In MBO IE non-preferred channel subelement we can put many channels in an 343 * the IE attributes and WNM Request subelements, save the channels sorted 459 void wpas_mbo_scan_ie(struct wpa_supplicant *wpa_s, struct wpabuf *ie) in wpas_mbo_scan_ie() argument 463 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC); in wpas_mbo_scan_ie() 464 len = wpabuf_put(ie, 1); in wpas_mbo_scan_ie() [all …]
|
H A D | events.c | 443 struct wpa_ie_data ie; in wpa_find_assoc_pmkid() local 455 if (wpa_sm_parse_own_wpa_ie(wpa_s->wpa, &ie) < 0 || in wpa_find_assoc_pmkid() 456 ie.pmkid == NULL) in wpa_find_assoc_pmkid() 459 for (i = 0; i < ie.num_pmkid; i++) { in wpa_find_assoc_pmkid() 461 ie.pmkid + i * PMKID_LEN, in wpa_find_assoc_pmkid() 472 wpa_dbg(wpa_s, MSG_DEBUG, "RSN: PMKID from assoc IE %sfound from " in wpa_find_assoc_pmkid() 652 struct wpa_ie_data ie; in wpa_supplicant_ssid_bss_match() local 684 if (wpa_parse_wpa_ie(rsn_ie, 2 + rsn_ie[1], &ie)) { in wpa_supplicant_ssid_bss_match() 687 " skip RSN IE - parse failed"); in wpa_supplicant_ssid_bss_match() 690 if (!ie.has_pairwise) in wpa_supplicant_ssid_bss_match() [all …]
|
/freebsd/contrib/wpa/src/wps/ |
H A D | wps.c | 106 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq", in wps_init() 109 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE " in wps_init() 113 "in (Re)AssocReq WPS IE"); in wps_init() 115 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE " in wps_init() 116 "in (Re)AssocReq WPS IE): %d", in wps_init() 232 * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC 233 * @msg: WPS IE contents from Beacon or Probe Response frame 293 * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN 294 * @msg: WPS IE contents from Beacon or Probe Response frame 309 * wps_is_addr_authorized - Check whether WPS IE authorizes MAC address [all …]
|
/freebsd/contrib/mandoc/ |
H A D | dba_array.c | 64 int32_t ie; in dba_array_free() local 69 for (ie = 0; ie < array->eu; ie++) in dba_array_free() 70 free(array->ep[ie]); in dba_array_free() 77 dba_array_set(struct dba_array *array, int32_t ie, void *entry) in dba_array_set() argument 79 assert(ie >= 0); in dba_array_set() 80 assert(ie < array->ea); in dba_array_set() 81 assert(ie <= array->eu); in dba_array_set() 82 if (ie == array->eu) in dba_array_set() 86 array->ep[ie] = entry; in dba_array_set() 87 array->em[ie] = 0; in dba_array_set() [all …]
|
H A D | dba.c | 188 dba_page_add(struct dba_array *page, int32_t ie, const char *str) in dba_page_add() argument 193 entries = dba_array_get(page, ie); in dba_page_add() 194 if (ie == DBP_ARCH) { in dba_page_add() 206 if (ie == DBP_FILE && *entry < ' ') in dba_page_add() 437 unsigned int ie, ne, slot; in dba_macro_write() local 469 for (ie = 0; ie < ne; ie++) { in dba_macro_write() 470 kpos[ie] = dba_tell(); in dba_macro_write() 471 dba_str_write(entries[ie]->value); in dba_macro_write() 477 for (ie = 0; ie < ne; ie++) { in dba_macro_write() 478 dpos[ie] = dba_tell(); in dba_macro_write() [all …]
|
/freebsd/contrib/tcpdump/ |
H A D | print-802_15_4.c | 53 "Vendor Specific Header IE", /* 0x00 */ 79 "LE CSL IE", /* 0x1a */ 80 "LE RIT IE", /* 0x1b */ 81 "DSME PAN descriptor IE", /* 0x1c */ 82 "Rendezvous Time IE", /* 0x1d */ 83 "Time Correction IE", /* 0x1e */ 86 "Extended DSME PAN descriptor IE", /* 0x21 */ 87 "Fragment Sequence Context Description IE", /* 0x22 */ 88 "Simplified Superframe Specification IE", /* 0x23 */ 89 "Simplified GTS Specification IE", /* 0x24 */ [all …]
|
/freebsd/contrib/wpa/src/ap/ |
H A D | taxonomy.c | 56 /* Inside the WPS IE are a series of attributes, using two byte IDs in get_wps_name() 103 const u8 *ie; in ie_to_string() local 120 ie = wpabuf_head(ies); in ie_to_string() 127 id = *ie++; in ie_to_string() 128 elen = *ie++; in ie_to_string() 136 if (WPA_GET_BE32(ie) == WPS_IE_VENDOR_TYPE) { in ie_to_string() 139 const u8 *data = &ie[4]; in ie_to_string() 152 sep, id, ie[0], ie[1], ie[2], ie[3]); in ie_to_string() 158 WPA_GET_LE16(ie)); in ie_to_string() 164 ",htagg:%02hx", (u16) ie[2]); in ie_to_string() [all …]
|
H A D | rrm.c | 99 const u8 *pos, *ie, *end; in hostapd_handle_radio_msmt_report() local 106 while ((ie = get_ie(pos, end - pos, WLAN_EID_MEASURE_REPORT))) { in hostapd_handle_radio_msmt_report() 107 if (ie[1] < 3) { in hostapd_handle_radio_msmt_report() 112 rep_mode = ie[3]; in hostapd_handle_radio_msmt_report() 114 rep_mode, ie[4]); in hostapd_handle_radio_msmt_report() 116 switch (ie[4]) { in hostapd_handle_radio_msmt_report() 118 hostapd_handle_lci_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 121 hostapd_handle_range_report(hapd, token, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 125 rep_mode, ie + 2, ie[1]); in hostapd_handle_radio_msmt_report() 130 ie[4]); in hostapd_handle_radio_msmt_report() [all …]
|
/freebsd/contrib/wpa/src/p2p/ |
H A D | p2p_group.c | 127 static void p2p_client_info(struct wpabuf *ie, struct p2p_group_member *m) in p2p_client_info() argument 131 if (wpabuf_tailroom(ie) < wpabuf_len(m->client_info) + 1) in p2p_client_info() 133 wpabuf_put_buf(ie, m->client_info); in p2p_client_info() 138 struct wpabuf *ie) in p2p_group_add_common_ies() argument 160 p2p_buf_add_capability(ie, dev_capab, group_capab); in p2p_group_add_common_ies() 164 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) in p2p_group_add_noa() argument 169 wpabuf_put_u8(ie, P2P_ATTR_NOTICE_OF_ABSENCE); in p2p_group_add_noa() 170 wpabuf_put_le16(ie, wpabuf_len(noa)); in p2p_group_add_noa() 171 wpabuf_put_buf(ie, noa); in p2p_group_add_noa() 177 struct wpabuf *ie; in p2p_group_encaps_probe_resp() local [all …]
|
/freebsd/share/man/man9/ |
H A D | intr_event.9 | 47 .Fa "struct intr_event *ie" 70 .Fn intr_event_destroy "struct intr_event *ie" 72 .Fn intr_event_handle "struct intr_event *ie" "struct trapframe *frame" 209 .Fa ie . 251 .Fa ie , 265 .Fa ie . 362 struct intr_event *ie; 370 if (ie != NULL) { 371 if (!(ie->ie_flags & IE_SOFT)) 374 error = intr_event_create(&ie, NULL, IE_SOFT, 0, [all …]
|
/freebsd/contrib/wpa/src/common/ |
H A D | wpa_common.c | 955 /* IE hdr and mic_control */ in wpa_ft_mic() 1028 static int wpa_ft_parse_ftie(const u8 *ie, size_t ie_len, in wpa_ft_parse_ftie() argument 1035 end = ie + ie_len; in wpa_ft_parse_ftie() 1152 static int wpa_ft_parse_fte(int key_mgmt, const u8 *ie, size_t len, in wpa_ft_parse_fte() argument 1157 const u8 *pos = ie; in wpa_ft_parse_fte() 1208 return wpa_ft_parse_ftie(ie, len, parse, pos); in wpa_ft_parse_fte() 1257 "RSN IE: %d", ret); in wpa_ft_parse_ies() 1350 * Check that the protected IE count matches with IEs included in the in wpa_ft_parse_ies() 1378 "the protected IE count"); in wpa_ft_parse_ies() 1383 wpa_printf(MSG_DEBUG, "FT: RIC IE(s) in the frame, but not " in wpa_ft_parse_ies() [all …]
|
/freebsd/contrib/wpa/src/rsn_supp/ |
H A D | wpa.c | 318 /* When using drivers that generate RSN IE, wpa_supplicant may in wpa_supplicant_get_pmk() 520 * @wpa_ie: WPA/RSN IE 521 * @wpa_ie_len: Length of the WPA/RSN IE 550 wpa_hexdump(MSG_DEBUG, "WPA: WPA IE before FT processing", in wpa_supplicant_send_2_of_4() 553 * Add PMKR1Name into RSN IE (PMKID-List) and add MDIE and in wpa_supplicant_send_2_of_4() 568 "WPA: WPA IE after PMKID[PMKR1Name] addition into RSNE", in wpa_supplicant_send_2_of_4() 584 wpa_hexdump(MSG_DEBUG, "WPA: WPA IE for msg 2/4", wpa_ie, wpa_ie_len); in wpa_supplicant_send_2_of_4() 858 struct wpa_eapol_ie_parse ie; in wpa_supplicant_process_1_of_4_wpa() local 872 os_memset(&ie, 0, sizeof(ie)); in wpa_supplicant_process_1_of_4_wpa() 874 res = wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid); in wpa_supplicant_process_1_of_4_wpa() [all …]
|
H A D | tdls.c | 63 u8 ie_type; /* Timeout IE */ 70 u8 ie_type; /* Link Identifier IE */ 84 static u8 * wpa_add_tdls_timeoutie(u8 *pos, u8 *ie, size_t ie_len, u32 tsecs); 103 u8 rsnie_i[TDLS_MAX_IE_LEN]; /* Initiator RSN IE */ 105 u8 rsnie_p[TDLS_MAX_IE_LEN]; /* Peer RSN IE */ 188 static u8 * wpa_add_ie(u8 *pos, const u8 *ie, size_t ie_len) in wpa_add_ie() argument 190 os_memcpy(pos, ie, ie_len); in wpa_add_ie() 483 * @lnkid: Pointer to the beginning of Link Identifier IE 486 * @timeoutie: Pointer to the beginning of Timeout IE used for handshake 520 /* 4) Link Identifier IE */ in wpa_tdls_ftie_mic() [all …]
|
/freebsd/contrib/unbound/ipset/ |
H A D | ipset.c | 183 ipset_add_rrset_data(struct ipset_env *ie, in ipset_add_rrset_data() argument 208 ret = add_to_ipset((filter_dev)ie->dev, setname, rr_data + 2, af); in ipset_add_rrset_data() 215 mnl_socket_close((filter_dev)ie->dev); in ipset_add_rrset_data() 216 ie->dev = NULL; in ipset_add_rrset_data() 225 ipset_check_zones_for_rrset(struct module_env *env, struct ipset_env *ie, in ipset_check_zones_for_rrset() argument 265 ipset_add_rrset_data(ie, d, setname, af, dname); in ipset_check_zones_for_rrset() 273 struct query_info qinfo, struct ipset_env *ie) in ipset_update() argument 284 if (!ie->dev) { in ipset_update() 286 ie->dev = open_filter(); in ipset_update() 287 if (!ie->dev) { in ipset_update() [all …]
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | p2p.c | 23 /* P2P IE */ in ath10k_p2p_noa_ie_fill() 70 static void ath10k_p2p_noa_ie_assign(struct ath10k_vif *arvif, void *ie, in ath10k_p2p_noa_ie_assign() argument 79 arvif->u.ap.noa_data = ie; in ath10k_p2p_noa_ie_assign() 87 void *ie; in __ath10k_p2p_noa_update() local 98 ie = kmalloc(len, GFP_ATOMIC); in __ath10k_p2p_noa_update() 99 if (!ie) in __ath10k_p2p_noa_update() 102 ath10k_p2p_noa_ie_fill(ie, len, noa); in __ath10k_p2p_noa_update() 103 ath10k_p2p_noa_ie_assign(arvif, ie, len); in __ath10k_p2p_noa_update()
|
/freebsd/sys/net80211/ |
H A D | ieee80211_node.h | 71 * Information element (IE) ``blob''. We use this structure 78 uint8_t *wpa_ie; /* captured WPA ie */ 79 uint8_t *rsn_ie; /* captured RSN ie */ 80 uint8_t *wme_ie; /* captured WME ie */ 81 uint8_t *ath_ie; /* captured Atheros ie */ 82 uint8_t *htcap_ie; /* captured HTCAP ie */ 83 uint8_t *htinfo_ie; /* captured HTINFO ie */ 84 uint8_t *tdma_ie; /* captured TDMA ie */ 85 uint8_t *meshid_ie; /* captured MESH ID ie */ 86 uint8_t *vhtcap_ie; /* captured VHTCAP ie */ [all …]
|
H A D | ieee80211_regdomain.c | 230 * Allocate and construct a Country Information IE. 262 struct ieee80211_country_ie *ie; in ieee80211_alloc_countryie() local 268 ic_printf(ic, "%s: unable to allocate memory for country ie\n", in ieee80211_alloc_countryie() 273 ie = (struct ieee80211_country_ie *) aie->ie_data; in ieee80211_alloc_countryie() 274 ie->ie = IEEE80211_ELEMID_COUNTRY; in ieee80211_alloc_countryie() 278 ie->cc[0] = ie->cc[1] = ' '; in ieee80211_alloc_countryie() 280 ie->cc[0] = rd->isocc[0]; in ieee80211_alloc_countryie() 281 ie->cc[1] = rd->isocc[1]; in ieee80211_alloc_countryie() 289 ie->cc[2] = (rd->location == 'I' ? 'I' : in ieee80211_alloc_countryie() 294 frm = (uint8_t *)&ie->band[0]; in ieee80211_alloc_countryie() [all …]
|
/freebsd/tools/tools/locale/etc/ |
H A D | charmaps.xml | 55 countries="IE" /> 79 countries="IE" /> <!-- UTF-8 only --> 568 …<CYRILLIC SMALL LETTER DE><CYRILLIC SMALL LETTER ZE><CYRILLIC SMALL LETTER IE><CYRILLIC SMALL LETT… 572 …><CYRILLIC SMALL LETTER A><CYRILLIC SMALL LETTER VE><CYRILLIC SMALL LETTER IE><CYRILLIC SMALL LETT… 573 …<CYRILLIC SMALL LETTER ER><CYRILLIC SMALL LETTER VE><CYRILLIC SMALL LETTER IE><CYRILLIC SMALL LETT… 574 … BYELORUSSIAN-UKRAINIAN I><CYRILLIC SMALL LETTER PE><CYRILLIC SMALL LETTER IE><CYRILLIC SMALL LETT… 575 … BYELORUSSIAN-UKRAINIAN I><CYRILLIC SMALL LETTER VE><CYRILLIC SMALL LETTER IE><CYRILLIC SMALL LETT… 576 …><CYRILLIC SMALL LETTER IE><CYRILLIC SMALL LETTER ER><CYRILLIC SMALL LETTER A><CYRILLIC SMALL LETT… 579 …"<CYRILLIC SMALL LETTER ES><CYRILLIC SMALL LETTER EN><CYRILLIC SMALL LETTER IE><CYRILLIC SMALL LET… 622 …USSIAN-UKRAINIAN I><CYRILLIC SMALL LETTER EL><CYRILLIC SMALL LETTER DE><CYRILLIC SMALL LETTER IE>"; [all …]
|
/freebsd/contrib/unbound/cachedb/ |
H A D | cachedb.c | 647 cachedb_extcache_lookup(struct module_qstate* qstate, struct cachedb_env* ie, in cachedb_extcache_lookup() argument 654 if( !(*ie->backend->lookup)(qstate->env, ie, key, in cachedb_extcache_lookup() 675 cachedb_extcache_store(struct module_qstate* qstate, struct cachedb_env* ie) in cachedb_extcache_store() argument 685 (*ie->backend->store)(qstate->env, ie, key, in cachedb_extcache_store() 781 * @param ie: environment specific for this module. global. 787 struct cachedb_env* ie, int id) in cachedb_handle_query() argument 792 if(!ie->enabled) { in cachedb_handle_query() 807 if(cachedb_intcache_lookup(qstate, ie)) { in cachedb_handle_query() 824 if(cachedb_extcache_lookup(qstate, ie, &msg_expired)) { in cachedb_handle_query() 826 log_dns_msg(ie->backend->name, in cachedb_handle_query() [all …]
|
/freebsd/contrib/wpa/src/drivers/ |
H A D | driver_atheros.c | 703 atheros_set_opt_ie(void *priv, const u8 *ie, size_t ie_len) in atheros_set_opt_ie() argument 711 wpa_hexdump(MSG_DEBUG, "atheros: set_generic_elem", ie, ie_len); in atheros_set_opt_ie() 714 if (ie) in atheros_set_opt_ie() 715 drv->wpa_ie = wpabuf_alloc_copy(ie, ie_len); in atheros_set_opt_ie() 720 if (ie) in atheros_set_opt_ie() 721 os_memcpy(&(app_ie->app_buf[0]), ie, ie_len); in atheros_set_opt_ie() 726 /* append WPS IE for Beacon */ in atheros_set_opt_ie() 739 /* append WPS IE for Probe Response */ in atheros_set_opt_ie() 888 event.rx_probe_req.ie = buf + IEEE80211_HDRLEN; in atheros_raw_receive() 1000 atheros_set_wps_ie(void *priv, const u8 *ie, size_t len, u32 frametype) in atheros_set_wps_ie() argument [all …]
|
/freebsd/contrib/unbound/ipsecmod/ |
H A D | ipsecmod-whitelist.c | 99 ipsecmod_whitelist_apply_cfg(struct ipsecmod_env* ie, in ipsecmod_whitelist_apply_cfg() argument 102 ie->whitelist = rbtree_create(name_tree_compare); in ipsecmod_whitelist_apply_cfg() 103 if(!read_whitelist(ie->whitelist, cfg)) in ipsecmod_whitelist_apply_cfg() 105 name_tree_init_parents(ie->whitelist); in ipsecmod_whitelist_apply_cfg() 140 ipsecmod_domain_is_whitelisted(struct ipsecmod_env* ie, uint8_t* dname, in ipsecmod_domain_is_whitelisted() argument 143 if(!ie->whitelist) return 1; /* No whitelist, treat as whitelisted. */ in ipsecmod_domain_is_whitelisted() 144 return name_tree_lookup(ie->whitelist, dname, dname_len, in ipsecmod_domain_is_whitelisted()
|
/freebsd/sys/sys/ |
H A D | interrupt.h | 166 void db_dump_intr_event(struct intr_event *ie, int handlers); 169 int intr_event_add_handler(struct intr_event *ie, const char *name, 172 int intr_event_bind(struct intr_event *ie, int cpu); 173 int intr_event_bind_irqonly(struct intr_event *ie, int cpu); 174 int intr_event_bind_ithread(struct intr_event *ie, int cpu); 176 int intr_event_bind_ithread_cpuset(struct intr_event *ie, 183 int intr_event_describe_handler(struct intr_event *ie, void *cookie, 185 int intr_event_destroy(struct intr_event *ie); 186 int intr_event_handle(struct intr_event *ie, struct trapframe *frame);
|