Home
last modified time | relevance | path

Searched refs:CSocket (Results 1 – 9 of 9) sorted by relevance

/external/parameter-framework/remote-processor/
DSocket.cpp44 CSocket::CSocket() : _iSockFd(socket(AF_INET, SOCK_STREAM, 0)), mSendFlag(0) in CSocket() function in CSocket
69 CSocket::CSocket(int iSockId) : _iSockFd(iSockId) in CSocket() function in CSocket
74 CSocket::~CSocket() in ~CSocket()
84 void CSocket::initSockAddrIn(struct sockaddr_in* pSockAddrIn, uint32_t uiInAddr, uint16_t uiPort) c… in initSockAddrIn()
94 void CSocket::setNonBlocking(bool bNonBlocking) in setNonBlocking()
111 void CSocket::setTimeout(uint32_t uiMilliseconds) in setTimeout()
122 bool CSocket::read(void* pvData, uint32_t uiSize) in read()
154 bool CSocket::write(const void* pvData, uint32_t uiSize) in write()
183 int CSocket::getFd() const in getFd()
188 bool CSocket::hasPeerDisconnected() { in hasPeerDisconnected()
DSocket.h46 class CSocket
49 CSocket();
50 CSocket(int iSockId);
51 virtual ~CSocket();
DListeningSocket.cpp44 #define base CSocket
83 CSocket* CListeningSocket::accept() in accept()
96 return new CSocket(iSockId); in accept()
DListeningSocket.h34 class CListeningSocket : public CSocket
43 CSocket* accept();
DMessage.h35 class CSocket; variable
62 Result serialize(CSocket* pSocket, bool bOut, std::string &strError);
DConnectionSocket.h36 class CConnectionSocket : public CSocket
DConnectionSocket.cpp38 #define base CSocket
DRemoteProcessorServer.cpp178 const std::auto_ptr<CSocket> clientSocket(_pListeningSocket->accept()); in handleNewConnection()
DMessage.cpp126 CMessage::Result CMessage::serialize(CSocket* pSocket, bool bOut, string& strError) in serialize()