Home
last modified time | relevance | path

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

/system/netd/include/
DNetdClient.h57 int resNetworkSend(unsigned netId, const uint8_t* msg, size_t msglen, uint32_t flags);
/system/bt/test/mock/
Dmock_udrv_ulinux_uipc.cc62 uint16_t msglen) { in UIPC_Send() argument
/system/bt/udrv/include/
Duipc.h116 const uint8_t* p_buf, uint16_t msglen);
/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/netd/client/
DNetdClient.cpp538 extern "C" int resNetworkSend(unsigned netId, const uint8_t* msg, size_t msglen, uint32_t flags) { in resNetworkSend() argument
542 const size_t encodedLen = divCeil(msglen, 3) * 4 + 1; in resNetworkSend()
544 int enLen = b64_ntop(msg, msglen, encodedQuery.data(), encodedLen); in resNetworkSend()