Home
last modified time | relevance | path

Searched refs:p_buff (Results 1 – 5 of 5) sorted by relevance

/system/nfc/src/nfa/include/
Dnfa_snep_api.h140 uint8_t* p_buff; /* buffer for NDEF message */ member
146 uint8_t* p_buff; /* buffer to free */ member
152 uint8_t* p_buff; /* buffer for NDEF message */ member
Dnfa_hci_int.h529 uint8_t inst, char* p_buff,
/system/nfc/src/nfa/hci/
Dnfa_hci_utils.cc1327 char* p_buff, const uint8_t max_buff_size) { in nfa_hciu_get_type_inst_names() argument
1330 xx = snprintf(p_buff, max_buff_size, "Type: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1335 snprintf(&p_buff[xx], max_buff_size - xx, "Inst: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1340 snprintf(&p_buff[xx], max_buff_size - xx, "Evt: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1345 snprintf(&p_buff[xx], max_buff_size - xx, "Resp: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1350 snprintf(&p_buff[xx], max_buff_size - xx, "Inst: %u ", inst); in nfa_hciu_get_type_inst_names()
1353 return p_buff; in nfa_hciu_get_type_inst_names()
/system/nfc/src/nfa/ee/
Dnfa_ee_act.cc88 static void add_route_sys_code_tlv(uint8_t** p_buff, uint8_t* p_sys_code_cfg, in add_route_sys_code_tlv() argument
91 *(*p_buff)++ = NFC_ROUTE_TAG_SYSCODE | nfa_ee_cb.route_block_control; in add_route_sys_code_tlv()
92 *(*p_buff)++ = NFA_EE_SYSTEM_CODE_LEN + 2; in add_route_sys_code_tlv()
93 *(*p_buff)++ = sys_code_rt_loc; in add_route_sys_code_tlv()
94 *(*p_buff)++ = sys_code_pwr_cfg; in add_route_sys_code_tlv()
96 memcpy(*p_buff, p_sys_code_cfg, NFA_EE_SYSTEM_CODE_LEN); in add_route_sys_code_tlv()
97 *p_buff += NFA_EE_SYSTEM_CODE_LEN; in add_route_sys_code_tlv()
513 uint8_t* p, uint8_t* p_buff, in nfa_ee_add_sys_code_route_to_ecb() argument
516 uint8_t num_tlv = *p_buff; in nfa_ee_add_sys_code_route_to_ecb()
541 nfa_ee_check_set_routing(new_size, p_max_len, p_buff, p_cur_offset); in nfa_ee_add_sys_code_route_to_ecb()
[all …]
/system/nfc/src/nfc/tags/
Drw_i93.cc485 NFC_HDR* p_buff; in rw_i93_send_to_upper() local
553 p_buff = (NFC_HDR*)GKI_getbuf((uint16_t)(length + NFC_HDR_SIZE)); in rw_i93_send_to_upper()
555 if (p_buff) { in rw_i93_send_to_upper()
556 p_buff->offset = 0; in rw_i93_send_to_upper()
557 p_buff->len = length; in rw_i93_send_to_upper()
559 memcpy((p_buff + 1), p, length); in rw_i93_send_to_upper()
563 rw_data.i93_data.p_data = p_buff; in rw_i93_send_to_upper()