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

123456789

/freebsd-10.0-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-10.0-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-10.0-release/contrib/ipfilter/lib/
H A Dinterror.c526 ipf_error_entry_t *ie; local
532 ie = ipf_errors + l + step;
533 if (ie->iee_number == errnum)
534 return ie;
536 if (ie->iee_number > errnum)
552 ipf_error_entry_t *ie; local
557 ie = find_error(errnum);
558 if (ie != NULL)
559 return ie->iee_text;
573 ipf_error_entry_t *ie; local
[all...]
/freebsd-10.0-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-10.0-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
1106 struct intr_event *ie; local
1137 struct intr_event *ie = ih->ih_event; local
1188 struct intr_event *ie; local
1222 intr_event_execute_handlers(struct proc *p, struct intr_event *ie) argument
1270 ithread_execute_handlers(struct proc *p, struct intr_event *ie) argument
1318 struct intr_event *ie; local
1401 intr_event_handle(struct intr_event *ie, struct trapframe *frame) argument
1496 struct intr_event *ie; local
1597 intr_filter_loop(struct intr_event *ie, struct trapframe *frame, struct intr_thread **ithd) argument
1661 intr_event_handle(struct intr_event *ie, struct trapframe *frame) argument
1798 db_dump_intr_event(struct intr_event *ie, int handlers) argument
1849 struct intr_event *ie; local
[all...]
/freebsd-10.0-release/contrib/wpa/src/rsn_supp/
H A Dwpa_ie.c256 * @ie: Pointer to parsed IE data
260 struct wpa_eapol_ie_parse *ie)
269 ie->wpa_ie = pos;
270 ie->wpa_ie_len = pos[1] + 2;
272 ie->wpa_ie, ie->wpa_ie_len);
279 ie->pmkid = pos + 2 + RSN_SELECTOR_LEN;
287 ie->gtk = pos + 2 + RSN_SELECTOR_LEN;
288 ie->gtk_len = pos[1] - RSN_SELECTOR_LEN;
296 ie
259 wpa_parse_generic(const u8 *pos, const u8 *end, struct wpa_eapol_ie_parse *ie) argument
363 wpa_supplicant_parse_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie) argument
[all...]
/freebsd-10.0-release/contrib/wpa/src/wps/
H A Dwps.c398 struct wpabuf *ie; local
403 ie = wpabuf_alloc(100);
404 if (ie == NULL)
407 wpabuf_put_u8(ie, WLAN_EID_VENDOR_SPECIFIC);
408 len = wpabuf_put(ie, 1);
409 wpabuf_put_be32(ie, WPS_DEV_OUI_WFA);
411 if (wps_build_version(ie) ||
412 wps_build_req_type(ie, req_type) ||
413 wps_build_wfa_ext(ie, 0, NULL, 0)) {
414 wpabuf_free(ie);
432 struct wpabuf *ie; local
478 struct wpabuf *ie; local
[all...]
/freebsd-10.0-release/contrib/wpa/wpa_supplicant/
H A Dwifi_display.c38 struct wpabuf *ie, *buf; local
127 ie = wifi_display_encaps(buf);
128 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for Beacon", ie);
129 p2p_set_wfd_ie_beacon(global->p2p, ie);
131 ie = wifi_display_encaps(buf);
133 ie);
134 p2p_set_wfd_ie_assoc_req(global->p2p, ie);
136 ie = wifi_display_encaps(buf);
137 wpa_hexdump_buf(MSG_DEBUG, "WFD: WFD IE for GO Negotiation", ie);
138 p2p_set_wfd_ie_go_neg(global->p2p, ie);
[all...]
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DJob.cpp29 for (iterator it = begin(), ie = end(); it != ie; ++it)
H A DArgList.cpp49 for (iterator it = begin(), ie = end(); it != ie; ) {
52 ie = end();
61 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
69 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
81 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
95 for (const_iterator it = begin(), ie
[all...]
H A DCompilation.cpp40 ie = TCArgs.end(); it != ie; ++it)
45 for (ActionList::iterator it = Actions.begin(), ie = Actions.end();
46 it != ie; ++it)
77 ie = C->getArguments().end(); it != ie; ++it) {
98 it = Jobs->begin(), ie = Jobs->end(); it != ie; ++it)
157 ie = C->getArguments().end(); it != ie;
[all...]
/freebsd-10.0-release/contrib/unbound/iterator/
H A Diter_scrub.h62 * @param ie: iterator module environment data.
67 struct module_env* env, struct iter_env* ie);
/freebsd-10.0-release/sys/modules/ie/
H A DMakefile4 .PATH: ${.CURDIR}/../../dev/ie
/freebsd-10.0-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-10.0-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-10.0-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-10.0-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...]

Completed in 135 milliseconds

123456789