Home
last modified time | relevance | path

Searched refs:p_hdr (Results 1 – 4 of 4) sorted by relevance

/system/nfc/src/gki/common/
Dgki_buffer.cc257 BUFFER_HDR_T* p_hdr; in GKI_getbuf() local
277 p_hdr = (BUFFER_HDR_T*)GKI_os_malloc(total_sz); in GKI_getbuf()
278 if (!p_hdr) { in GKI_getbuf()
287 memset(p_hdr, 0, total_sz); in GKI_getbuf()
290 *(uint32_t*)((uint8_t*)p_hdr + BUFFER_HDR_SIZE + size) = MAGIC_NO; in GKI_getbuf()
292 p_hdr->task_id = GKI_get_taskid(); in GKI_getbuf()
293 p_hdr->status = BUF_STATUS_UNLINKED; in GKI_getbuf()
294 p_hdr->p_next = nullptr; in GKI_getbuf()
295 p_hdr->Type = 0; in GKI_getbuf()
297 p_hdr->q_id = 0; in GKI_getbuf()
[all …]
/system/extras/ext4_utils/include/ext4_utils/
Dext4_extents.h61 struct ext4_extent_header* p_hdr; member
83 (le16_to_cpu((__path__)->p_hdr->eh_entries) < le16_to_cpu((__path__)->p_hdr->eh_max))
/system/nfc/src/nfa/p2p/
Dnfa_p2p_main.cc731 static bool nfa_p2p_evt_hdlr(NFC_HDR* p_hdr) { in nfa_p2p_evt_hdlr() argument
738 nfa_p2p_evt_code(p_hdr->event).c_str()); in nfa_p2p_evt_hdlr()
740 event = p_hdr->event & 0x00ff; in nfa_p2p_evt_hdlr()
744 tNFA_P2P_MSG* p_msg = (tNFA_P2P_MSG*)p_hdr; in nfa_p2p_evt_hdlr()
/system/bt/stack/test/rfcomm/
Dstack_rfcomm_test.cc48 std::string DumpBtHdrToString(BT_HDR* p_hdr) { in DumpBtHdrToString() argument
49 uint8_t* p_hdr_data = p_hdr->data + p_hdr->offset; in DumpBtHdrToString()
50 return DumpByteBufferToString(p_hdr_data, p_hdr->len); in DumpBtHdrToString()