HomeSort by relevance Sort by last modified time
    Searched defs:op_code (Results 1 - 22 of 22) sorted by null

  /system/nfc/src/nfc/nci/
nci_hrcv.c 46 uint8_t *pp, len, op_code; local
53 NCI_MSG_PRS_HDR1(pp, op_code);
54 NFC_TRACE_DEBUG1("nci_proc_core_rsp opcode:0x%x", op_code);
58 switch (op_code) {
87 NFC_TRACE_ERROR1("unknown opcode:0x%x", op_code);
105 uint8_t *pp, len, op_code; local
111 NCI_MSG_PRS_HDR1(pp, op_code);
112 NFC_TRACE_DEBUG1("nci_proc_core_ntf opcode:0x%x", op_code);
116 switch (op_code) {
138 NFC_TRACE_ERROR1("unknown opcode:0x%x", op_code);
154 uint8_t *pp, len, op_code; local
225 uint8_t *pp, len, op_code; local
302 uint8_t *pp, len, op_code; local
358 uint8_t *pp, len, op_code; local
434 uint8_t *pp, len, op_code; local
459 uint8_t op_code; local
489 uint8_t *pp, len, op_code; local
    [all...]
  /system/bt/stack/gatt/
gatt_auth.cc 98 uint8_t op_code; local
117 STREAM_TO_UINT8(op_code, p_orig);
118 gatt_server_handle_client_req(tcb, op_code, (uint16_t)(p_buf->len - 1),
gatt_cl.cc 79 uint8_t op_code = disc_type_to_att_opcode[p_clcb->op_subtype]; local
113 st = attp_send_cl_msg(*p_clcb->p_tcb, p_clcb, op_code, &cl_req);
135 uint8_t op_code = 0; local
142 op_code = GATT_REQ_READ_BY_TYPE;
156 op_code = GATT_REQ_READ;
166 op_code = GATT_REQ_READ_BLOB;
174 op_code = GATT_REQ_READ_BLOB;
180 op_code = GATT_REQ_READ_MULTI;
185 op_code = GATT_REQ_READ;
195 if (op_code != 0) rt = attp_send_cl_msg(tcb, p_clcb, op_code, &msg)
212 uint8_t op_code = (sec_act == GATT_SEC_SIGN_DATA) ? GATT_SIGN_CMD_WRITE local
1113 LOG(ERROR) << __func__ << ": Unknown opcode = " << std::hex << op_code; local
    [all...]
gatt_main.cc 945 uint8_t op_code, pseudo_op_code; local
960 << op_code; local
    [all...]
gatt_int.h 204 uint8_t op_code; member in struct:__anon113656
223 uint8_t op_code; member in struct:__anon113657
427 uint8_t op_code, tGATT_CL_MSG* p_msg);
428 extern BT_HDR* attp_build_sr_msg(tGATT_TCB& tcb, uint8_t op_code,
434 extern uint8_t* gatt_dbg_op_name(uint8_t op_code);
453 uint8_t op_code, uint16_t handle,
493 uint32_t trans_id, uint8_t op_code,
496 extern void gatt_server_handle_client_req(tGATT_TCB& p_tcb, uint8_t op_code,
499 uint8_t op_code, tGATTS_DATA* p_req_data);
500 extern uint32_t gatt_sr_enqueue_cmd(tGATT_TCB& tcb, uint8_t op_code,
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_pax_common.h 17 u8 op_code; member in struct:eap_pax_hdr
30 /* op_code: */
  /external/wpa_supplicant_8/src/eap_peer/
eap_wsc.c 365 const u8 *buf, size_t len, u8 op_code)
368 if (op_code != data->in_op_code) {
371 op_code, data->in_op_code);
392 u8 id, u8 flags, u8 op_code,
413 data->in_op_code = op_code;
432 u8 op_code, flags, id; local
450 op_code = *pos++;
471 op_code, flags, message_length);
474 if (op_code != WSC_FRAG_ACK) {
476 "in WAIT_FRAG_ACK state", op_code);
    [all...]
eap_mschapv2.c 32 u8 op_code; /* MSCHAPV2_OP_* */ member in struct:eap_mschapv2_hdr
174 ms->op_code = MSCHAPV2_OP_RESPONSE;
375 /* Note: Only op_code of the EAP-MSCHAPV2 header is included in success
386 wpabuf_put_u8(resp, MSCHAPV2_OP_SUCCESS); /* op_code */
548 ms->op_code = MSCHAPV2_OP_CHANGE_PASSWORD;
697 /* Note: Only op_code of the EAP-MSCHAPV2 header is included in failure
704 wpabuf_put_u8(resp, MSCHAPV2_OP_FAILURE); /* op_code */
819 switch (ms->op_code) {
830 ms->op_code);
  /external/wpa_supplicant_8/src/eap_server/
eap_server_wsc.c 291 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);
    [all...]
eap_server_mschapv2.c 18 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 != MSCHAPV2_OP_FAILURE)
    [all...]
  /system/nfc/halimpl/bcm2079x/hal/hal/
nfc_hal_nci.c 498 uint8_t mt, pbf, gid, op_code; local
524 NCI_MSG_PRS_HDR1(p, op_code);
540 if (op_code == NCI_MSG_HCI_NETWK) {
549 if (op_code == NCI_MSG_RF_INTF_ACTIVATED) {
566 if (op_code == NCI_MSG_CORE_CONN_CREATE) {
630 uint8_t mt, pbf, gid, op_code; local
638 NCI_MSG_PRS_HDR1(p, op_code);
642 if (op_code == NCI_MSG_CORE_CONN_CREATE) {
nfc_hal_dm.c 582 uint8_t mt, pbf, gid, op_code; local
596 NCI_MSG_PRS_HDR1(p, op_code);
607 if ((old_gid == gid) && (old_oid == op_code)) {
617 if (op_code == NCI_MSG_CORE_RESET) {
641 (*p_cback)((tNFC_HAL_NCI_EVT)(op_code), p_msg->len,
647 op_code |= NCI_NTF_BIT;
649 op_code |= NCI_RSP_BIT;
653 if (op_code == (NCI_RSP_BIT | NCI_MSG_GET_XTAL_INDEX_FROM_DH)) {
664 } else if ((op_code == NFC_VS_GET_BUILD_INFO_EVT) &&
694 } else if ((op_code == NFC_VS_GET_PATCH_VERSION_EVT) &
781 uint8_t mt, pbf, gid, op_code; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_upnp_web.c 457 enum wsc_op_code op_code; local
458 *reply = wps_get_msg(peer->wps, &op_code);
496 enum wsc_op_code op_code; local
563 *reply = wps_get_msg(peer->wps, &op_code);
    [all...]
wps_er.c 1011 enum wsc_op_code op_code)
1015 res = wps_process_msg(sta->wps, op_code, msg);
1017 struct wpabuf *next = wps_get_msg(sta->wps, &op_code);
1093 enum wsc_op_code op_code = WSC_MSG; local
1097 op_code = WSC_ACK;
1100 op_code = WSC_NACK;
1103 op_code = WSC_Done;
1107 wps_er_sta_process(sta, msg, op_code);
1747 enum wsc_op_code op_code; local
    [all...]
  /system/bt/bta/gatt/
bta_gattc_int.h 139 uint8_t op_code; member in struct:__anon112884
  /system/bt/stack/include/
mca_api.h 140 uint8_t op_code; /* The op (request/response) code */ member in struct:__anon113901
146 uint8_t op_code; /* The op (request/response) code */ member in struct:__anon113902
153 uint8_t op_code; /* The op (request/response) code */ member in struct:__anon113903
161 uint8_t op_code; /* The op (request/response) code */ member in struct:__anon113904
  /system/bt/stack/mcap/
mca_int.h 45 uint8_t op_code; /* the request/response opcode */ member in struct:__anon113955
46 uint8_t rsp_code; /* valid only if op_code is a response */
  /system/nfc/src/nfc/int/
rw_int.h 165 uint8_t op_code; /* Command sent */ member in struct:__anon115102
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
dwarf2.c 1550 unsigned char op_code, extended_op, adj_opcode; local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readdwarf.c 263 UChar op_code = ML_(cur_step_UChar)(data); local
264 if (0) VG_(printf)("dwarf2: ext OPC: %d\n", op_code);
266 switch (op_code) {
288 (Int)op_code);
296 (Int)op_code, (Addr)adr);
586 UChar op_code = ML_(cur_step_UChar)(&data); local
588 if (0) VG_(printf)("dwarf2: OPC: %d\n", op_code);
590 if (op_code >= info.li_opcode_base) {
591 op_code -= info.li_opcode_base;
592 Word adv = (op_code / info.li_line_range
    [all...]
  /hardware/broadcom/libbt/include/
uipc_msg.h 51 /* op_code */
117 /* op_code */
130 uint8_t op_code; member in struct:__anon41818
150 /* op_code */
173 uint8_t op_code; /* L2C_SYNC_TO_LITE_REQ */ member in struct:t_l2c_sync_to_lite_req
194 uint8_t op_code; /* L2C_SYNC_TO_LITE_RESP */ member in struct:t_l2c_sync_to_lite_resp
202 uint8_t op_code; /* L2C_REMOVE_TO_LITE_REQ */ member in struct:t_l2c_remove_to_lite_req
213 uint8_t op_code; member in union:t_l2c_sync_msg
227 /* op_code */
274 uint8_t op_code; member in struct:t_avdt_sync_info
283 uint8_t op_code; member in union:t_avdt_sync_msg
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
dwarf.c 450 unsigned char op_code; local
467 op_code = *data++;
469 printf (_(" Extended opcode %d: "), op_code);
471 switch (op_code)
600 if (op_code >= DW_LNE_lo_user
603 for op_code. */
604 /*&& op_code <= DW_LNE_hi_user*/)
3007 unsigned char op_code; local
3620 unsigned char op_code; local
    [all...]

Completed in 746 milliseconds