Searched refs:ie (Results 1 - 25 of 185) sorted by relevance

12345678

/freebsd-9.3-release/sys/contrib/ngatm/netnatm/msg/
H A Dgenieh.awk58 if(ie in u) return
59 u[ie] = 1
60 print " struct uni_ie_" ie " " ie ";"
H A Dgeniec.awk79 print "static const struct iedecl decl_" coding "_" ie " = {"
87 decl[number,ncoding] = "decl_" coding "_" ie
95 print "static void uni_ie_print_" coding "_" ie "(struct uni_ie_" ie " *, struct unicx *);"
96 print "static int uni_ie_check_" coding "_" ie "(struct uni_ie_" ie " *, struct unicx *);"
97 print "static int uni_ie_encode_" coding "_" ie "(struct uni_msg *, struct uni_ie_" ie " *, struct unicx *);"
98 print "static int uni_ie_decode_" coding "_" ie "(struct uni_ie_" ie " *, struc
[all...]
H A Dgenmsgc.awk91 ie = iename[i]
94 print "\tif(msg->" ie "_repeat.h.present & UNI_IE_PRESENT)"
95 print "\t\tuni_print_ie_internal(UNI_IE_REPEAT, (union uni_ieall *)&msg->" ie "_repeat, cx);"
98 print "\tif(msg->" ie ".h.present & UNI_IE_PRESENT)"
99 print "\t\tuni_print_ie_internal(UNI_IE_" uie ", (union uni_ieall *)&msg->" ie ", cx);"
102 print "\t\tif(msg->" ie "[i].h.present & UNI_IE_PRESENT)"
103 print "\t\t\tuni_print_ie_internal(UNI_IE_" uie ", (union uni_ieall *)&msg->" ie "[i], cx);"
120 ie = iename[i]
123 print "\tret |= uni_check_ie(UNI_IE_REPEAT, (union uni_ieall *)&m->" ie "_repeat, cx);"
126 print "\t\tret |= IE_ISPRESENT(m->" ie "_repea
[all...]
H A Duni_ie.c56 void uni_ie_print_##Coding##_##IE(struct uni_ie_##IE *ie, struct unicx *cx)
59 int uni_ie_check_##Coding##_##IE(struct uni_ie_##IE *ie, struct unicx *cx)
62 int uni_ie_encode_##Coding##_##IE(struct uni_msg *msg, struct uni_ie_##IE *ie, struct unicx *cx)
65 int uni_ie_decode_##Coding##_##IE(struct uni_ie_##IE *ie, struct uni_msg *msg, u_int ielen, struct unicx *cx)
135 if (uni_check_ie(CODE, (union uni_ieall *)ie, cx)) \
137 if (uni_encode_ie_hdr(msg, CODE, &ie->h, (LEN), cx)) \
145 if (uni_check_ie(CODE, (union uni_ieall *)ie, cx)) \
147 if (uni_encode_ie_hdr(msg, REALCODE, &ie->h, (LEN), cx)) \
165 if (IE_ISPRESENT(*ie)) \
168 IE_SETEMPTY(*ie); \
495 uni_print_ie_internal(enum uni_ietype code, const union uni_ieall *ie, struct unicx *cx) argument
505 uni_print_ie(char *buf, size_t size, enum uni_ietype code, const union uni_ieall *ie, struct unicx *cx) argument
513 uni_check_ie(enum uni_ietype code, union uni_ieall *ie, struct unicx *cx) argument
596 uni_decode_ie_body(enum uni_ietype ietype, union uni_ieall *ie, struct uni_msg *msg, u_int ielen, struct unicx *cx) argument
641 uni_encode_ie(enum uni_ietype code, struct uni_msg *msg, union uni_ieall *ie, struct unicx *cx) argument
886 print_cause(struct unicx *cx, struct uni_ie_cause *ie, const struct causetab *tab1, const struct causetab *tab2) argument
1050 check_cause(struct uni_ie_cause *ie, struct unicx *cx, const struct causetab *tab1, const struct causetab *tab2) argument
1343 encode_cause(struct uni_msg *msg, struct uni_ie_cause *ie, struct unicx *cx) argument
1424 decode_cause(struct uni_ie_cause *ie, struct uni_msg *msg, u_int ielen, struct unicx *cx, const struct causetab *tab1, const struct causetab *tab2) argument
1875 print_eetd(struct uni_ie_eetd *ie, struct unicx *cx) argument
3108 decode_aal_1(struct uni_ie_aal *ie, struct uni_msg *msg, u_int ielen) argument
3186 decode_aal_4(struct uni_ie_aal *ie, struct uni_msg *msg, u_int ielen) argument
3246 decode_aal_5(struct uni_ie_aal *ie, struct uni_msg *msg, u_int ielen) argument
3295 decode_aal_user(struct uni_ie_aal *ie, struct uni_msg *msg, u_int ielen) argument
3402 print_ie_traffic_common(struct unicx *cx, u_int present, struct uni_xtraffic *ie) argument
3508 check_ie_traffic_common(struct uni_xtraffic *ie, u_int present, struct unicx *cx __unused) argument
3585 encode_traffic_common(struct uni_msg *msg, struct uni_xtraffic *ie, u_int present, struct unicx *cx __unused) argument
3630 decode_traffic_common(struct uni_xtraffic *ie, struct uni_msg *msg, u_int ielen, u_int *present) argument
4049 print_qos(struct unicx *cx, struct uni_ie_qos *ie) argument
[all...]
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/sig/
H A Dgenmsgcpyc.awk65 ie = iename[i]
67 print "\tif(IE_ISGOOD(src->" ie "_repeat))"
68 print "\t\tdst->" ie "_repeat = src->" ie "_repeat;"
72 print "\t\tif(IE_ISGOOD(src->"ie"[s]))"
73 print "\t\t\tdst->"ie"[d++] = src->"ie"[s];"
75 print "\tif(IE_ISGOOD(src->"ie"))"
76 print "\t\tdst->"ie" = src->"ie";"
[all...]
H A Dsig_verify.c44 uni_mandate_ie(struct uni *uni, enum uni_ietype ie) argument
49 if (e->ie == ie) {
53 if (UNI_SAVE_IERR(&uni->cx, ie, UNI_IEACT_DEFAULT, UNI_IERR_MIS))
89 if (e->ie == UNI_IE_EPREF)
105 if (e->ie == UNI_IE_EPREF) {
151 VERBOSE(uni, UNI_FAC_VERIFY, 2, "ie=%02x err=%u man=%d"
152 " act=%u", e1->ie, e1->err, e1->man, e1->act);
330 uni->cause.u.ie.ie[un
[all...]
/freebsd-9.3-release/lib/libc/stdlib/
H A Dhcreate.c135 struct internal_entry *ie; local
143 ie = SLIST_FIRST(&htable[idx]);
145 free(ie->ent.key);
146 free(ie);
157 struct internal_entry *ie; local
165 ie = SLIST_FIRST(head);
166 while (ie != NULL) {
167 if (strcmp(ie->ent.key, item.key) == 0)
169 ie = SLIST_NEXT(ie, lin
[all...]
/freebsd-9.3-release/sys/kern/
H A Dkern_intr.c101 static void intr_event_update(struct intr_event *ie);
103 static int intr_event_schedule_thread(struct intr_event *ie,
105 static int intr_filter_loop(struct intr_event *ie,
110 static int intr_event_schedule_thread(struct intr_event *ie);
115 struct intr_event *ie);
168 struct intr_event *ie; local
172 ie = ithd->it_event;
176 if (TAILQ_EMPTY(&ie->ie_handlers))
179 pri = TAILQ_FIRST(&ie->ie_handlers)->ih_pri;
182 strlcpy(td->td_name, ie
195 intr_event_update(struct intr_event *ie) argument
256 struct intr_event *ie; local
296 intr_event_bind(struct intr_event *ie, u_char cpu) argument
358 struct intr_event *ie; local
373 struct intr_event *ie; local
402 struct intr_event *ie; local
420 intr_event_destroy(struct intr_event *ie) argument
512 intr_event_add_handler(struct intr_event *ie, const char *name, driver_filter_t filter, driver_intr_t handler, void *arg, u_char pri, enum intr_type flags, void **cookiep) argument
586 intr_event_add_handler(struct intr_event *ie, const char *name, driver_filter_t filter, driver_intr_t handler, void *arg, u_char pri, enum intr_type flags, void **cookiep) argument
674 intr_event_describe_handler(struct intr_event *ie, void *cookie, const char *descr) argument
732 struct intr_event *ie; local
754 struct intr_event *ie; local
789 struct intr_event *ie; local
875 intr_event_schedule_thread(struct intr_event *ie) argument
935 struct intr_event *ie; local
1032 intr_event_schedule_thread(struct intr_event *ie, struct intr_thread *it) argument
1107 struct intr_event *ie; local
1146 struct intr_event *ie = ih->ih_event; local
1197 struct intr_event *ie; local
1231 intr_event_execute_handlers(struct proc *p, struct intr_event *ie) argument
1279 ithread_execute_handlers(struct proc *p, struct intr_event *ie) argument
1327 struct intr_event *ie; local
1410 intr_event_handle(struct intr_event *ie, struct trapframe *frame) argument
1505 struct intr_event *ie; local
1606 intr_filter_loop(struct intr_event *ie, struct trapframe *frame, struct intr_thread **ithd) argument
1670 intr_event_handle(struct intr_event *ie, struct trapframe *frame) argument
1807 db_dump_intr_event(struct intr_event *ie, int handlers) argument
1858 struct intr_event *ie; local
[all...]
/freebsd-9.3-release/contrib/wpa/src/wps/
H A Dwps.c266 struct wpabuf *ie; local
271 ie = wpabuf_alloc(100);
272 if (ie == NULL)
275 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
276 len = wpabuf_put(ie, 1);
277 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
279 if (wps_build_version(ie) ||
280 wps_build_req_type(ie, req_type)) {
281 wpabuf_free(ie);
285 *len = wpabuf_len(ie)
299 struct wpabuf *ie; local
338 struct wpabuf *ie; local
[all...]
/freebsd-9.3-release/sys/mips/rmi/
H A Dintr_machdep.c54 struct intr_event *ie; /* event corresponding to intr */ member in struct:xlr_intrsrc
122 struct intr_event *ie; /* descriptor for the IRQ */ local
134 ie = src->ie;
135 if (ie == NULL) {
141 errcode = intr_event_create(&ie, src, 0, irq,
147 errcode = intr_event_create(&ie, src, 0, irq,
156 src->ie = ie;
158 intr_event_add_handler(ie, nam
166 struct intr_event *ie; local
[all...]
/freebsd-9.3-release/contrib/wpa/src/rsn_supp/
H A Dwpa_ie.c77 wpa_printf(MSG_DEBUG, "%s: ie len too short %lu",
88 wpa_printf(MSG_DEBUG, "%s: malformed ie or unknown version",
101 wpa_printf(MSG_DEBUG, "%s: ie length mismatch, %u too much",
112 wpa_printf(MSG_DEBUG, "%s: ie count botch (pairwise), "
122 wpa_printf(MSG_DEBUG, "%s: ie too short (for key mgmt)",
133 wpa_printf(MSG_DEBUG, "%s: ie count botch (key mgmt), "
143 wpa_printf(MSG_DEBUG, "%s: ie too short (for capabilities)",
155 wpa_printf(MSG_DEBUG, "%s: ie has %u trailing bytes - ignored",
404 * @ie: Pointer to parsed IE data
408 struct wpa_eapol_ie_parse *ie)
407 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
511 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
H A Dwpa.c362 struct wpa_eapol_ie_parse ie; local
377 os_memset(&ie, 0, sizeof(ie));
385 wpa_supplicant_parse_ies(_buf, len, &ie);
386 if (ie.pmkid) {
388 "Authenticator", ie.pmkid, PMKID_LEN);
393 res = wpa_supplicant_get_pmk(sm, src_addr, ie.pmkid);
723 struct wpa_eapol_ie_parse *ie)
729 if (ie->igtk) {
732 if (ie
722 ieee80211w_set_keys(struct wpa_sm *sm, struct wpa_eapol_ie_parse *ie) argument
803 ft_validate_mdie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie, const u8 *assoc_resp_mdie) argument
834 ft_validate_ftie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie, const u8 *assoc_resp_ftie) argument
861 ft_validate_rsnie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie) argument
895 wpa_supplicant_validate_ie_ft(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie) argument
930 wpa_supplicant_validate_ie(struct wpa_sm *sm, const unsigned char *src_addr, struct wpa_eapol_ie_parse *ie) argument
1051 struct wpa_eapol_ie_parse ie; local
1160 struct wpa_eapol_ie_parse ie; local
2426 wpa_sm_set_assoc_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len) argument
2460 wpa_sm_set_ap_wpa_ie(struct wpa_sm *sm, const u8 *ie, size_t len) argument
2494 wpa_sm_set_ap_rsn_ie(struct wpa_sm *sm, const u8 *ie, size_t len) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DTextDiagnosticBuffer.cpp67 for (const_iterator it = err_begin(), ie = err_end(); it != ie; ++it)
70 for (const_iterator it = warn_begin(), ie = warn_end(); it != ie; ++it)
73 for (const_iterator it = note_begin(), ie = note_end(); it != ie; ++it)
/freebsd-9.3-release/sys/modules/ie/
H A DMakefile4 .PATH: ${.CURDIR}/../../dev/ie
/freebsd-9.3-release/sys/sys/
H A Dinterrupt.h158 void db_dump_intr_event(struct intr_event *ie, int handlers);
161 int intr_event_add_handler(struct intr_event *ie, const char *name,
164 int intr_event_bind(struct intr_event *ie, u_char cpu);
170 int intr_event_describe_handler(struct intr_event *ie, void *cookie,
172 int intr_event_destroy(struct intr_event *ie);
173 void intr_event_execute_handlers(struct proc *p, struct intr_event *ie);
174 int intr_event_handle(struct intr_event *ie, struct trapframe *frame);
/freebsd-9.3-release/sys/mips/nlm/
H A Dintr_machdep.c58 struct intr_event *ie; /* event corresponding to intr */ member in struct:xlp_intrsrc
126 struct intr_event *ie; /* descriptor for the IRQ */ local
138 ie = src->ie;
139 if (ie == NULL) {
145 errcode = intr_event_create(&ie, src, 0, irq,
151 errcode = intr_event_create(&ie, src, 0, irq,
160 src->ie = ie;
162 intr_event_add_handler(ie, nam
170 struct intr_event *ie; local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DDAGDeltaAlgorithm.cpp130 ie = S.end(); it != ie; ++it)
191 ie = Changes.end(); it != ie; ++it) {
196 ie = Dependencies.end(); it != ie; ++it) {
203 ie = Changes.end(); it != ie; ++it)
215 ie = pred_end(Change); it != ie;
[all...]
H A DDeltaAlgorithm.cpp35 ie = S.end(); it != ie; ++it, ++idx)
61 ie = Sets.end(); it != ie; ++it)
74 ie = Sets.end(); it != ie; ++it) {
/freebsd-9.3-release/usr.sbin/pkg_install/version/
H A Dperform.c52 struct index_entry *ie; local
122 ie = SLIST_FIRST(&Index);
124 if (ie->name != NULL)
125 free(ie->name);
126 if (ie->origin != NULL)
127 free(ie->origin);
128 free(ie);
147 struct index_entry *ie; local
212 if ((ie = malloc(sizeof(struct index_entry))) == NULL)
214 bzero(ie, sizeo
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Option/
H A DArgList.cpp48 for (iterator it = begin(), ie = end(); it != ie; ) {
51 ie = end();
60 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
68 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
80 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
95 for (const_iterator it = begin(), ie
[all...]
/freebsd-9.3-release/sys/ia64/include/
H A Dcpufunc.h81 intr_restore(register_t ie) argument
83 if (ie)
/freebsd-9.3-release/sys/ia64/acpica/
H A Dacpi_machdep.c60 register_t ie; local
62 ie = intr_disable();
63 KASSERT(ie == 0, ("%s called with interrupts enabled\n", __func__));
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dbss.c148 const struct wpa_scan_res *new, u32 ie)
155 switch (ie) {
157 old_ie = wpa_bss_get_vendor_ie(old, ie);
158 new_ie = wpa_scan_get_vendor_ie(new, ie);
162 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie);
163 new_ie_buff = wpa_scan_get_vendor_ie_multi(new, ie);
169 old_ie = wpa_bss_get_ie(old, ie);
170 new_ie = wpa_scan_get_ie(new, ie);
490 const u8 * wpa_bss_get_ie(const struct wpa_bss *bss, u8 ie) argument
500 if (pos[0] == ie)
147 are_ies_equal(const struct wpa_bss *old, const struct wpa_scan_res *new, u32 ie) argument
563 const u8 *ie; local
584 const u8 *ie, *ie2; local
[all...]
/freebsd-9.3-release/contrib/wpa/src/ap/
H A Ddrv_callbacks.c37 const u8 *ie, size_t ielen)
59 ieee802_11_parse_elems(ie, ielen, &elems, 0);
61 ie = elems.wps_ie - 2;
65 ie = elems.rsn_ie - 2;
69 ie = elems.wpa_ie - 2;
73 ie = NULL;
90 if (ie == NULL || ielen == 0) {
102 if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
103 os_memcmp(ie
36 hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr, const u8 *ie, size_t ielen) argument
323 hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *ie, size_t ie_len) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DCompilation.cpp40 ie = TCArgs.end(); it != ie; ++it)
45 for (ActionList::iterator it = Actions.begin(), ie = Actions.end();
46 it != ie; ++it)
108 it = Files.begin(), ie = Files.end(); it != ie; ++it)
118 it = Files.begin(), ie = Files.end(); it != ie; ++it) {
208 for (JobList::const_iterator it = Jobs->begin(), ie = Jobs->end();
209 it != ie;
[all...]

Completed in 376 milliseconds

12345678