Home
last modified time | relevance | path

Searched refs:op_code (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-12.1/contrib/wpa/src/eap_peer/
H A Deap_wsc.c374 op_code, data->in_op_code); in eap_wsc_process_cont()
395 u8 id, u8 flags, u8 op_code, in eap_wsc_process_fragment() argument
416 data->in_op_code = op_code; in eap_wsc_process_fragment()
435 u8 op_code, flags, id; in eap_wsc_process() local
453 op_code = *pos++; in eap_wsc_process()
477 if (op_code != WSC_FRAG_ACK) { in eap_wsc_process()
488 if (op_code != WSC_ACK && op_code != WSC_NACK && op_code != WSC_MSG && in eap_wsc_process()
489 op_code != WSC_Done && op_code != WSC_Start) { in eap_wsc_process()
491 op_code); in eap_wsc_process()
497 if (op_code != WSC_Start) { in eap_wsc_process()
[all …]
H A Deap_pax.c94 u8 id, u8 op_code, size_t plen) in eap_pax_alloc_resp() argument
105 pax->op_code = op_code; in eap_pax_alloc_resp()
357 req->op_code, req->flags, req->mac_id, req->dh_group_id, in eap_pax_process()
419 if (req->op_code == EAP_PAX_OP_STD_1) { in eap_pax_process()
442 switch (req->op_code) { in eap_pax_process()
451 "op_code %d", req->op_code); in eap_pax_process()
H A Deap_mschapv2.c32 u8 op_code; /* MSCHAPV2_OP_* */ member
172 ms->op_code = MSCHAPV2_OP_RESPONSE; in eap_mschapv2_challenge_reply()
546 ms->op_code = MSCHAPV2_OP_CHANGE_PASSWORD; in eap_mschapv2_change_password()
817 switch (ms->op_code) { in eap_mschapv2_process()
828 ms->op_code); in eap_mschapv2_process()
/freebsd-12.1/contrib/wpa/src/eap_server/
H A Deap_server_wsc.c291 const u8 *buf, size_t len, u8 op_code) in eap_wsc_process_cont() argument
294 if (op_code != data->in_op_code) { in eap_wsc_process_cont()
297 op_code, data->in_op_code); in eap_wsc_process_cont()
336 data->in_op_code = op_code; in eap_wsc_process_fragment()
354 u8 op_code, flags; in eap_wsc_process() local
373 op_code = *pos++; in eap_wsc_process()
392 op_code, flags, message_length); in eap_wsc_process()
395 if (op_code != WSC_FRAG_ACK) { in eap_wsc_process()
406 if (op_code != WSC_ACK && op_code != WSC_NACK && op_code != WSC_MSG && in eap_wsc_process()
407 op_code != WSC_Done) { in eap_wsc_process()
[all …]
H A Deap_server_mschapv2.c18 u8 op_code; /* MSCHAPV2_OP_* */ member
123 ms->op_code = MSCHAPV2_OP_CHALLENGE; in eap_mschapv2_build_challenge()
161 ms->op_code = MSCHAPV2_OP_SUCCESS; in eap_mschapv2_build_success_req()
204 ms->op_code = MSCHAPV2_OP_FAILURE; in eap_mschapv2_build_failure_req()
255 resp->op_code != MSCHAPV2_OP_RESPONSE) { in eap_mschapv2_check()
257 "ignore op %d", resp->op_code); in eap_mschapv2_check()
262 resp->op_code != MSCHAPV2_OP_SUCCESS && in eap_mschapv2_check()
263 resp->op_code != MSCHAPV2_OP_FAILURE) { in eap_mschapv2_check()
270 resp->op_code != MSCHAPV2_OP_FAILURE) { in eap_mschapv2_check()
272 "- ignore op %d", resp->op_code); in eap_mschapv2_check()
[all …]
H A Deap_server_pax.c98 pax->op_code = EAP_PAX_OP_STD_1; in eap_pax_build_std_1()
144 pax->op_code = EAP_PAX_OP_STD_3; in eap_pax_build_std_3()
219 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id, in eap_pax_check()
225 resp->op_code != EAP_PAX_OP_STD_2) { in eap_pax_check()
227 "ignore op %d", resp->op_code); in eap_pax_check()
232 resp->op_code != EAP_PAX_OP_ACK) { in eap_pax_check()
234 "ignore op %d", resp->op_code); in eap_pax_check()
238 if (resp->op_code != EAP_PAX_OP_STD_2 && in eap_pax_check()
239 resp->op_code != EAP_PAX_OP_ACK) { in eap_pax_check()
241 resp->op_code); in eap_pax_check()
[all …]
/freebsd-12.1/sys/cam/scsi/
H A Dscsi_cd.h140 u_int8_t op_code; member
151 u_int8_t op_code; member
165 u_int8_t op_code; member
178 u_int8_t op_code; member
188 u_int8_t op_code; member
198 u_int8_t op_code; member
208 u_int8_t op_code; member
218 u_int8_t op_code; member
231 u_int8_t op_code; member
258 u_int8_t op_code; member
H A Dscsi_cd.c2687 scsi_cmd->op_code = READ_TOC; in cdreadtoc()
2727 scsi_cmd->op_code = READ_SUBCHANNEL; in cdreadsubchannel()
2965 scsi_cmd->op_code = PLAY_10; in cdplay()
2974 scsi_cmd->op_code = PLAY_12; in cdplay()
3027 scsi_cmd->op_code = PLAY_MSF; in cdplaymsf()
3073 scsi_cmd->op_code = PLAY_TRACK; in cdplaytracks()
3115 scsi_cmd->op_code = PAUSE; in cdpause()
/freebsd-12.1/contrib/wpa/src/wps/
H A Dwps_enrollee.c460 *op_code = WSC_MSG; in wps_enrollee_get_msg()
464 *op_code = WSC_MSG; in wps_enrollee_get_msg()
468 *op_code = WSC_MSG; in wps_enrollee_get_msg()
472 *op_code = WSC_MSG; in wps_enrollee_get_msg()
477 *op_code = WSC_NACK; in wps_enrollee_get_msg()
481 *op_code = WSC_ACK; in wps_enrollee_get_msg()
489 *op_code = WSC_NACK; in wps_enrollee_get_msg()
493 *op_code = WSC_Done; in wps_enrollee_get_msg()
1491 op_code = WSC_ACK; in wps_enrollee_process_msg()
1493 op_code = WSC_NACK; in wps_enrollee_process_msg()
[all …]
H A Dwps_i.h197 enum wsc_op_code *op_code);
199 enum wsc_op_code op_code,
204 enum wsc_op_code *op_code);
206 enum wsc_op_code op_code,
H A Dwps.c202 enum wsc_op_code op_code, in wps_process_msg() argument
206 return wps_registrar_process_msg(wps, op_code, msg); in wps_process_msg()
208 return wps_enrollee_process_msg(wps, op_code, msg); in wps_process_msg()
221 struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code) in wps_get_msg() argument
224 return wps_registrar_get_msg(wps, op_code); in wps_get_msg()
226 return wps_enrollee_get_msg(wps, op_code); in wps_get_msg()
H A Dwps_er.c1010 enum wsc_op_code op_code) in wps_er_sta_process() argument
1092 enum wsc_op_code op_code = WSC_MSG; in wps_er_process_wlanevent_eap() local
1096 op_code = WSC_ACK; in wps_er_process_wlanevent_eap()
1099 op_code = WSC_NACK; in wps_er_process_wlanevent_eap()
1102 op_code = WSC_Done; in wps_er_process_wlanevent_eap()
1106 wps_er_sta_process(sta, msg, op_code); in wps_er_process_wlanevent_eap()
1746 enum wsc_op_code op_code; in wps_er_ap_process() local
1748 op_code = WSC_MSG; in wps_er_ap_process()
1752 op_code = WSC_ACK; in wps_er_ap_process()
1755 op_code = WSC_NACK; in wps_er_ap_process()
[all …]
H A Dwps_registrar.c2136 *op_code = WSC_ACK; in wps_registrar_get_msg()
2142 *op_code = WSC_MSG; in wps_registrar_get_msg()
2164 *op_code = WSC_MSG; in wps_registrar_get_msg()
2168 *op_code = WSC_MSG; in wps_registrar_get_msg()
2172 *op_code = WSC_MSG; in wps_registrar_get_msg()
2176 *op_code = WSC_MSG; in wps_registrar_get_msg()
2180 *op_code = WSC_MSG; in wps_registrar_get_msg()
2184 *op_code = WSC_ACK; in wps_registrar_get_msg()
2188 *op_code = WSC_NACK; in wps_registrar_get_msg()
3417 (op_code == WSC_MSG || op_code == WSC_Done || op_code == WSC_NACK)) in wps_registrar_process_msg()
[all …]
H A Dwps_upnp_web.c457 enum wsc_op_code op_code; in web_process_get_device_info() local
458 *reply = wps_get_msg(peer->wps, &op_code); in web_process_get_device_info()
496 enum wsc_op_code op_code; in web_process_put_message() local
563 *reply = wps_get_msg(peer->wps, &op_code); in web_process_put_message()
H A Dwps.h229 enum wsc_op_code op_code,
232 struct wpabuf * wps_get_msg(struct wps_data *wps, enum wsc_op_code *op_code);
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-spi4000.c101 uint32_t op_code : 2; /**< MDIO Op Code member
193 mdio.s.op_code = 1; in __cvmx_spi4000_mdio_write()
224 mdio.s.op_code = 2; in __cvmx_spi4000_mdio_read()
H A Dcvmx-nand.h382 uint64_t op_code : 4; member
H A Dcvmx-nand.c896 CVMX_NAND_LOG_PARAM("%s", cvmx_nand_opcode_labels[cmd.s.op_code]); in cvmx_nand_submit()
897 switch (cmd.s.op_code) in cvmx_nand_submit()
/freebsd-12.1/contrib/binutils/binutils/
H A Ddwarf.c226 unsigned char op_code; in process_extended_line_op() local
242 op_code = *data++; in process_extended_line_op()
244 printf (_(" Extended opcode %d: "), op_code); in process_extended_line_op()
246 switch (op_code) in process_extended_line_op()
1964 unsigned char op_code; in display_debug_lines() local
1969 op_code = *data++; in display_debug_lines()
1971 if (op_code >= info.li_opcode_base) in display_debug_lines()
1973 op_code -= info.li_opcode_base; in display_debug_lines()
1977 op_code, uladv, state_machine_regs.address); in display_debug_lines()
1983 else switch (op_code) in display_debug_lines()
[all …]
/freebsd-12.1/contrib/wpa/src/eap_common/
H A Deap_pax_common.h17 u8 op_code; member
/freebsd-12.1/contrib/binutils/bfd/
H A Ddwarf2.c978 unsigned char op_code, extended_op, adj_opcode; in decode_line_info() local
1158 op_code = read_1_byte (abfd, line_ptr); in decode_line_info()
1161 if (op_code >= lh.opcode_base) in decode_line_info()
1164 adj_opcode = op_code - lh.opcode_base; in decode_line_info()
1175 else switch (op_code) in decode_line_info()
1290 for (i = 0; i < lh.standard_opcode_lengths[op_code]; i++) in decode_line_info()
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_linux.cc1794 uint32_t op_code; in GetWriteFlag() local
1799 op_code = (faulty_instruction >> 26) & 0x3f; in GetWriteFlag()
1802 switch (op_code) { in GetWriteFlag()
1831 op_code = (faulty_instruction >> 19) & 0x3; in GetWriteFlag()
1832 switch (op_code) { in GetWriteFlag()
/freebsd-12.1/contrib/ntp/ntpd/
H A Drefclock_ripencc.c318 short rpt_0x58 (TSIPPKT *rpt, unsigned char *op_code, unsigned char *data_type,
2438 unsigned char *op_code, in rpt_0x58() argument
2461 *op_code = buf[0]; in rpt_0x58()
2464 if (*op_code == 2) { in rpt_0x58()
3926 op_code, data_type, sv_prn, in rpt_GPS_system_data() local
3953 if (rpt_0x58 (rpt, &op_code, &data_type, &sv_prn, in rpt_GPS_system_data()
3962 switch (op_code) in rpt_GPS_system_data()
/freebsd-12.1/sys/dev/qlxgbe/
H A Dql_hw.c2403 qla_tx_chksum(qla_host_t *ha, struct mbuf *mp, uint32_t *op_code, in qla_tx_chksum() argument
2416 *op_code = 0; in qla_tx_chksum()
2482 *op_code = opcode; in qla_tx_chksum()
2510 uint32_t op_code = 0; in ql_hw_send() local
2562 (void)qla_tx_chksum(ha, mp, &op_code, &tcp_hdr_off); in ql_hw_send()
2599 if (op_code) { in ql_hw_send()
2600 tx_cmd->flags_opcode = op_code; in ql_hw_send()
/freebsd-12.1/contrib/gdb/gdb/
H A Ddwarf2read.c5350 unsigned char op_code, extended_op, adj_opcode; in dwarf_decode_lines() local
5389 op_code = read_1_byte (abfd, line_ptr); in dwarf_decode_lines()
5392 if (op_code >= lh->opcode_base) in dwarf_decode_lines()
5394 adj_opcode = op_code - lh->opcode_base; in dwarf_decode_lines()
5403 else switch (op_code) in dwarf_decode_lines()
5502 for (i = 0; i < lh->standard_opcode_lengths[op_code]; i++) in dwarf_decode_lines()

12