Searched defs:port (Results 151 - 175 of 868) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/cookie/
H A DCookieOrigin.java51 private final int port; field in class:CookieOrigin
55 public CookieOrigin(final String host, int port, final String path, boolean secure) { argument
65 if (port < 0) {
66 throw new IllegalArgumentException("Invalid port: " + port);
73 this.port = port;
91 return this.port;
107 buffer.append(Integer.toString(this.port));
/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2965PortAttributeHandler.java62 * @param portValue port attribute value
88 * Returns <tt>true</tt> if the given port exists in the given
91 * @param port port of host where cookie was received from or being sent to.
92 * @param ports port list
93 * @return true returns <tt>true</tt> if the given port exists in
96 private static boolean portMatch(int port, int[] ports) { argument
99 if (port == ports[i]) {
108 * Parse cookie port attribute.
125 * Validate cookie port attribut
[all...]
/external/autotest/client/cros/cellular/
H A Dscpi_shell24 port=1234, variable
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DWorkerSpec.java43 public final int port; field in class:WorkerSpec
51 int port) {
57 this.port = port;
45 WorkerSpec( UUID trialId, Class<?> workerClass, ImmutableMap<String, String> workerOptions, BenchmarkSpec benchmarkSpec, ImmutableList<Class<?>> methodParameterClasses, int port) argument
/external/clang/test/CodeGen/
H A Dx86_32-inline-asm.c34 unsigned int port; local
35 __asm__ volatile("outb %0, %w1" : : "a" (data), "Nd" (port)); // No error expected.
37 __asm__ volatile("outb %0, %w1" : : "R" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'R'}}
38 __asm__ volatile("outb %0, %w1" : : "q" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'q'}}
39 __asm__ volatile("outb %0, %w1" : : "Q" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'Q'}}
40 __asm__ volatile("outb %0, %w1" : : "b" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'b'}}
41 __asm__ volatile("outb %0, %w1" : : "c" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'c'}}
42 __asm__ volatile("outb %0, %w1" : : "d" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'd'}}
43 __asm__ volatile("outb %0, %w1" : : "S" (val), "Nd" (port)); // expected-error {{invalid input size for constraint 'S'}}
44 __asm__ volatile("outb %0, %w1" : : "D" (val), "Nd" (port)); // expecte
[all...]
/external/cmockery/cmockery_0_1_2/src/example/
H A Dcustomer_database_test.c36 const unsigned int port) {
35 connect_to_database(const char * const database_url, const unsigned int port) argument
H A Dproduct_database_test.c28 const unsigned int port) {
30 check_expected(port);
36 expect_value(connect_to_database, port, 322);
45 expect_value(connect_to_database, port, 322);
51 * retrieve a value for the parameter port which isn't specified by this
27 connect_to_database(const char * const url, const unsigned int port) argument
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLServerSocketFactoryImpl.java61 public ServerSocket createServerSocket(int port) throws IOException { argument
62 return new OpenSSLServerSocketImpl(port, (SSLParametersImpl) sslParameters.clone());
66 public ServerSocket createServerSocket(int port, int backlog) argument
68 return new OpenSSLServerSocketImpl(port,
74 public ServerSocket createServerSocket(int port, argument
77 return new OpenSSLServerSocketImpl(port,
H A DOpenSSLSocketFactoryImpl.java67 public Socket createSocket(String hostname, int port) throws IOException, UnknownHostException { argument
68 return new OpenSSLSocketImpl(hostname, port, (SSLParametersImpl) sslParameters.clone());
72 public Socket createSocket(String hostname, int port, InetAddress localHost, int localPort) argument
75 port,
82 public Socket createSocket(InetAddress address, int port) throws IOException { argument
83 return new OpenSSLSocketImpl(address, port, (SSLParametersImpl) sslParameters.clone());
88 int port,
93 port,
100 public Socket createSocket(Socket s, String hostname, int port, boolean autoClose) argument
104 port,
87 createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) argument
[all...]
/external/curl/lib/
H A Dhostasyn.c87 conn->async.port);
147 int port,
150 return Curl_resolver_getaddrinfo(conn, hostname, port, waitp);
145 Curl_getaddrinfo(struct connectdata *conn, const char *hostname, int port, int *waitp) argument
H A Dhostip4.c93 int port,
104 ai = Curl_ipv4_resolve_r(hostname, port);
123 int port)
135 return Curl_ip2addr(AF_INET, &in, hostname, port);
146 if(port) {
147 snprintf(sbuf, sizeof(sbuf), "%d", port);
299 ai = Curl_he2ai(h, port);
91 Curl_getaddrinfo(struct connectdata *conn, const char *hostname, int port, int *waitp) argument
122 Curl_ipv4_resolve_r(const char *hostname, int port) argument
/external/curl/tests/libtest/
H A Dlib1510.c40 char *port = libtest_arg3; local
47 sprintf(dnsentry, "server%d.example.com:%s:%s", i + 1, port, address);
77 i + 1, port, i + 1);
H A Dlib1512.c39 char *port = libtest_arg3; local
52 sprintf(dnsentry, "server.example.curl:%s:%s", port, address);
62 port, i + 1);
/external/deqp/framework/platform/android/
H A DtcuAndroidJNI.cpp70 JNIEXPORT void JNICALL Java_com_drawelements_deqp_execserver_ExecService_startServer (JNIEnv* env, jobject obj, jint port) argument
82 service = new tcu::Android::ExecService(vm, obj, port);
/external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
H A DSSLServerSocketFactoryWrapper.java58 public ServerSocket createServerSocket(int port) throws IOException { argument
59 return mFactory.createServerSocket(port);
63 public ServerSocket createServerSocket(int port, int backlog) argument
65 return mFactory.createServerSocket(port, backlog);
69 public ServerSocket createServerSocket(int port, int backlog, argument
71 return mFactory.createServerSocket(port, backlog, ifAddress);
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
H A DDumpMojo.java86 * @parameter property="jacoco.port" default-value="6300"
88 private int port; field in class:DumpMojo
103 final int port) {
106 Integer.valueOf(port)));
119 final ExecFileLoader loader = client.dump(address, port);
/external/javassist/src/main/javassist/
H A DURLClassPath.java30 protected int port; field in class:URLClassPath
47 * <code>port</code> is 80, and <code>directory</code> is "/java/classes/".
53 * @param port port number
59 public URLClassPath(String host, int port, argument
62 this.port = port;
68 return hostname + ":" + port + directory;
90 return fetchClass0(hostname, port, jarname);
123 * @param port por
129 fetchClass(String host, int port, String directory, String classname) argument
161 fetchClass0(String host, int port, String filename) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/client/
H A DAddress.java29 private final int port; field in class:Address
34 int port;
39 port = Integer.parseInt(hostAndPort.substring(colon + 1));
44 port = 0;
46 return new Address(host, port);
49 public Address(String host, int port) argument
55 this.port = port;
65 return port == that.port;
[all...]
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DResponder.java36 public Responder(JmDNSImpl jmDNSImpl, DNSIncoming in, int port) { argument
39 this._unicast = (port != DNSConstants.MDNS_PORT);
/external/kernel-headers/original/uapi/xen/
H A Devtchn.h37 * Bind a fresh port to VIRQ @virq.
38 * Return allocated port.
47 * Bind a fresh port to remote <@remote_domain, @remote_port>.
48 * Return allocated port.
57 * Allocate a fresh port for binding to @remote_domain.
58 * Return allocated port.
67 * Unbind previously allocated @port.
72 unsigned int port; member in struct:ioctl_evtchn_unbind
76 * Unbind previously allocated @port.
81 unsigned int port; member in struct:ioctl_evtchn_notify
[all...]
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpsServiceConnectionSEIgnoringConnectionClose.java8 public HttpsServiceConnectionSEIgnoringConnectionClose(String host, int port, String file, argument
11 super(host, port, file, timeout);
H A DHttpsTransportSE.java20 private final int port; field in class:HttpsTransportSE
24 public HttpsTransportSE(String host, int port, String file, int timeout) { argument
25 super(HttpsTransportSE.PROTOCOL + "://" + host + ":" + port + file);
27 + host + ":" + port + file);
29 this.port = port;
41 serviceConnection = new HttpsServiceConnectionSE(host, port, file, timeout);
/external/libxml2/include/libxml/
H A Duri.h39 int port; /* the port number */ member in struct:_xmlURI
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java27 * Utility class for parsing host and port values from command arguments.
35 * Parse the host address and port number of an extended address. This encoded format is used by
41 * @param parameter - the single parameter String containing the encoded host and port number
53 throw new CommandSyntaxException("Error parsing host and port number [" + parameter + "]");
56 int port = Integer.parseInt(tokens[3]);
66 return new HostAndPort(host, port);
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
74 * of a 32-bit internet host address and a 16-bit TCP port address. This address
77 * representation). Thus, the six parameters for the port command would be:
80 * high order 8 bits of the port numbe
118 convertHostAndPortToCommaDelimitedBytes(InetAddress host, int port) argument
[all...]
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/socket/
H A DStubSocketFactory.java25 * requested host address and port number.
48 public Socket createSocket(InetAddress host, int port) throws IOException { argument
50 this.requestedDataPort = port;

Completed in 590 milliseconds

1234567891011>>