HomeSort by: relevance | last modified time | path
    Searched defs:ie (Results 1 - 25 of 94) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb/dist/libctf/testsuite/libctf-lookup/
enum-ctf.c 5 enum ie { IENUMSAMPLE_1 = -10, IENUMSAMPLE_2, IENUMSAMPLE_3 }; enum
8 enum ie bar;
enum-many-ctf.c 5 enum ie { IE_0 = -10, IE_1, IE_2, IE_3, IE_4, IE_5, IE_6, IE_7, IE_8, IE_9, IE_A, IE_B, IE_C, IE_D, IE_E, IE_F, enum
10 enum ie bar;
  /src/external/gpl3/gdb.old/dist/libctf/testsuite/libctf-lookup/
enum-ctf.c 5 enum ie { IENUMSAMPLE_1 = -10, IENUMSAMPLE_2, IENUMSAMPLE_3 }; enum
8 enum ie bar;
  /src/external/bsd/ipf/dist/lib/
interror.c 529 ipf_error_entry_t *ie; local
535 ie = ipf_errors + l + step;
536 if (ie->iee_number == errnum)
537 return ie;
539 if (ie->iee_number > errnum)
555 ipf_error_entry_t *ie; local
560 ie = find_error(errnum);
561 if (ie != NULL)
562 return ie->iee_text;
576 ipf_error_entry_t *ie; local
    [all...]
  /src/lib/libc/stdlib/
hcreate.c 157 struct internal_entry *ie; local
171 ie = SLIST_FIRST(&table[idx]);
174 (*freekey)(ie->ent.key);
176 (*freedata)(ie->ent.data);
177 free(ie);
202 struct internal_entry *ie; local
217 ie = SLIST_FIRST(chain);
218 while (ie != NULL) {
219 if (strcmp(ie->ent.key, item.key) == 0)
221 ie = SLIST_NEXT(ie, link)
    [all...]
  /src/sys/dev/acpi/
plgpio_acpi.c 146 uint32_t ibe, iev, is, ie; local
201 ie = PLGPIO_READ(sc, PL061_GPIOIE_REG);
202 ie |= __BIT(pin);
203 PLGPIO_WRITE(sc, PL061_GPIOIE_REG, ie);
  /src/external/bsd/mdocml/dist/
dba_array.c 64 int32_t ie; local
69 for (ie = 0; ie < array->eu; ie++)
70 free(array->ep[ie]);
77 dba_array_set(struct dba_array *array, int32_t ie, void *entry)
79 assert(ie >= 0);
80 assert(ie < array->ea);
81 assert(ie <= array->eu);
82 if (ie == array->eu
174 int32_t ie; local
    [all...]
dba.c 188 dba_page_add(struct dba_array *page, int32_t ie, const char *str)
193 entries = dba_array_get(page, ie);
194 if (ie == DBP_ARCH) {
206 if (ie == DBP_FILE && *entry < ' ')
437 unsigned int ie, ne, slot; local
469 for (ie = 0; ie < ne; ie++) {
470 kpos[ie] = dba_tell();
471 dba_str_write(entries[ie]->value)
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
wifi_display.c 41 struct wpabuf *ie; local
54 ie = wpabuf_alloc(len);
55 if (ie == NULL)
60 wpabuf_put_buf(ie, global->wfd_subelem[i]);
63 return ie;
69 struct wpabuf *ie, *buf; local
75 wpa_printf(MSG_DEBUG, "WFD: Update WFD IE");
79 "include WFD IE");
106 * WFD IE is included in number of management frames. Two different
174 ie = wifi_display_encaps(buf)
358 struct wpabuf *ie; local
    [all...]
bgscan_learn.c 467 const u8 *ie; local
469 ie = wpa_scan_get_ie(bss, WLAN_EID_SSID);
470 if (ie == NULL)
473 if (data->ssid->ssid_len != ie[1] ||
474 os_memcmp(data->ssid->ssid, ie + 2, ie[1]) != 0)
mesh_rsn.c 251 const u8 *ie; local
290 ie = wpa_auth_get_wpa_ie(mesh_rsn->auth, &ie_len);
291 conf->rsn_ie = (u8 *) ie;
546 /* insert AMPE and encrypted MIC at @ie.
556 u8 const *ie = wpabuf_head_u8(buf) + wpabuf_len(buf); local
559 const size_t aad_len[] = { ETH_ALEN, ETH_ALEN, ie - cat };
580 /* IE: AMPE */
626 /* IE: MIC */
683 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing mic ie");
693 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing ampe ie");
    [all...]
  /src/sys/arch/newsmips/dev/
sc_wrap.c 272 int ie = 0; local
330 ie = SCSI_INTEN;
339 sc_send(scb, chan, ie);
431 scop_rsense(int intr, struct scsi *sc_param, int lun, int ie, int count,
446 sc_go(intr, sc_param, ie, sc_param);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveInterval.cpp 408 const_iterator ie = end(); local
416 i = std::upper_bound(i, ie, j->start);
431 while (i != ie) {
434 std::swap(ie, je);
453 const_iterator IE = end();
454 if (I == IE)
476 std::swap(IE, JE);
  /src/external/bsd/unbound/dist/daemon/
stats.c 210 struct iter_env* ie; local
214 ie = (struct iter_env*)worker->env.modinfo[m];
215 lock_basic_lock(&ie->queries_ratelimit_lock);
216 r = ie->num_queries_ratelimited;
218 ie->num_queries_ratelimited = 0;
219 lock_basic_unlock(&ie->queries_ratelimit_lock);
  /src/external/bsd/wpa/dist/src/p2p/
p2p_invitation.c 35 struct wpabuf *ie; local
39 ie = p2p_group_get_wfd_ie(g);
40 if (ie) {
41 wfd_ie = ie;
104 /* WSC IE in Invitation Request for NFC static handover */
129 struct wpabuf *ie; local
133 ie = p2p_group_get_wfd_ie(g);
134 if (ie) {
135 wfd_ie = ie;
  /src/external/bsd/wpa/dist/src/rsn_supp/
preauth.c 483 struct wpa_ie_data ie; local
493 if (wpa_parse_wpa_ie(rsn, 2 + rsn[1], &ie))
498 !(ie.capabilities & WPA_CAPABILITY_PREAUTH)))
501 if (!rsn_preauth_key_mgmt(ie.key_mgmt))
506 ie.capabilities & WPA_CAPABILITY_PREAUTH);
  /src/external/bsd/wpa/dist/src/wps/
wps.c 106 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
109 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
113 "in (Re)AssocReq WPS IE");
115 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
116 "in (Re)AssocReq WPS IE): %d",
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 addres
421 struct wpabuf *ie; local
455 struct wpabuf *ie; local
501 struct wpabuf *ie; local
    [all...]
wps_attr_build.c 463 /* Encapsulate WPS IE data with one (or more, if needed) IE headers */
466 struct wpabuf *ie; local
469 ie = wpabuf_alloc(wpabuf_len(data) + 100);
470 if (ie == NULL) {
482 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
483 wpabuf_put_u8(ie, 4 + frag_len);
484 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
485 wpabuf_put_data(ie, pos, frag_len);
491 return ie;
    [all...]
  /src/sys/arch/hppa/gsc/
if_ie_gsc.c 97 struct ie_softc ie; member in struct:ie_gsc_softc
375 struct ie_softc *sc = &gsc->ie;
  /src/sys/arch/sun2/dev/
if_ie_mbmem.c 29 * Converted to SUN ie driver by Charles D. Cranor,
38 * written so that different "ie" interfaces can be controlled by the same
45 * the ie chip operates in a 24 bit address space.
47 * most ie interfaces appear to be divided into two parts:
52 * the generic stuff of the ie chip is all done with data structures
76 * there are 3 kinds of sun "ie" interfaces:
107 * The page map effects BOTH how the ie chip sees the
128 * on the onboard ie interface the 24 bit address space is hardwired
239 struct ie_softc ie; member in struct:ie_mbmem_softc
407 sc = &vsc->ie;
    [all...]
  /src/usr.sbin/makefs/cd9660/
cd9660_eltorito.c 281 boot_catalog_initial_entry *ie; local
288 ie = &default_entry->entry_data.IE;
290 ie->boot_indicator[0] = disk->bootable;
291 ie->media_type[0] = disk->targetMode;
292 cd9660_721(disk->loadSegment, ie->load_segment);
293 ie->system_type[0] = disk->system;
294 cd9660_721(disk->num_sectors, ie->sector_count);
295 cd9660_731(disk->sector, ie->load_rba);
299 "load rba %d\n", __func__, ie->boot_indicator[0]
    [all...]
  /src/external/bsd/unbound/dist/ipsecmod/
ipsecmod.c 245 * @param ie: ipsecmod environment.
250 struct ipsecmod_env* ATTR_UNUSED(ie))
382 * @param ie: environment specific for this module. global.
387 struct ipsecmod_qstate* iq, struct ipsecmod_env* ie, int id)
427 if(!call_hook(qstate, iq, ie) &&
471 * @param ie: environment specific for this module. global.
477 struct ipsecmod_env* ATTR_UNUSED(ie), int id)
516 struct ipsecmod_env* ie = (struct ipsecmod_env*)qstate->env->modinfo[id]; local
534 ipsecmod_handle_query(qstate, iq, ie, id);
538 ipsecmod_handle_response(qstate, iq, ie, id)
608 struct ipsecmod_env* ie = (struct ipsecmod_env*)env->modinfo[id]; local
    [all...]
  /src/external/bsd/unbound/dist/ipset/
ipset.c 183 ipset_add_rrset_data(struct ipset_env *ie,
208 ret = add_to_ipset((filter_dev)ie->dev, setname, rr_data + 2, af);
215 mnl_socket_close((filter_dev)ie->dev);
216 ie->dev = NULL;
225 ipset_check_zones_for_rrset(struct module_env *env, struct ipset_env *ie,
265 ipset_add_rrset_data(ie, d, setname, af, dname);
273 struct query_info qinfo, struct ipset_env *ie)
284 if (!ie->dev) {
286 ie->dev = open_filter();
287 if (!ie->dev)
408 struct ipset_env *ie = (struct ipset_env *)qstate->env->modinfo[id]; local
482 struct ipset_env *ie = (struct ipset_env *)env->modinfo[id]; local
    [all...]
  /src/external/bsd/wpa/dist/src/ap/
rrm.c 99 const u8 *pos, *ie, *end; local
106 while ((ie = get_ie(pos, end - pos, WLAN_EID_MEASURE_REPORT))) {
107 if (ie[1] < 3) {
112 rep_mode = ie[3];
114 rep_mode, ie[4]);
116 switch (ie[4]) {
118 hostapd_handle_lci_report(hapd, token, ie + 2, ie[1]);
121 hostapd_handle_range_report(hapd, token, ie + 2, ie[1])
282 const u8 *pos, *ie, *end; local
    [all...]
taxonomy.c 56 /* Inside the WPS IE are a series of attributes, using two byte IDs
103 const u8 *ie; local
120 ie = wpabuf_head(ies);
127 id = *ie++;
128 elen = *ie++;
136 if (WPA_GET_BE32(ie) == WPS_IE_VENDOR_TYPE) {
139 const u8 *data = &ie[4];
152 sep, id, ie[0], ie[1], ie[2], ie[3])
    [all...]

Completed in 45 milliseconds

1 2 3 4