Searched defs:op_code (Results 1 - 13 of 13) sorted by relevance

/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dwps.c124 * @op_code: Message OP Code
134 enum wsc_op_code op_code,
138 return wps_registrar_process_msg(wps, op_code, msg);
140 return wps_enrollee_process_msg(wps, op_code, msg);
147 * @op_code: Buffer for returning message OP Code
153 struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code) argument
156 return wps_registrar_get_msg(wps, op_code);
158 return wps_enrollee_get_msg(wps, op_code);
133 wps_process_msg(struct wps_data *wps, enum wsc_op_code op_code, const struct wpabuf *msg) argument
H A Dwps_enrollee.c403 enum wsc_op_code *op_code)
410 *op_code = WSC_MSG;
414 *op_code = WSC_MSG;
418 *op_code = WSC_MSG;
422 *op_code = WSC_MSG;
427 *op_code = WSC_NACK;
431 *op_code = WSC_ACK;
439 *op_code = WSC_NACK;
443 *op_code = WSC_Done;
452 if (*op_code
402 wps_enrollee_get_msg(struct wps_data *wps, enum wsc_op_code *op_code) argument
1179 wps_enrollee_process_msg(struct wps_data *wps, enum wsc_op_code op_code, const struct wpabuf *msg) argument
[all...]
H A Dwps_registrar.c1444 enum wsc_op_code *op_code)
1469 *op_code = WSC_ACK;
1472 *op_code = WSC_NACK;
1475 *op_code = WSC_MSG;
1497 *op_code = WSC_MSG;
1501 *op_code = WSC_MSG;
1505 *op_code = WSC_MSG;
1509 *op_code = WSC_MSG;
1513 *op_code = WSC_MSG;
1517 *op_code
1443 wps_registrar_get_msg(struct wps_data *wps, enum wsc_op_code *op_code) argument
2507 wps_registrar_process_msg(struct wps_data *wps, enum wsc_op_code op_code, const struct wpabuf *msg) argument
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
H A Deap_pax_common.h23 u8 op_code; member in struct:eap_pax_hdr
36 /* op_code: */
/external/wpa_supplicant/
H A Deap_pax.c111 u16 resp_len, u8 op_code)
122 resp->op_code = op_code;
370 wpa_printf(MSG_DEBUG, "EAP-PAX: received frame: op_code 0x%x "
373 req->op_code, req->flags, req->mac_id, req->dh_group_id,
435 if (req->op_code == EAP_PAX_OP_STD_1) {
456 switch (req->op_code) {
467 "op_code %d", req->op_code);
110 eap_pax_alloc_resp(const struct eap_pax_hdr *req, u16 resp_len, u8 op_code) argument
H A Deap_pax_common.h27 u8 op_code; member in struct:eap_pax_hdr
40 /* op_code: */
H A Deap_mschapv2.c39 u8 op_code; /* MSCHAPV2_OP_* */ member in struct:eap_mschapv2_hdr
250 ms->op_code = MSCHAPV2_OP_RESPONSE;
434 /* Note: Only op_code of the EAP-MSCHAPV2 header is included in success
446 ms->op_code = MSCHAPV2_OP_SUCCESS;
597 ms->op_code = MSCHAPV2_OP_CHANGE_PASSWORD;
718 /* Note: Only op_code of the EAP-MSCHAPV2 header is included in failure
726 ms->op_code = MSCHAPV2_OP_FAILURE;
849 switch (ms->op_code) {
863 ms->op_code);
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Deap_pax.c101 u8 id, u8 op_code, size_t plen)
112 pax->op_code = op_code;
351 wpa_printf(MSG_DEBUG, "EAP-PAX: received frame: op_code 0x%x "
354 req->op_code, req->flags, req->mac_id, req->dh_group_id,
416 if (req->op_code == EAP_PAX_OP_STD_1) {
439 switch (req->op_code) {
448 "op_code %d", req->op_code);
100 eap_pax_alloc_resp(const struct eap_pax_hdr *req, u8 id, u8 op_code, size_t plen) argument
H A Deap_wsc.c234 const u8 *buf, size_t len, u8 op_code)
237 if (op_code != data->in_op_code) {
240 op_code, data->in_op_code);
261 u8 id, u8 flags, u8 op_code,
282 data->in_op_code = op_code;
301 u8 op_code, flags, id; local
318 op_code = *pos++;
339 op_code, flags, message_length);
342 if (op_code != WSC_FRAG_ACK) {
344 "in WAIT_FRAG_ACK state", op_code);
233 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
259 eap_wsc_process_fragment(struct eap_wsc_data *data, struct eap_method_ret *ret, u8 id, u8 flags, u8 op_code, u16 message_length, const u8 *buf, size_t len) argument
[all...]
H A Deap_mschapv2.c37 u8 op_code; /* MSCHAPV2_OP_* */ member in struct:eap_mschapv2_hdr
179 ms->op_code = MSCHAPV2_OP_RESPONSE;
368 /* Note: Only op_code of the EAP-MSCHAPV2 header is included in success
379 wpabuf_put_u8(resp, MSCHAPV2_OP_SUCCESS); /* op_code */
529 ms->op_code = MSCHAPV2_OP_CHANGE_PASSWORD;
673 /* Note: Only op_code of the EAP-MSCHAPV2 header is included in failure
680 wpabuf_put_u8(resp, MSCHAPV2_OP_FAILURE); /* op_code */
795 switch (ms->op_code) {
806 ms->op_code);
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
H A Deap_wsc.c277 const u8 *buf, size_t len, u8 op_code)
280 if (op_code != data->in_op_code) {
283 op_code, data->in_op_code);
304 u8 flags, u8 op_code, u16 message_length,
322 data->in_op_code = op_code;
340 u8 op_code, flags; local
359 op_code = *pos++;
378 op_code, flags, message_length);
381 if (op_code != WSC_FRAG_ACK) {
383 "in WAIT_FRAG_ACK state", op_code);
276 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
303 eap_wsc_process_fragment(struct eap_wsc_data *data, u8 flags, u8 op_code, u16 message_length, const u8 *buf, size_t len) argument
[all...]
H A Deap_mschapv2.c23 u8 op_code; /* MSCHAPV2_OP_* */ member in struct:eap_mschapv2_hdr
130 ms->op_code = MSCHAPV2_OP_CHALLENGE;
168 ms->op_code = MSCHAPV2_OP_SUCCESS;
211 ms->op_code = MSCHAPV2_OP_FAILURE;
262 resp->op_code != MSCHAPV2_OP_RESPONSE) {
264 "ignore op %d", resp->op_code);
269 resp->op_code != MSCHAPV2_OP_SUCCESS &&
270 resp->op_code != MSCHAPV2_OP_FAILURE) {
272 "Failure - ignore op %d", resp->op_code);
277 resp->op_code !
[all...]
/external/elfcopy/
H A Ddwarf.c242 unsigned char op_code; local
258 op_code = *data++;
260 printf (_(" Extended opcode %d: "), op_code);
262 switch (op_code)
1993 unsigned char op_code; local
1998 op_code = *data++;
2000 if (op_code >= info.li_opcode_base)
2002 op_code -= info.li_opcode_base;
2003 uladv = (op_code / info.li_line_range) * info.li_min_insn_length;
2006 op_code, ulad
[all...]

Completed in 142 milliseconds