Home
last modified time | relevance | path

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

/system/netd/include/
DNetdClient.h57 int resNetworkSend(unsigned netId, const uint8_t* msg, size_t msglen, uint32_t flags);
/system/bt/udrv/include/
Duipc.h116 const uint8_t* p_buf, uint16_t msglen);
/system/core/adb/
Dfile_sync_protocol.h74 uint32_t msglen; member
/system/netd/client/
DNetdClient.cpp430 extern "C" int resNetworkSend(unsigned netId, const uint8_t* msg, size_t msglen, uint32_t flags) { in resNetworkSend() argument
434 const size_t encodedLen = divCeil(msglen, 3) * 4 + 1; in resNetworkSend()
436 int enLen = b64_ntop(msg, msglen, encodedQuery.data(), encodedLen); in resNetworkSend()
/system/bt/udrv/ulinux/
Duipc.cc597 uint16_t msglen) { in UIPC_Send() argument
598 BTIF_TRACE_DEBUG("UIPC_Send : ch_id:%d %d bytes", ch_id, msglen); in UIPC_Send()
603 OSI_NO_INTR(ret = write(uipc.ch[ch_id].fd, p_buf, msglen)); in UIPC_Send()
/system/core/adb/daemon/
Dfile_sync_service.cpp304 msg.status.msglen = 0; in handle_send_file()
386 msg.status.msglen = 0; in handle_send_link()
/system/core/adb/client/
Dfile_sync_client.cpp502 std::vector<char> buf(msg.status.msglen + 1); in ReportCopyFailure()
503 if (!ReadFdExactly(fd, &buf[0], msg.status.msglen)) { in ReportCopyFailure()
508 buf[msg.status.msglen] = 0; in ReportCopyFailure()