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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit2/Shared/
SecurityOriginData.h 46 // FIXME <rdar://9018386>: We should be sending more state across the wire than just the protocol,
49 String protocol; member in struct:WebKit::SecurityOriginData
WebSecurityOrigin.h 47 static PassRefPtr<WebSecurityOrigin> create(const String& protocol, const String& host, int port)
49 RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(protocol, host, port);
55 const String protocol() const { return m_securityOrigin->protocol(); } function in class:WebKit::WebSecurityOrigin
  /frameworks/base/core/java/android/hardware/usb/
UsbInterface.java 48 public UsbInterface(int id, int Class, int subClass, int protocol,
53 mProtocol = protocol;
87 * Returns the interface's protocol field.
89 * @return the interface's protocol
126 int protocol = in.readInt();
128 return new UsbInterface(id, Class, subClass, protocol, endpoints);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
ForwarderManager.java 65 String protocol; local
67 protocol = "https";
70 protocol = "http";
76 url = new URL(protocol, HOST_IP, port, "/");
  /hardware/ti/wlan/wl1271/Test/
qosMngrDbg.c 85 EQosProtocol protocol = QOS_NONE; local
91 WLAN_OS_REPORT(("QOS protocol = QOS_WME\n"));
92 protocol = QOS_WME;
96 WLAN_OS_REPORT(("QOS protocol = NONE\n"));
103 if(protocol != QOS_NONE)
126 if(protocol == QOS_WME)
137 if(protocol == QOS_WME)
148 if(protocol == QOS_WME)
159 if(protocol == QOS_WME)
  /external/dhcpcd/
lpf.c 68 open_socket(struct interface *iface, int protocol)
80 if ((s = socket(PF_PACKET, SOCK_DGRAM, htons(protocol))) == -1)
85 su.sll.sll_protocol = htons(protocol);
92 if (protocol == ETHERTYPE_ARP) {
107 if (protocol == ETHERTYPE_ARP)
122 send_raw_packet(const struct interface *iface, int protocol,
134 su.sll.sll_protocol = htons(protocol);
146 if (protocol == ETHERTYPE_ARP)
155 get_raw_packet(struct interface *iface, int protocol, void *data, ssize_t len)
160 if (protocol == ETHERTYPE_ARP
    [all...]
  /external/webkit/Source/WebCore/websockets/
WorkerThreadableWebSocketChannel.h 57 static PassRefPtr<ThreadableWebSocketChannel> create(WorkerContext* workerContext, WebSocketChannelClient* client, const String& taskMode, const KURL& url, const String& protocol)
59 return adoptRef(new WorkerThreadableWebSocketChannel(workerContext, client, taskMode, url, protocol));
84 static Peer* create(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol)
86 return new Peer(clientWrapper, loaderProxy, context, taskMode, url, protocol);
103 Peer(RefPtr<ThreadableWebSocketChannelClientWrapper>, WorkerLoaderProxy&, ScriptExecutionContext*, const String& taskMode, const KURL&, const String& protocol);
114 static PassRefPtr<Bridge> create(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtr<WorkerContext> workerContext, const String& taskMode, const KURL& url, const String& protocol)
116 return adoptRef(new Bridge(workerClientWrapper, workerContext, taskMode, url, protocol));
131 Bridge(PassRefPtr<ThreadableWebSocketChannelClientWrapper>, PassRefPtr<WorkerContext>, const String& taskMode, const KURL&, const String& protocol);
136 static void mainThreadCreateWebSocketChannel(ScriptExecutionContext*, Bridge* thisPtr, RefPtr<ThreadableWebSocketChannelClientWrapper>, const String& taskMode, const KURL&, const String& protocol);
151 WorkerThreadableWebSocketChannel(WorkerContext*, WebSocketChannelClient*, const String& taskMode, const KURL&, const String& protocol);
    [all...]
WebSocket.cpp 55 static bool isValidProtocolString(const String& protocol)
57 if (protocol.isNull())
59 if (protocol.isEmpty())
61 const UChar* characters = protocol.characters();
62 for (size_t i = 0; i < protocol.length(); i++) {
69 static String encodeProtocolString(const String& protocol)
72 for (size_t i = 0; i < protocol.length(); i++) {
73 if (protocol[i] < 0x20 || protocol[i] > 0x7E)
74 builder.append(String::format("\\u%04X", protocol[i]))
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
TestHttpClient.java 49 import org.apache.http.protocol.BasicHttpProcessor;
50 import org.apache.http.protocol.HttpContext;
51 import org.apache.http.protocol.BasicHttpContext;
52 import org.apache.http.protocol.ExecutionContext;
53 import org.apache.http.protocol.HttpRequestExecutor;
54 import org.apache.http.protocol.RequestConnControl;
55 import org.apache.http.protocol.RequestContent;
56 import org.apache.http.protocol.RequestExpectContinue;
57 import org.apache.http.protocol.RequestTargetHost;
58 import org.apache.http.protocol.RequestUserAgent
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ApnSetting.java 39 public final String protocol; field in class:ApnSetting
58 String protocol, String roamingProtocol, boolean carrierEnabled, int bearer) {
72 this.protocol = protocol;
94 * <type>[| <type>...], <protocol>, <roaming_protocol>, <carrierEnabled>, <bearer>
126 String protocol, roamingProtocol; local
132 protocol = RILConstants.SETUP_DATA_PROTOCOL_IP;
141 protocol = a[14];
152 a[9],a[4],a[5],authType,typeArray,protocol,roamingProtocol,carrierEnabled,bearer);
174 sb.append(", ").append(protocol);
    [all...]
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler_registry.cc 24 if (protocolHandlers_.find(handler->protocol()) == protocolHandlers_.end()) {
27 if (!policy->IsWebSafeScheme(handler->protocol())) {
28 policy->RegisterWebSafeScheme(handler->protocol());
30 net::URLRequest::RegisterProtocolFactory(handler->protocol(),
33 protocolHandlers_[handler->protocol()] = handler;
79 ProtocolHandler* currentHandler = GetHandlerFor(handler->protocol());
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionmessages.h 82 SessionMessage(SignalingProtocol protocol, ActionType type,
84 protocol(protocol), type(type), sid(sid), initiator(initiator),
90 SignalingProtocol protocol; member in struct:cricket::SessionMessage
208 bool ParseContentType(SignalingProtocol protocol,
215 bool ParseSessionInitiate(SignalingProtocol protocol,
221 bool WriteSessionInitiate(SignalingProtocol protocol,
228 bool ParseSessionAccept(SignalingProtocol protocol,
234 bool WriteSessionAccept(SignalingProtocol protocol,
241 bool ParseSessionTerminate(SignalingProtocol protocol,
    [all...]
p2ptransport.h 60 virtual bool ParseCandidates(SignalingProtocol protocol,
64 virtual bool WriteCandidates(SignalingProtocol protocol,
rawtransport.h 47 virtual bool ParseCandidates(SignalingProtocol protocol,
51 virtual bool WriteCandidates(SignalingProtocol protocol,
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
ANTLRMismatchedTreeNodeException.h 30 @protocol ANTLRIntStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
ANTLRMismatchedTreeNodeException.h 30 @protocol ANTLRIntStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
  /external/apache-http/src/org/apache/http/client/protocol/
ClientContextConfigurer.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/ClientContextConfigurer.java $
32 package org.apache.http.client.protocol;
40 import org.apache.http.protocol.HttpContext;
RequestDefaultHeaders.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestDefaultHeaders.java $
32 package org.apache.http.client.protocol;
42 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/impl/client/
DefaultConnectionKeepAliveStrategy.java 38 import org.apache.http.protocol.HTTP;
39 import org.apache.http.protocol.HttpContext;
  /external/iproute2/testsuite/tests/
policer 5 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
12 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
  /external/webkit/Source/WebCore/workers/
WorkerLocation.cpp 42 String WorkerLocation::protocol() const function in class:WebCore::WorkerLocation
44 return m_url.protocol() + ":";

Completed in 1138 milliseconds

1 2 3 45 6 7 8 91011>>