HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 226 - 250 of 548) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/bindings/v8/custom/
V8WebSocketCustom.cpp 109 v8::Handle<v8::String> protocol = args[1]->ToString(); local
112 webSocket->connect(url, toWebCoreString(protocol), ec);
  /external/webkit/WebCore/loader/appcache/
ManifestParser.cpp 127 if (!equalIgnoringCase(url.protocol(), manifestURL.protocol()))
  /external/webkit/WebCore/platform/network/
CredentialStorage.cpp 63 return url.protocol() + "://" + url.host() + String::format(":%i/", url.port());
65 return url.protocol() + "://" + url.host() + "/";
  /frameworks/base/packages/VpnServices/src/com/android/server/vpn/
VpnDaemons.java 118 private DaemonProxy startMtpd(String protocol,
122 args.addAll(Arrays.asList(protocol, serverIp, port));
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientHandshakeImpl.java 44 * Client side handshake protocol implementation.
45 * Handshake protocol operates on top of the Record Protocol.
50 * to Record Protocol. Detected errors are reported to the Alert protocol.
53 * TLS Handshake Protocol</a>
96 session.protocol = ProtocolVersion.getLatestVersion(parameters
98 recordProtocol.setVersion(session.protocol.version);
120 session.protocol = ProtocolVersion.getLatestVersion(parameters
122 recordProtocol.setVersion(session.protocol.version)
    [all...]
  /bionic/libc/kernel/common/linux/
ip.h 90 __u8 protocol; member in struct:iphdr
  /development/ndk/platforms/android-3/include/linux/
ip.h 90 __u8 protocol; member in struct:iphdr
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 38 import org.apache.http.protocol.HTTP;
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPooledConnAdapter.java 38 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/impl/entity/
EntityDeserializer.java 46 import org.apache.http.protocol.HTTP;
  /external/apache-http/src/org/apache/http/params/
HttpProtocolParams.java 36 import org.apache.http.protocol.HTTP;
40 * to simplify manipulation of the HTTP protocol specific parameters.
119 * Returns {@link ProtocolVersion protocol version} to be used per default.
121 * @return {@link ProtocolVersion protocol version}
136 * Assigns the {@link ProtocolVersion protocol version} to be used by the
139 * @param version the {@link ProtocolVersion protocol version}
  /external/apache-http/src/org/apache/http/protocol/
ResponseConnControl.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ResponseConnControl.java $
32 package org.apache.http.protocol;
ResponseContent.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ResponseContent.java $
32 package org.apache.http.protocol;
UriPatternMatcher.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/UriPatternMatcher.java $
32 package org.apache.http.protocol;
  /external/kernel-headers/original/linux/
ip.h 2 * INET An implementation of the TCP/IP protocol suite for the LINUX
6 * Definitions for the IP protocol.
97 __u8 protocol; member in struct:iphdr
  /external/mtpd/
mtpd.c 42 extern struct protocol l2tp;
43 extern struct protocol pptp;
44 static struct protocol *protocols[] = {&l2tp, &pptp, NULL};
45 static struct protocol *the_protocol;
76 log_print(INFO, "Using protocol %s", protocols[i]->name);
85 printf("Usage: %s <protocol-args> '' <pppd-args>, "
86 "where protocol-args are one of:\n", argv[0]);
  /external/ppp/pppd/include/net/
if_ppp.h 4 * if_ppp.h - Point-to-Point Protocol definitions.
51 #define SC_COMP_PROT 0x00000001 /* protocol compression (output) */
90 int protocol; /* PPP procotol, e.g. PPP_IP */ member in struct:npioctl
  /external/ppp/pppd/
main.c 2 * main.c - Point-to-Point Protocol main module
277 * PPP Data Link Layer "protocol" table.
278 * One entry per supported protocol.
353 * Initialize each protocol.
582 lcp_open(0); /* Start protocol */
918 /* List of protocol names, to make our messages a little more informative. */
932 { 0x33, "Stream Protocol ST-II" },
942 { 0x49, "Serial Data Transport Protocol (PPP-SDTP)" },
954 { 0x8021, "Internet Protocol Control Protocol" },
1010 u_short protocol; local
    [all...]
  /external/webkit/WebCore/page/
SecurityOrigin.cpp 82 , m_protocol(url.protocol().isNull() ? "" : url.protocol().lower())
364 String protocol = databaseIdentifier.substring(0, separator1);
366 return create(KURL(KURL(), protocol + "://" + host + ":" + String::number(port)));
SecurityOrigin.h 68 String protocol() const { return m_protocol; } function in class:WebCore::SecurityOrigin
  /external/webkit/WebCore/page/mac/
WebCoreViewFactory.h 29 @protocol WebCoreViewFactory
172 @protocol WebCorePluginInfo <NSObject>
  /external/webkit/WebKit/mac/Plugins/
WebBasePluginPackage.h 39 @protocol WebPluginManualLoader
  /external/webkit/WebKit/win/Interfaces/
IWebURLAuthenticationChallenge.idl 151 -(id)initWithHost:(NSString *)host port:(int)port protocol:(NSString *)protocol realm:(NSString *)realm authenticationMethod:(NSString *)authenticationMethod
153 HRESULT initWithHost([in] BSTR host, [in] int port, [in] BSTR protocol, [in] BSTR realm, [in] BSTR authenticationMethod);
171 -(NSString *)protocol
173 HRESULT protocol([out, retval] BSTR* result);
  /external/wpa_supplicant/
l2_packet_pcap.c 203 unsigned short protocol)
243 protocol);
285 const char *ifname, const u8 *own_addr, unsigned short protocol,
308 if (l2_packet_init_libpcap(l2, protocol)) {
l2_packet_winpcap.c 168 unsigned short protocol)
187 protocol);
205 const char *ifname, const u8 *own_addr, unsigned short protocol,
228 if (l2_packet_init_libpcap(l2, protocol)) {

Completed in 407 milliseconds

1 2 3 4 5 6 7 8 91011>>