Home
last modified time | relevance | path

Searched refs:pData (Results 1 – 2 of 2) sorted by relevance

/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/IntegrationLibrary/libs/socket-cpp/Socket/
DTCPClient.cpp285 bool CTCPClient::Send(const char* pData, const size_t uSize) const in Send() argument
287 if (!pData || !uSize) in Send()
304 nSent = send(m_ConnectSocket, pData + total, uSize - total, flags); in Send()
333 int CTCPClient::Receive(char* pData, const size_t uSize, bool bReadFully /*= true*/) const in Receive() argument
335 if (!pData || !uSize) in Receive()
353 int nRecvd = recv(m_ConnectSocket, pData + total, uSize - total, 0); in Receive()
DTCPClient.h53 bool Send(const char* pData, const size_t uSize) const; // send data to a TCP server
56 int Receive(char* pData, const size_t uSize, bool bReadFully = true) const;