HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 1 - 25 of 1040) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
chain-predecl.h 3 @protocol Pro;
  /external/clang/test/Index/
complete-protocols.m 4 @protocol Protocol1
7 @protocol Protocol2;
11 @protocol Protocol0;
12 @protocol NewProtocol
index-suppress-refs.h 8 @protocol P
  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 9 @protocol P1;
11 @protocol P2;
12 @protocol P2;
redecl-merge-bottom.h 5 @protocol P4;
6 @protocol P4;
7 @protocol P4;
14 @protocol P1;
redecl-merge-right.h 12 @protocol P1
16 @protocol P1;
18 @protocol P2;
20 @protocol P2;
22 @protocol P2;
51 @protocol P4, P3;
52 @protocol P3;
53 @protocol P3;
54 @protocol P3;
  /external/chromium/chrome/browser/ui/cocoa/
browser_command_executor.h 9 // Defines a protocol for any object that can execute commands in the
11 @protocol BrowserCommandExecutor
  /libcore/luni/src/main/java/java/net/
URLStreamHandlerFactory.java 22 * protocol. It is used by the class {@code URL}.
28 * protocol}.
30 * @param protocol
31 * the protocol for which a handler is needed.
34 URLStreamHandler createURLStreamHandler(String protocol);
  /external/webkit/Source/WebKit/mac/WebView/
WebDeviceOrientationProvider.h 28 @protocol WebDeviceOrientationProvider <NSObject>
WebPDFRepresentation.h 31 @protocol WebDocumentRepresentation;
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestHandlerResolver.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpRequestHandlerResolver.java $
32 package org.apache.http.protocol;
  /external/apache-http/src/org/apache/http/
ProtocolVersion.java 39 * Represents a protocol version, as specified in RFC 2616.
42 * for the protocol name. It defines a protocol version "SIP/2.0".
46 * This class defines a protocol version as a combination of
47 * protocol name, major version number, and minor version number.
61 /** Name of the protocol. */
62 protected final String protocol; field in class:ProtocolVersion
64 /** Major version number of the protocol */
67 /** Minor version number of the protocol */
72 * Create a protocol version designator
    [all...]
ConnectionReuseStrategy.java 34 import org.apache.http.protocol.HttpContext;
52 * close the connection to correctly implement the HTTP protocol.
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLContextTest.java 50 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) {
53 SSLContext newContext = SSLContext.getInstance(protocol);
68 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) {
69 assertNotNull(SSLContext.getInstance(protocol));
70 assertNotSame(SSLContext.getInstance(protocol),
71 SSLContext.getInstance(protocol));
84 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) {
86 SSLContext.getInstance(protocol, (String) null);
99 for (String protocol : StandardNames.SSL_CONTEXT_PROTOCOLS) {
100 String protocolName = SSLContext.getInstance(protocol).getProtocol()
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
DelegatedTaskTest.java 31 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local
36 DelegatedTask task = new DelegatedTask(null, protocol, null);
38 assertTrue(protocol.delegatedTaskErr instanceof NullPointerException);
HandshakeProtocolTest.java 36 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local
41 assertEquals(protocol.getStatus(),
44 protocol.status = HandshakeProtocol.NEED_UNWRAP;
45 assertEquals(protocol.getStatus(),
48 protocol.status = HandshakeProtocol.FINISHED;
49 assertEquals(protocol.getStatus(),
51 assertEquals(protocol.status, HandshakeProtocol.NOT_HANDSHAKING);
53 protocol.delegatedTaskErr = new Exception();
54 assertEquals(protocol.getStatus(),
56 protocol.delegatedTaskErr = null
69 HandshakeProtocol protocol = new ServerHandshakeImpl(new SSLEngineImpl( local
80 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local
187 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local
201 HandshakeProtocol protocol = new ClientHandshakeImpl(new SSLEngineImpl( local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStream.h 32 @protocol ANTLRCharStream < ANTLRIntStream >
  /external/apache-http/src/org/apache/http/client/
UserTokenHandler.java 34 import org.apache.http.protocol.HttpContext;
  /external/qemu/android/protocol/
fb-updates-impl.h 29 * protocol Protocol to use for the updates:
37 const char* protocol,
fb-updates-proxy.h 28 * protocol - Defines protocol to use when sending FB updates to the UI. The
35 ProxyFramebuffer* proxyFb_create(int sock, const char* protocol);
  /external/webkit/Source/WebCore/page/
OriginAccessEntry.h 47 // If host is empty string and SubdomainSetting is AllowSubdomains, the entry will match all domains in the specified protocol.
48 OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting);
51 const String& protocol() const { return m_protocol; } function in class:WebCore::OriginAccessEntry
64 return equalIgnoringCase(a.protocol(), b.protocol()) && equalIgnoringCase(a.host(), b.host()) && a.subdomainSettings() == b.subdomainSettings();
  /libcore/luni/src/main/java/javax/net/ssl/
SSLContext.java 30 * The public API for secure socket protocol implementations. It acts as factory
83 * Creates a new {@code SSLContext} instance for the specified protocol.
85 * @param protocol
86 * the requested protocol to create a context for.
89 * if no installed provider can provide the requested protocol
91 * if {@code protocol} is {@code null} (instead of
94 public static SSLContext getInstance(String protocol) throws NoSuchAlgorithmException {
95 if (protocol == null) {
96 throw new NullPointerException("protocol is null");
98 Engine.SpiAndProvider sap = ENGINE.getInstance(protocol, null)
167 private final String protocol; field in class:SSLContext
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-protocol.js 1 description('Test setting the protocol attribute of the URL in HTMLAnchorElement .');
7 a.protocol = "http-foo";
11 debug("Set a protocol that contains ':'");
14 a.protocol = "http:foo";
21 debug("Set a protocol that contains invalid characters");
24 a.protocol = "http^foo";
32 debug("Set a protocol to a URL with invalid host name");
34 a.protocol = "foo";
39 debug("Set a protocol that starts with ':'");
41 a.protocol = ":http"
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenSource.h 33 @protocol ANTLRTokenSource <NSObject, NSCopying>
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTokenSource.h 33 @protocol ANTLRTokenSource <NSObject, NSCopying>

Completed in 978 milliseconds

1 2 3 4 5 6 7 8 91011>>