Home
last modified time | relevance | path

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

/system/bt/stack/sdp/
Dsdp_db.cc484 uint8_t* p_buff = in SDP_AddSequence() local
487 p = p_buff; in SDP_AddSequence()
516 if (p - p_buff > SDP_MAX_ATTR_LEN) { in SDP_AddSequence()
519 if (p_head == p_buff) { in SDP_AddSequence()
522 osi_free(p_buff); in SDP_AddSequence()
531 (uint32_t)(p - p_buff), p_buff); in SDP_AddSequence()
532 osi_free(p_buff); in SDP_AddSequence()
558 uint8_t* p_buff = in SDP_AddUuidSequence() local
561 p = p_buff; in SDP_AddUuidSequence()
568 if ((p - p_buff) > max_len) { in SDP_AddUuidSequence()
[all …]
/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.h525 uint8_t inst, char* p_buff);
/system/nfc/src/nfa/hci/
Dnfa_hci_utils.cc1314 char* p_buff) { in nfa_hciu_get_type_inst_names() argument
1317 xx = sprintf(p_buff, "Type: %s [0x%02x] ", nfa_hciu_type_2_str(type).c_str(), in nfa_hciu_get_type_inst_names()
1322 sprintf(&p_buff[xx], "Inst: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1326 sprintf(&p_buff[xx], "Evt: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1330 sprintf(&p_buff[xx], "Resp: %s [0x%02x] ", in nfa_hciu_get_type_inst_names()
1334 sprintf(&p_buff[xx], "Inst: %u ", inst); in nfa_hciu_get_type_inst_names()
1337 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()
469 uint8_t* p, uint8_t* p_buff, in nfa_ee_add_sys_code_route_to_ecb() argument
472 uint8_t num_tlv = *p_buff; in nfa_ee_add_sys_code_route_to_ecb()
497 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.cc461 NFC_HDR* p_buff; in rw_i93_send_to_upper() local
520 p_buff = (NFC_HDR*)GKI_getbuf((uint16_t)(length + NFC_HDR_SIZE)); in rw_i93_send_to_upper()
522 if (p_buff) { in rw_i93_send_to_upper()
523 p_buff->offset = 0; in rw_i93_send_to_upper()
524 p_buff->len = length; in rw_i93_send_to_upper()
526 memcpy((p_buff + 1), p, length); in rw_i93_send_to_upper()
530 rw_data.i93_data.p_data = p_buff; in rw_i93_send_to_upper()
/system/bt/stack/include/
Dbtm_api.h1869 extern tBTM_STATUS BTM_WriteEIR(BT_HDR* p_buff);
/system/bt/stack/btm/
Dbtm_inq.cc2163 tBTM_STATUS BTM_WriteEIR(BT_HDR* p_buff) { in BTM_WriteEIR() argument
2166 btsnd_hcic_write_ext_inquiry_response(p_buff, BTM_EIR_DEFAULT_FEC_REQUIRED); in BTM_WriteEIR()
2169 osi_free(p_buff); in BTM_WriteEIR()