Searched refs:Recv (Results 1 - 3 of 3) sorted by relevance
/arkcompiler/toolchain/websocket/ |
H A D | network.cpp | 21 bool Recv(int32_t client, std::string& buffer, int32_t flags) in Recv() function 26 auto succeeded = Recv(client, buffer.data(), buffer.size(), flags); in Recv() 33 bool Recv(int32_t client, char* buf, size_t totalLen, int32_t flags) in Recv() function 40 LOGW("Recv payload failed, errno = %{public}d", errno); in Recv() 43 LOGE("Recv payload in while failed, len = %{public}ld, errno = %{public}d", static_cast<long>(len), errno); in Recv() 51 bool Recv(int32_t client, uint8_t* buf, size_t totalLen, int32_t flags) in Recv() function 53 return Recv(client, reinterpret_cast<char *>(buf), totalLen, flags); in Recv()
|
H A D | network.h | 23 bool Recv(int32_t client, std::string& buffer, int32_t flags); 25 bool Recv(int32_t client, char* buf, size_t totalLen, int32_t flags); 27 bool Recv(int32_t client, uint8_t* buf, size_t totalLen, int32_t flags);
|
H A D | websocket_base.cpp | 90 LOGE("ReadPayload: Recv payloadLen == 126 failed"); in ReadPayload() 97 LOGE("ReadPayload: Recv payloadLen == 127 failed"); in ReadPayload() 298 return Recv(connectionFd_, message, 0); in RecvUnderLock() 304 return Recv(connectionFd_, buf, totalLen, 0); in RecvUnderLock()
|
Completed in 3 milliseconds