Searched refs:CSocket (Results 1 – 9 of 9) sorted by relevance
/external/parameter-framework/remote-processor/ |
D | Socket.cpp | 44 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()
|
D | Socket.h | 46 class CSocket 49 CSocket(); 50 CSocket(int iSockId); 51 virtual ~CSocket();
|
D | ListeningSocket.cpp | 44 #define base CSocket 83 CSocket* CListeningSocket::accept() in accept() 96 return new CSocket(iSockId); in accept()
|
D | ListeningSocket.h | 34 class CListeningSocket : public CSocket 43 CSocket* accept();
|
D | Message.h | 35 class CSocket; variable 62 Result serialize(CSocket* pSocket, bool bOut, std::string &strError);
|
D | ConnectionSocket.h | 36 class CConnectionSocket : public CSocket
|
D | ConnectionSocket.cpp | 38 #define base CSocket
|
D | RemoteProcessorServer.cpp | 178 const std::auto_ptr<CSocket> clientSocket(_pListeningSocket->accept()); in handleNewConnection()
|
D | Message.cpp | 126 CMessage::Result CMessage::serialize(CSocket* pSocket, bool bOut, string& strError) in serialize()
|