Searched refs:uiPort (Results 1 – 11 of 11) sorted by relevance
/external/parameter-framework/remote-processor/ |
D | ListeningSocket.cpp | 56 bool CListeningSocket::listen(uint16_t uiPort, string &strError) in listen() argument 61 initSockAddrIn(&server_addr, INADDR_ANY, uiPort); in listen() 67 oss << uiPort; in listen() 75 oss << uiPort; in listen()
|
D | ConnectionSocket.cpp | 47 bool CConnectionSocket::connect(const string& strRemote, uint16_t uiPort, string& strError) in connect() argument 63 initSockAddrIn(&server_addr, *((uint32_t*)host->h_addr), uiPort); in connect() 69 oss << "CConnectionSocket::connect::connect on port: " << uiPort; in connect()
|
D | RemoteProcessorServerBuilder.cpp | 35 IRemoteProcessorServerInterface* createRemoteProcessorServer(uint16_t uiPort, IRemoteCommandHandler… in createRemoteProcessorServer() argument 37 return new CRemoteProcessorServer(uiPort, pCommandHandler); in createRemoteProcessorServer()
|
D | Socket.cpp | 84 void CSocket::initSockAddrIn(struct sockaddr_in* pSockAddrIn, uint32_t uiInAddr, uint16_t uiPort) c… in initSockAddrIn() 88 pSockAddrIn->sin_port = htons(uiPort); in initSockAddrIn()
|
D | RemoteProcessorServer.cpp | 46 CRemoteProcessorServer::CRemoteProcessorServer(uint16_t uiPort, IRemoteCommandHandler* pCommandHand… in CRemoteProcessorServer() argument 47 …_uiPort(uiPort), _pCommandHandler(pCommandHandler), _bIsStarted(false), _pListeningSocket(NULL), _… in CRemoteProcessorServer()
|
D | ListeningSocket.h | 40 bool listen(uint16_t uiPort, std::string &strError);
|
D | ConnectionSocket.h | 42 bool connect(const std::string& strRemote, uint16_t uiPort, std::string& strError);
|
D | Socket.h | 101 void initSockAddrIn(struct sockaddr_in* pSockAddrIn, uint32_t uiInAddr, uint16_t uiPort) const;
|
D | RemoteProcessorServer.h | 42 CRemoteProcessorServer(uint16_t uiPort, IRemoteCommandHandler* pCommandHandler);
|
/external/parameter-framework/remote-process/ |
D | main.cpp | 155 uint16_t uiPort = (uint16_t)strtoul(argv[2], NULL, 0); in main() local 162 if (!connectionSocket.connect(argv[1], uiPort, strError)) { in main()
|
/external/parameter-framework/parameter/ |
D | ParameterMgr.cpp | 116 typedef IRemoteProcessorServerInterface* (*CreateRemoteProcessorServer)(uint16_t uiPort, IRemoteCom…
|