Home
last modified time | relevance | path

Searched refs:uiPort (Results 1 – 11 of 11) sorted by relevance

/external/parameter-framework/remote-processor/
DListeningSocket.cpp56 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()
DConnectionSocket.cpp47 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()
DRemoteProcessorServerBuilder.cpp35 IRemoteProcessorServerInterface* createRemoteProcessorServer(uint16_t uiPort, IRemoteCommandHandler… in createRemoteProcessorServer() argument
37 return new CRemoteProcessorServer(uiPort, pCommandHandler); in createRemoteProcessorServer()
DSocket.cpp84 void CSocket::initSockAddrIn(struct sockaddr_in* pSockAddrIn, uint32_t uiInAddr, uint16_t uiPort) c… in initSockAddrIn()
88 pSockAddrIn->sin_port = htons(uiPort); in initSockAddrIn()
DRemoteProcessorServer.cpp46 CRemoteProcessorServer::CRemoteProcessorServer(uint16_t uiPort, IRemoteCommandHandler* pCommandHand… in CRemoteProcessorServer() argument
47 …_uiPort(uiPort), _pCommandHandler(pCommandHandler), _bIsStarted(false), _pListeningSocket(NULL), _… in CRemoteProcessorServer()
DListeningSocket.h40 bool listen(uint16_t uiPort, std::string &strError);
DConnectionSocket.h42 bool connect(const std::string& strRemote, uint16_t uiPort, std::string& strError);
DSocket.h101 void initSockAddrIn(struct sockaddr_in* pSockAddrIn, uint32_t uiInAddr, uint16_t uiPort) const;
DRemoteProcessorServer.h42 CRemoteProcessorServer(uint16_t uiPort, IRemoteCommandHandler* pCommandHandler);
/external/parameter-framework/remote-process/
Dmain.cpp155 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/
DParameterMgr.cpp116 typedef IRemoteProcessorServerInterface* (*CreateRemoteProcessorServer)(uint16_t uiPort, IRemoteCom…