Searched refs:bindAddress (Results 1 – 11 of 11) sorted by relevance
/external/nist-sip/java/gov/nist/core/net/ |
D | DefaultNetworkLayer.java | 70 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()
|
D | SslNetworkLayer.java | 89 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()
|
D | NetworkLayer.java | 58 InetAddress bindAddress) throws IOException; in createServerSocket() argument 70 InetAddress bindAddress) throws IOException; in createSSLServerSocket() argument
|
/external/parameter-framework/upstream/test/test-platform/ |
D | main.cpp | 90 auto bindAddress = defaultBindAddress; in main() local 93 bindAddress = options.front(); in main() 104 if (!CTestPlatform(filePath, bindAddress).run(strError)) { in main()
|
D | TestPlatform.cpp | 41 CTestPlatform::CTestPlatform(const string &strClass, std::string bindAddress) in CTestPlatform() argument 42 : mParameterMgrPlatformConnector(strClass), mLogger(), mRemoteProcessorServer(bindAddress) in CTestPlatform()
|
D | TestPlatform.h | 48 CTestPlatform(const std::string &strclass, std::string bindAddress);
|
/external/parameter-framework/upstream/remote-processor/ |
D | BackgroundRemoteProcessorServer.cpp | 34 std::string bindAddress, std::unique_ptr<IRemoteCommandHandler> &&commandHandler) in BackgroundRemoteProcessorServer() argument 35 : _server(new CRemoteProcessorServer(bindAddress)), mCommandHandler(std::move(commandHandler)) in BackgroundRemoteProcessorServer()
|
D | RemoteProcessorServer.cpp | 44 CRemoteProcessorServer::CRemoteProcessorServer(std::string bindAddress) in CRemoteProcessorServer() argument 45 : _bindAddress(bindAddress), _io_service(), _acceptor(_io_service), _socket(_io_service) in CRemoteProcessorServer()
|
D | BackgroundRemoteProcessorServer.h | 43 BackgroundRemoteProcessorServer(std::string bindAddress,
|
D | RemoteProcessorServer.h | 43 CRemoteProcessorServer(std::string bindAddress);
|
/external/parameter-framework/upstream/parameter/ |
D | ParameterMgr.cpp | 132 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()
|