Searched refs:op_code (Results 1 - 25 of 77) sorted by relevance

1234

/external/libnfc-nci/src/nfc/nci/
H A Dnci_hrcv.c49 UINT8 *pp, len, op_code; local
56 NCI_MSG_PRS_HDR1 (pp, op_code);
57 NFC_TRACE_DEBUG1 ("nci_proc_core_rsp opcode:0x%x", op_code);
61 switch (op_code)
89 NFC_TRACE_ERROR1 ("unknown opcode:0x%x", op_code);
108 UINT8 *pp, len, op_code; local
114 NCI_MSG_PRS_HDR1 (pp, op_code);
115 NFC_TRACE_DEBUG1 ("nci_proc_core_ntf opcode:0x%x", op_code);
119 switch (op_code)
142 NFC_TRACE_ERROR1 ("unknown opcode:0x%x", op_code);
160 UINT8 *pp, len, op_code; local
226 UINT8 *pp, len, op_code; local
294 UINT8 *pp, len, op_code; local
354 UINT8 *pp, len, op_code; local
437 UINT8 *pp, len, op_code; local
464 UINT8 *pp, len, op_code; local
[all...]
/external/bluetooth/bluedroid/stack/gatt/
H A Datt_protocol.c46 BT_HDR *attp_build_mtu_cmd(UINT8 op_code, UINT16 rx_mtu) argument
55 UINT8_TO_STREAM (p, op_code);
72 BT_HDR *attp_build_exec_write_cmd (UINT8 op_code, UINT8 flag) argument
84 UINT8_TO_STREAM (p, op_code);
86 if (op_code == GATT_REQ_EXEC_WRITE)
136 BT_HDR *attp_build_browse_cmd(UINT8 op_code, UINT16 s_hdl, UINT16 e_hdl, tBT_UUID uuid) argument
148 UINT8_TO_STREAM (p, op_code);
234 BT_HDR *attp_build_handle_cmd(UINT8 op_code, UINT16 handle, UINT16 offset) argument
245 UINT8_TO_STREAM (p, op_code);
251 if (op_code
270 attp_build_opcode_cmd(UINT8 op_code) argument
295 attp_build_value_cmd(UINT16 payload_size, UINT8 op_code, UINT16 handle, UINT16 offset, UINT16 len, UINT8 *p_data) argument
386 attp_build_sr_msg(tGATT_TCB *p_tcb, UINT8 op_code, tGATT_SR_MSG *p_msg) argument
533 attp_send_cl_msg(tGATT_TCB *p_tcb, UINT16 clcb_idx, UINT8 op_code, tGATT_CL_MSG *p_msg) argument
[all...]
H A Dgatt_sr.c46 UINT32 gatt_sr_enqueue_cmd (tGATT_TCB *p_tcb, UINT8 op_code, UINT16 handle) argument
51 if ( (p_cmd->op_code == 0) ||
52 (op_code == GATT_HANDLE_VALUE_CONF)) /* no pending request */
54 if (op_code == GATT_CMD_WRITE ||
55 op_code == GATT_SIGN_CMD_WRITE ||
56 op_code == GATT_REQ_MTU ||
57 op_code == GATT_HANDLE_VALUE_CONF)
64 p_cmd->op_code = op_code;
86 return(p_tcb->sr_cmd.op_code
261 gatt_sr_process_app_rsp(tGATT_TCB *p_tcb, tGATT_IF gatt_if, UINT32 trans_id, UINT8 op_code, tGATT_STATUS status, tGATTS_RSP *p_msg) argument
331 gatt_process_exec_write_req(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
396 gatt_process_read_multi_req(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
525 gatt_build_primary_service_rsp(BT_HDR *p_msg, tGATT_TCB *p_tcb, UINT8 op_code, UINT16 s_hdl, UINT16 e_hdl, UINT8 *p_data, tBT_UUID value) argument
699 gatts_validate_packet_format(UINT8 op_code, UINT16 *p_len, UINT8 **p_data, tBT_UUID *p_uuid_filter, UINT16 *p_s_hdl, UINT16 *p_e_hdl) argument
763 gatts_process_primary_service_req(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
834 gatts_process_find_info(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
975 gatts_process_read_by_type_req(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
1091 gatts_process_write_req(tGATT_TCB *p_tcb, UINT8 i_rcb, UINT16 handle, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
1180 gatts_process_read_req(tGATT_TCB *p_tcb, tGATT_SR_REG *p_rcb, UINT8 op_code, UINT16 handle, UINT16 len, UINT8 *p_data) argument
1250 gatts_process_attribute_req(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
1411 gatts_process_value_conf(tGATT_TCB *p_tcb, UINT8 op_code) argument
1457 gatt_server_handle_client_req(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
[all...]
H A Dgatt_cl.c82 UINT8 op_code = disc_type_to_att_opcode[p_clcb->op_subtype]; local
116 st = attp_send_cl_msg(p_clcb->p_tcb, p_clcb->clcb_idx, op_code, &cl_req);
141 UINT8 op_code = 0; local
149 op_code = GATT_REQ_READ_BY_TYPE;
165 op_code = GATT_REQ_READ;
177 op_code = GATT_REQ_READ_BLOB;
185 op_code = GATT_REQ_READ_BLOB;
191 op_code = GATT_REQ_READ_MULTI;
196 op_code = GATT_REQ_READ;
206 if (op_code !
227 UINT8 rt = GATT_SUCCESS, op_code = 0; local
458 gatt_process_read_info_rsp(tGATT_TCB *p_tcb, tGATT_CLCB *p_clcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
557 gatt_process_error_rsp(tGATT_TCB *p_tcb, tGATT_CLCB *p_clcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
610 gatt_process_prep_write_rsp(tGATT_TCB *p_tcb, tGATT_CLCB *p_clcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
658 gatt_process_notification(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
744 gatt_process_read_by_type_rsp(tGATT_TCB *p_tcb, tGATT_CLCB *p_clcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
946 gatt_process_read_rsp(tGATT_TCB *p_tcb, tGATT_CLCB *p_clcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
1161 gatt_client_handle_server_rsp(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, UINT8 *p_data) argument
[all...]
H A Dgatt_db.c47 static tGATT_STATUS gatts_send_app_read_request(tGATT_TCB *p_tcb, UINT8 op_code,
328 UINT8 op_code,
384 status = gatts_send_app_read_request(p_tcb, op_code, p_attr->handle, 0, trans_id);
640 UINT8 op_code,
661 (BOOLEAN)(op_code == GATT_REQ_READ_BLOB),
666 status = gatts_send_app_read_request(p_tcb, op_code, p_attr->handle, offset, trans_id);
731 ** op_code:op code of this write.
742 tGATT_STATUS gatts_write_attr_perm_check (tGATT_SVC_DB *p_db, UINT8 op_code, argument
752 GATT_TRACE_DEBUG( "gatts_write_attr_perm_check op_code=0x%0x handle=0x%04x offset=%d len=%d sec_flag=0x%0x key_size=%d",
753 op_code, handl
326 gatts_db_read_attr_value_by_type(tGATT_TCB *p_tcb, tGATT_SVC_DB *p_db, UINT8 op_code, BT_HDR *p_rsp, UINT16 s_handle, UINT16 e_handle, tBT_UUID type, UINT16 *p_len, tGATT_SEC_FLAG sec_flag, UINT8 key_size, UINT32 trans_id, UINT16 *p_cur_handle) argument
638 gatts_read_attr_value_by_handle(tGATT_TCB *p_tcb, tGATT_SVC_DB *p_db, UINT8 op_code, UINT16 handle, UINT16 offset, UINT8 *p_value, UINT16 *p_len, UINT16 mtu, tGATT_SEC_FLAG sec_flag, UINT8 key_size, UINT32 trans_id) argument
1140 gatts_send_app_read_request(tGATT_TCB *p_tcb, UINT8 op_code, UINT16 handle, UINT16 offset, UINT32 trans_id) argument
[all...]
H A Dgatt_int.h268 UINT8 op_code; member in struct:__anon1286
289 UINT8 op_code; member in struct:__anon1287
574 extern tGATT_STATUS attp_send_cl_msg (tGATT_TCB *p_tcb, UINT16 clcb_idx, UINT8 op_code, tGATT_CL_MSG *p_msg);
575 extern BT_HDR *attp_build_sr_msg(tGATT_TCB *p_tcb, UINT8 op_code, tGATT_SR_MSG *p_msg);
580 extern UINT8 * gatt_dbg_op_name(UINT8 op_code);
592 extern tGATT_STATUS gatt_send_error_rsp(tGATT_TCB *p_tcb, UINT8 err_code, UINT8 op_code, UINT16 handle, BOOLEAN deq);
637 extern tGATT_STATUS gatt_sr_process_app_rsp (tGATT_TCB *p_tcb, tGATT_IF gatt_if, UINT32 trans_id, UINT8 op_code, tGATT_STATUS status, tGATTS_RSP *p_msg);
638 extern void gatt_server_handle_client_req (tGATT_TCB *p_tcb, UINT8 op_code,
641 UINT8 op_code, tGATTS_DATA *p_req_data);
642 extern UINT32 gatt_sr_enqueue_cmd (tGATT_TCB *p_tcb, UINT8 op_code, UINT1
[all...]
/external/bluetooth/bluedroid/stack/mcap/
H A Dmca_cact.c104 MCA_TRACE_DEBUG ("mca_ccb_snd_req cong=%d req=%d", p_ccb->cong, p_msg->op_code);
106 if ((p_ccb->status == MCA_CCB_STAT_PENDING) && (p_msg->op_code == MCA_OP_MDL_ABORT_REQ))
129 *p++ = p_msg->op_code;
131 if (p_msg->op_code == MCA_OP_MDL_CREATE_REQ)
170 MCA_TRACE_DEBUG ("mca_ccb_snd_rsp cong=%d req=%d", p_ccb->cong, p_msg->op_code);
177 *p++ = p_msg->op_code;
180 if (p_msg->op_code == MCA_OP_MDL_CREATE_RSP)
185 else if (p_msg->op_code == MCA_OP_MDL_RECONNECT_RSP)
276 evt_data.hdr.op_code = *p++;
278 reject_opcode = evt_data.hdr.op_code
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_wsc.c291 const u8 *buf, size_t len, u8 op_code)
294 if (op_code != data->in_op_code) {
297 op_code, data->in_op_code);
318 u8 flags, u8 op_code, u16 message_length,
336 data->in_op_code = op_code;
354 u8 op_code, flags; local
373 op_code = *pos++;
392 op_code, flags, message_length);
395 if (op_code != WSC_FRAG_ACK) {
397 "in WAIT_FRAG_ACK state", op_code);
290 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
317 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_server_mschapv2.c18 u8 op_code; /* MSCHAPV2_OP_* */ member in struct:eap_mschapv2_hdr
124 ms->op_code = MSCHAPV2_OP_CHALLENGE;
162 ms->op_code = MSCHAPV2_OP_SUCCESS;
205 ms->op_code = MSCHAPV2_OP_FAILURE;
256 resp->op_code != MSCHAPV2_OP_RESPONSE) {
258 "ignore op %d", resp->op_code);
263 resp->op_code != MSCHAPV2_OP_SUCCESS &&
264 resp->op_code != MSCHAPV2_OP_FAILURE) {
266 "Failure - ignore op %d", resp->op_code);
271 resp->op_code !
[all...]
H A Deap_server_pax.c97 pax->op_code = EAP_PAX_OP_STD_1;
138 pax->op_code = EAP_PAX_OP_STD_3;
201 wpa_printf(MSG_DEBUG, "EAP-PAX: received frame: op_code 0x%x "
204 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id,
210 resp->op_code != EAP_PAX_OP_STD_2) {
212 "ignore op %d", resp->op_code);
217 resp->op_code != EAP_PAX_OP_ACK) {
219 "ignore op %d", resp->op_code);
223 if (resp->op_code != EAP_PAX_OP_STD_2 &&
224 resp->op_code !
[all...]
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_wsc.c291 const u8 *buf, size_t len, u8 op_code)
294 if (op_code != data->in_op_code) {
297 op_code, data->in_op_code);
318 u8 flags, u8 op_code, u16 message_length,
336 data->in_op_code = op_code;
354 u8 op_code, flags; local
373 op_code = *pos++;
392 op_code, flags, message_length);
395 if (op_code != WSC_FRAG_ACK) {
397 "in WAIT_FRAG_ACK state", op_code);
290 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
317 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_server_mschapv2.c18 u8 op_code; /* MSCHAPV2_OP_* */ member in struct:eap_mschapv2_hdr
124 ms->op_code = MSCHAPV2_OP_CHALLENGE;
162 ms->op_code = MSCHAPV2_OP_SUCCESS;
205 ms->op_code = MSCHAPV2_OP_FAILURE;
256 resp->op_code != MSCHAPV2_OP_RESPONSE) {
258 "ignore op %d", resp->op_code);
263 resp->op_code != MSCHAPV2_OP_SUCCESS &&
264 resp->op_code != MSCHAPV2_OP_FAILURE) {
266 "Failure - ignore op %d", resp->op_code);
271 resp->op_code !
[all...]
H A Deap_server_pax.c97 pax->op_code = EAP_PAX_OP_STD_1;
138 pax->op_code = EAP_PAX_OP_STD_3;
201 wpa_printf(MSG_DEBUG, "EAP-PAX: received frame: op_code 0x%x "
204 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id,
210 resp->op_code != EAP_PAX_OP_STD_2) {
212 "ignore op %d", resp->op_code);
217 resp->op_code != EAP_PAX_OP_ACK) {
219 "ignore op %d", resp->op_code);
223 if (resp->op_code != EAP_PAX_OP_STD_2 &&
224 resp->op_code !
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_wsc.c291 const u8 *buf, size_t len, u8 op_code)
294 if (op_code != data->in_op_code) {
297 op_code, data->in_op_code);
318 u8 flags, u8 op_code, u16 message_length,
336 data->in_op_code = op_code;
354 u8 op_code, flags; local
373 op_code = *pos++;
392 op_code, flags, message_length);
395 if (op_code != WSC_FRAG_ACK) {
397 "in WAIT_FRAG_ACK state", op_code);
290 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
317 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_server_mschapv2.c18 u8 op_code; /* MSCHAPV2_OP_* */ member in struct:eap_mschapv2_hdr
124 ms->op_code = MSCHAPV2_OP_CHALLENGE;
162 ms->op_code = MSCHAPV2_OP_SUCCESS;
205 ms->op_code = MSCHAPV2_OP_FAILURE;
256 resp->op_code != MSCHAPV2_OP_RESPONSE) {
258 "ignore op %d", resp->op_code);
263 resp->op_code != MSCHAPV2_OP_SUCCESS &&
264 resp->op_code != MSCHAPV2_OP_FAILURE) {
266 "Failure - ignore op %d", resp->op_code);
271 resp->op_code !
[all...]
H A Deap_server_pax.c97 pax->op_code = EAP_PAX_OP_STD_1;
138 pax->op_code = EAP_PAX_OP_STD_3;
201 wpa_printf(MSG_DEBUG, "EAP-PAX: received frame: op_code 0x%x "
204 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id,
210 resp->op_code != EAP_PAX_OP_STD_2) {
212 "ignore op %d", resp->op_code);
217 resp->op_code != EAP_PAX_OP_ACK) {
219 "ignore op %d", resp->op_code);
223 if (resp->op_code != EAP_PAX_OP_STD_2 &&
224 resp->op_code !
[all...]
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_wsc.c369 const u8 *buf, size_t len, u8 op_code)
372 if (op_code != data->in_op_code) {
375 op_code, data->in_op_code);
396 u8 id, u8 flags, u8 op_code,
417 data->in_op_code = op_code;
436 u8 op_code, flags, id; local
454 op_code = *pos++;
475 op_code, flags, message_length);
478 if (op_code != WSC_FRAG_ACK) {
480 "in WAIT_FRAG_ACK state", op_code);
368 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
394 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...]
/external/wpa_supplicant_8/src/eap_peer/
H A Deap_wsc.c369 const u8 *buf, size_t len, u8 op_code)
372 if (op_code != data->in_op_code) {
375 op_code, data->in_op_code);
396 u8 id, u8 flags, u8 op_code,
417 data->in_op_code = op_code;
436 u8 op_code, flags, id; local
454 op_code = *pos++;
475 op_code, flags, message_length);
478 if (op_code != WSC_FRAG_ACK) {
480 "in WAIT_FRAG_ACK state", op_code);
368 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
394 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...]
/external/wpa_supplicant_8/wpa_supplicant/src/eap_peer/
H A Deap_wsc.c369 const u8 *buf, size_t len, u8 op_code)
372 if (op_code != data->in_op_code) {
375 op_code, data->in_op_code);
396 u8 id, u8 flags, u8 op_code,
417 data->in_op_code = op_code;
436 u8 op_code, flags, id; local
454 op_code = *pos++;
475 op_code, flags, message_length);
478 if (op_code != WSC_FRAG_ACK) {
480 "in WAIT_FRAG_ACK state", op_code);
368 eap_wsc_process_cont(struct eap_wsc_data *data, const u8 *buf, size_t len, u8 op_code) argument
394 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...]
/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler.cc32 void WriteOpCode(uint8 op_code) { WriteUint8(op_code); } argument
105 target->WriteOpCode(instruction.op_code);
166 Instruction() : op_code(jtl::END_OF_SENTENCE) {}
168 jtl_foundation::OpCodes op_code,
170 : name(name), op_code(op_code), argument_types(argument_types) {}
173 jtl::OpCodes op_code; member in struct:__anon6002::InstructionSet::Instruction
167 Instruction(const char* name, jtl_foundation::OpCodes op_code, const std::vector<ArgumentType>& argument_types) argument
/external/bluetooth/bluedroid/stack/include/
H A Dmca_api.h130 UINT8 op_code; /* The op (request/response) code */ member in struct:__anon1574
136 UINT8 op_code; /* The op (request/response) code */ member in struct:__anon1575
143 UINT8 op_code; /* The op (request/response) code */ member in struct:__anon1576
151 UINT8 op_code; /* The op (request/response) code */ member in struct:__anon1577
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_pax_common.h17 u8 op_code; member in struct:eap_pax_hdr
30 /* op_code: */
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_i.h194 enum wsc_op_code *op_code);
196 enum wsc_op_code op_code,
201 enum wsc_op_code *op_code);
203 enum wsc_op_code op_code,
/external/wpa_supplicant_8/src/eap_common/
H A Deap_pax_common.h17 u8 op_code; member in struct:eap_pax_hdr
30 /* op_code: */
/external/wpa_supplicant_8/src/wps/
H A Dwps_i.h194 enum wsc_op_code *op_code);
196 enum wsc_op_code op_code,
201 enum wsc_op_code *op_code);
203 enum wsc_op_code op_code,

Completed in 3610 milliseconds

1234