Home
last modified time | relevance | path

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

/system/bt/udrv/include/
Duipc.h95 BOOLEAN UIPC_Send(tUIPC_CH_ID ch_id, UINT16 msg_evt, UINT8 *p_buf, UINT16 msglen);
/system/core/adb/
Dfile_sync_service.h62 uint32_t msglen; member
Dfile_sync_service.cpp218 msg.status.msglen = 0; in handle_send_file()
295 msg.status.msglen = 0; in handle_send_link()
Dfile_sync_client.cpp288 std::vector<char> buf(msg.status.msglen + 1); in ReportCopyFailure()
289 if (!ReadFdExactly(fd, &buf[0], msg.status.msglen)) { in ReportCopyFailure()
294 buf[msg.status.msglen] = 0; in ReportCopyFailure()
/system/bt/udrv/ulinux/
Duipc.c693 UINT16 msglen) in UIPC_Send() argument
697 BTIF_TRACE_DEBUG("UIPC_Send : ch_id:%d %d bytes", ch_id, msglen); in UIPC_Send()
702 OSI_NO_INTR(ret = write(uipc_main.ch[ch_id].fd, p_buf, msglen)); in UIPC_Send()