/external/iptables/extensions/ |
libipt_MASQUERADE.c | 20 " --to-ports <port>[-<port>]\n" 21 " Port (range) to map to.\n" 23 " Randomize source port.\n"); 45 unsigned int port, maxport; local 49 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX)) 54 mr->range[0].min.tcp.port 55 = mr->range[0].max.tcp.port 56 = htons(port); 62 if (maxport < port) [all...] |
/frameworks/base/media/libstagefright/omx/ |
SimpleSoftOMXComponent.cpp | 134 const PortInfo *port = local 137 memcpy(defParams, &port->mDef, sizeof(port->mDef)); 161 PortInfo *port = 164 if (defParams->nBufferSize != port->mDef.nBufferSize) { 165 CHECK_GE(defParams->nBufferSize, port->mDef.nBufferSize); 166 port->mDef.nBufferSize = defParams->nBufferSize; 170 != port->mDef.nBufferCountActual) { 172 port->mDef.nBufferCountMin); 174 port->mDef.nBufferCountActual = defParams->nBufferCountActual [all...] |
/development/tools/emulator/opengl/host/libs/libOpenglRender/ |
RenderServer.h | 25 static RenderServer *create(int port);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_ServerSocket.java | 32 public void setPort(int port);
|
/external/chromium/net/proxy/ |
proxy_server_mac.cc | 23 // No hostname port to extract; we are done. 41 int port; local 43 CFNumberGetValue(port_ref, kCFNumberIntType, &port); 45 port = GetDefaultPortForScheme(scheme); 48 return ProxyServer(scheme, HostPortPair(host, port));
|
/external/chromium/net/tools/fetch/ |
http_server.h | 18 HttpServer(std::string ip, int port);
|
/external/webkit/Source/WebCore/bindings/js/ |
JSMessageChannelCustom.cpp | 40 if (MessagePort* port = m_impl->port1()) 41 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), port); 43 if (MessagePort* port = m_impl->port2()) 44 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), port);
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
test_runner_unittest.py | 50 port = Mock() 51 port._filesystem = filesystem_mock.MockFileSystem() 52 runner = TestRunnerWrapper(port=port, options=Mock(),
|
/frameworks/base/opengl/libs/ |
glesv2dbg.h | 32 void StartDebugServer(const unsigned short port, const bool forceUseFile,
|
/libcore/luni/src/main/java/javax/net/ |
SocketFactory.java | 69 * the parameters {@code host} and {@code port}. The socket is bound to any 70 * available local address and port. 74 * @param port 75 * the port number of the remote host at which the socket is 84 public abstract Socket createSocket(String host, int port) throws IOException, 89 * the parameters {@code host} and {@code port}. The socket is bound to the 91 * port {@code localPort}. 95 * @param port 96 * the port number of the remote host at which the socket is 101 * the port number of the local host at which the socket i [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLClientSessionCache.java | 35 * Gets data from a pre-existing session for a given server host and port. 38 * @param port from {@link javax.net.ssl.SSLSession#getPeerPort()} 42 public byte[] getSessionData(String host, int port);
|
OpenSSLServerSocketFactoryImpl.java | 57 public ServerSocket createServerSocket(int port) throws IOException { 58 return new OpenSSLServerSocketImpl(port, (SSLParametersImpl) sslParameters.clone()); 61 public ServerSocket createServerSocket(int port, int backlog) 63 return new OpenSSLServerSocketImpl(port, 68 public ServerSocket createServerSocket(int port, 71 return new OpenSSLServerSocketImpl(port,
|
/bionic/libc/netbsd/net/ |
getservbyport.c | 33 getservbyport(int port, const char *proto) 48 if ( s->s_port == port && !strcmp( s->s_proto, proto ) )
|
/development/tools/emulator/opengl/shared/OpenglCodecCommon/ |
Win32PipeStream.h | 26 virtual int listen(unsigned short port); 28 virtual int connect(unsigned short port);
|
TcpStream.cpp | 50 int TcpStream::listen(unsigned short port) 52 m_sock = socket_loopback_server(port, SOCK_STREAM); 81 int TcpStream::connect(unsigned short port) 83 return connect("127.0.0.1",port); 86 int TcpStream::connect(const char* hostname, unsigned short port) 88 m_sock = socket_network_client(hostname, port, SOCK_STREAM);
|
/external/chromium/net/base/ |
host_mapping_rules_unittest.cc | 22 EXPECT_EQ(1234u, host_port.port()); 27 EXPECT_EQ(60u, host_port.port()); 32 EXPECT_EQ(80u, host_port.port()); 37 EXPECT_EQ(666u, host_port.port()); 49 EXPECT_EQ(1234u, host_port.port()); 51 // Match port 80 55 EXPECT_EQ(111u, host_port.port()); 57 // Match port 443 61 EXPECT_EQ(333u, host_port.port()); 63 // Match port 443, but excluded [all...] |
ip_endpoint.h | 18 // * Port 23 IPEndPoint(const IPAddressNumber& address, int port); 27 int port() const { return port_; } function in class:net::IPEndPoint
|
/external/netcat/data/ |
nfs-0.d | 1 # UDP NFS null-proc call; finds active NFS listeners on port 2049. 34 000 # port: junk
|
/external/nist-sip/java/javax/sip/ |
IOExceptionEvent.java | 10 public IOExceptionEvent(Object source, String host, int port, 14 mPort = port;
|
/external/webkit/LayoutTests/fast/url/script-tests/ |
port.js | 1 description("Test URLs that have a port number."); 7 // Default port should be omitted. 19 // Unspecified port should mean always keep the port.
|
/external/webkit/Source/WebCore/workers/ |
SharedWorker.idl | 44 readonly attribute MessagePort port;
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLSocket.java | 43 * port. 47 * @param port 48 * the port number to connect to. 54 protected SSLSocket(String host, int port) throws IOException, UnknownHostException { 55 super(host, port); 62 * port. 66 * @param port 67 * the port number to connect to. 71 protected SSLSocket(InetAddress address, int port) throws IOException { 72 super(address, port); [all...] |
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
SSLServerSocketTest.java | 86 protected MySSLServerSocket(int port) throws IOException { 87 super(port); 90 protected MySSLServerSocket(int port, int backlog) throws IOException { 91 super(port, backlog); 94 protected MySSLServerSocket(int port, int backlog, InetAddress address) 96 super(port, backlog, address);
|
/external/webkit/Tools/Scripts/ |
new-run-webkit-httpd | 49 import port namespace 50 from port import http_server 55 ' [--port=port_number]' % sys.argv[0]) 57 if (options.root is None) and (options.port is not None): 58 # specifying root but not port means we want httpd on default 60 # source of tests. Specifying port but no root does not seem 62 raise 'Specifying port requires also a root.' 63 port_obj = port.get(None, options) 66 port=options.port, [all...] |
/libcore/luni/src/main/java/java/net/ |
SocketImpl.java | 30 * ServerSocket} on a well known port (referred to as listener) used to 42 * The remote port this socket is connected to. 44 protected int port; field in class:SocketImpl 52 * The local port this socket is connected to. 78 * Binds this socket to the specified local host address and port number. 82 * @param port 83 * the port on the local machine to bind this socket to. 87 protected abstract void bind(InetAddress address, int port) throws IOException; 98 * Connects this socket to the specified remote host and port number. 102 * @param port [all...] |