HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 26 - 50 of 1993) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLContext.java 34 * Instances of this class represent a secure socket protocol
80 * This protocol is described in the <a href=
92 private final String protocol; field in class:SSLContext
99 * @param protocol the protocol
102 String protocol) {
105 this.protocol = protocol;
160 * specified secure socket protocol.
166 * Provider that supports the specified protocol is returned
    [all...]
  /libcore/ojluni/src/main/java/sun/net/util/
URLUtil.java 47 String protocol = url.getProtocol(); local
48 if (protocol != null) {
49 /* protocol is compared case-insensitive, so convert to lowercase */
50 protocol = protocol.toLowerCase();
51 strForm.append(protocol);
  /external/selinux/policycoreutils/sepolicy/sepolicy/
network.py 38 def get_network_connect(src, protocol, perm):
41 tlist = get_types(src, "%s_socket" % protocol, [perm])
43 d[(src, protocol, perm)] = []
55 d[(src, protocol, perm)].append((i, ["all ports with out defined types"]))
57 d[(src, protocol, perm)].append((i, ["all ports"]))
59 d[(src, protocol, perm)].append((i, ["all ports > 1024"]))
61 d[(src, protocol, perm)].append((i, ["all ports < 1024"]))
63 d[(src, protocol, perm)].append((i, ["all ports > 500 and < 1024"]))
66 d[(src, protocol, perm)].append((i, portrecs[(i, protocol)]))
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
OkUrlFactory.java 58 String protocol = url.getProtocol(); local
62 if (protocol.equals("http")) return new HttpURLConnectionImpl(url, copy, urlFilter);
63 if (protocol.equals("https")) return new HttpsURLConnectionImpl(url, copy, urlFilter);
64 throw new IllegalArgumentException("Unexpected protocol: " + protocol);
77 @Override public URLStreamHandler createURLStreamHandler(final String protocol) {
78 if (!protocol.equals("http") && !protocol.equals("https")) return null;
90 if (protocol.equals("http")) return 80;
91 if (protocol.equals("https")) return 443
    [all...]
  /external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderImplTest.java 28 import sun.net.www.protocol.jar.Handler;
42 public URLStreamHandler createURLStreamHandler(String protocol) {
43 if ("jar".equals(protocol)) {
47 fail("Should be JarHandler. But " + protocol);
  /external/apache-http/src/org/apache/http/
ConnectionReuseStrategy.java 34 import org.apache.http.protocol.HttpContext;
57 * close the connection to correctly implement the HTTP protocol.
HttpRequestInterceptor.java 36 import org.apache.http.protocol.HttpContext;
69 * @throws HttpException in case of a protocol or other problem
HttpResponseInterceptor.java 36 import org.apache.http.protocol.HttpContext;
68 * @throws HttpException in case of a protocol or other problem
  /external/apache-http/src/org/apache/http/client/
HttpRequestRetryHandler.java 36 import org.apache.http.protocol.HttpContext;
UserTokenHandler.java 34 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/protocol/
ExecutionContext.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ExecutionContext.java $
32 package org.apache.http.protocol;
35 * {@link HttpContext Context} attribute names for protocol execution.
HttpProcessor.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpProcessor.java $
32 package org.apache.http.protocol;
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/
keybase.py 70 @ivar protocol: the protocol for which this key may be used
71 @type protocol: int
77 __slots__ = ['flags', 'protocol', 'algorithm', 'key']
79 def __init__(self, rdclass, rdtype, flags, protocol, algorithm, key):
82 self.protocol = protocol
87 return '%d %d %d %s' % (self.flags, self.protocol, self.algorithm,
103 protocol = tok.get_string()
104 if protocol.isdigit()
    [all...]
  /external/clang/test/ARCMT/Inputs/
test.h 1 @protocol NSObject
  /external/clang/test/ARCMT/with space/
test.h 1 @protocol NSObject
  /external/clang/test/Modules/Inputs/
category_left_sub.h 5 @protocol P3
redecl-merge-left.h 13 @protocol P1;
14 @protocol P2
46 @protocol P3, P4;
48 @protocol P3;
  /external/dbus/dbus/
dbus-marshal-byteswap.h 27 #include <dbus/dbus-protocol.h>
  /external/libchrome/base/mac/
cocoa_protocols.h 11 // protocol defintions aren't not present in earlier releases of the Mac OS X
14 // define these protocols at all, this file will provide empty protocol
18 @protocol p \
  /libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
URLJarFileCallBack.java 26 package sun.net.www.protocol.jar;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/elb/
listener.py 33 instance_port=0, protocol='', ssl_certificate_id=None, instance_protocol=None):
37 self.protocol = protocol
43 r = "(%d, %d, '%s'" % (self.load_balancer_port, self.instance_port, self.protocol)
63 elif name == 'Protocol':
64 self.protocol = value
71 return self.load_balancer_port, self.instance_port, self.protocol
74 return self.load_balancer_port, self.instance_port, self.protocol, self.instance_protocol
82 return self.protocol
  /external/webrtc/talk/app/webrtc/objc/public/
RTCVideoRenderer.h 35 @protocol RTCVideoRenderer<NSObject>
  /external/avahi/avahi-python/avahi-discover/
avahi-discover.py 74 (name,interface,protocol,stype,domain) = self.treemodel.get(iter,1,2,3,4,5)
79 self.server.ResolveService( int(interface), int(protocol), name, stype, domain, avahi.PROTO_UNSPEC, dbus.UInt32(0), reply_handler=self.service_resolved, error_handler=self.print_error)
81 def protoname(self,protocol):
82 if protocol == avahi.PROTO_INET:
84 if protocol == avahi.PROTO_INET6:
94 def get_interface_name(self, interface, protocol):
95 if interface == avahi.IF_UNSPEC and protocol == avahi.PROTO_UNSPEC:
98 return str(self.siocgifname(interface)) + " " + str(self.protoname(protocol))
100 def service_resolved(self, interface, protocol, name, stype, domain, host, aprotocol, address, port, txt, flags):
101 print "Service data for service '%s' of type '%s' in domain '%s' on %i.%i:" % (name, stype, domain, interface, protocol)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Reason.java 29 * reason-value = protocol *(SEMI reason-params)
30 * protocol = "SIP" / "Q.850" / token
31 * reason-params = protocol-cause / reason-text
33 * protocol-cause = "cause" EQUAL cause
65 protected String protocol; field in class:Reason
83 /** Set the protocol
85 *@param protocol - protocol to set.
88 public void setProtocol(String protocol) throws ParseException {
89 this.protocol = protocol
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/protocol/http/
HttpCallerInfo.java 26 package sun.net.www.protocol.http;
48 final public String host, protocol, prompt, scheme; field in class:HttpCallerInfo
59 this.protocol = old.protocol;
90 protocol = url.getProtocol();
104 protocol = url.getProtocol();

Completed in 1116 milliseconds

12 3 4 5 6 7 8 91011>>