Home
last modified time | relevance | path

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

/external/nist-sip/java/gov/nist/core/net/
DDefaultNetworkLayer.java70 InetAddress bindAddress) throws IOException { in createServerSocket() argument
71 return new ServerSocket(port, backlog, bindAddress); in createServerSocket()
99 InetAddress bindAddress) throws IOException { in createSSLServerSocket() argument
101 port, backlog, bindAddress); in createSSLServerSocket()
DSslNetworkLayer.java89 InetAddress bindAddress) throws IOException { in createServerSocket() argument
90 return new ServerSocket(port, backlog, bindAddress); in createServerSocket()
109 InetAddress bindAddress) throws IOException { in createSSLServerSocket() argument
111 port, backlog, bindAddress); in createSSLServerSocket()
DNetworkLayer.java58 InetAddress bindAddress) throws IOException; in createServerSocket() argument
70 InetAddress bindAddress) throws IOException; in createSSLServerSocket() argument
/external/parameter-framework/upstream/test/test-platform/
Dmain.cpp90 auto bindAddress = defaultBindAddress; in main() local
93 bindAddress = options.front(); in main()
104 if (!CTestPlatform(filePath, bindAddress).run(strError)) { in main()
DTestPlatform.cpp41 CTestPlatform::CTestPlatform(const string &strClass, std::string bindAddress) in CTestPlatform() argument
42 : mParameterMgrPlatformConnector(strClass), mLogger(), mRemoteProcessorServer(bindAddress) in CTestPlatform()
DTestPlatform.h48 CTestPlatform(const std::string &strclass, std::string bindAddress);
/external/parameter-framework/upstream/remote-processor/
DBackgroundRemoteProcessorServer.cpp34 std::string bindAddress, std::unique_ptr<IRemoteCommandHandler> &&commandHandler) in BackgroundRemoteProcessorServer() argument
35 : _server(new CRemoteProcessorServer(bindAddress)), mCommandHandler(std::move(commandHandler)) in BackgroundRemoteProcessorServer()
DRemoteProcessorServer.cpp44 CRemoteProcessorServer::CRemoteProcessorServer(std::string bindAddress) in CRemoteProcessorServer() argument
45 : _bindAddress(bindAddress), _io_service(), _acceptor(_io_service), _socket(_io_service) in CRemoteProcessorServer()
DBackgroundRemoteProcessorServer.h43 BackgroundRemoteProcessorServer(std::string bindAddress,
DRemoteProcessorServer.h43 CRemoteProcessorServer(std::string bindAddress);
/external/parameter-framework/upstream/parameter/
DParameterMgr.cpp132 std::string bindAddress, IRemoteCommandHandler *pCommandHandler);
2855 auto bindAddress = getConstFrameworkConfiguration()->getServerBindAddress(); in handleRemoteProcessingInterface() local
2860 new BackgroundRemoteProcessorServer(bindAddress, createCommandHandler()); in handleRemoteProcessingInterface()
2873 oss << "ParameterMgr: Unable to start remote processor server on " << bindAddress; in handleRemoteProcessingInterface()
2877 info() << "Remote Processor Server started on " << bindAddress; in handleRemoteProcessingInterface()