HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 126 - 150 of 514) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-http/src/org/apache/http/protocol/
HTTP.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HTTP.java $
32 package org.apache.http.protocol;
35 * Constants and static helpers related to the HTTP protocol.
HttpDateGenerator.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpDateGenerator.java $
32 package org.apache.http.protocol;
42 * Generates a date in the format required by the HTTP protocol.
ResponseDate.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ResponseDate.java $
32 package org.apache.http.protocol;
  /external/dbus/dbus/
dbus.h 38 #include <dbus/dbus-protocol.h>
  /external/kernel-headers/original/linux/
netfilter_ipv4.h 23 /* Protocol. */
30 /* Per-protocol information: only matters if proto match. */
83 unsigned int dataoff, u_int8_t protocol);
netfilter_ipv6.h 26 /* Protocol. */
34 /* Per-protocol information: only matters if proto match. */
77 unsigned int dataoff, u_int8_t protocol);
  /external/opencore/protocols/rtsp_parcom/src/
rtsp_transport.h 32 ProtocolType protocol; member in struct:RtspTransport
  /external/webkit/WebCore/html/
HTMLAnchorElement.idl 42 readonly attribute DOMString protocol;
50 attribute [ConvertNullToNullString] DOMString protocol;
HTMLAreaElement.idl 38 readonly attribute DOMString protocol;
  /external/webkit/WebKit/chromium/public/
WebSecurityOrigin.h 67 WEBKIT_API WebString protocol() const;
  /external/webkit/WebKit/mac/Plugins/
WebPluginContainerCheck.h 37 @protocol WebPluginContainerCheckController <NSObject>
  /external/webkit/WebKit/mac/Storage/
WebSecurityOrigin.mm 51 - (NSString*)protocol
53 return reinterpret_cast<SecurityOrigin*>(_private)->protocol();
  /external/webkit/WebKit/mac/WebView/
WebVideoFullscreenController.h 34 @protocol WebVideoFullscreenControllerDelegate;
  /external/webkit/WebKit/win/
WebSecurityOrigin.h 52 virtual HRESULT STDMETHODCALLTYPE protocol(
  /external/wpa_supplicant/
l2_packet.h 64 * @protocol: Ethernet protocol number in host byte order
77 const char *ifname, const u8 *own_addr, unsigned short protocol,
100 * @proto: Protocol/ethertype for the packet in host byte order (only used if
  /external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/
l2_packet.h 53 * @protocol: Ethernet protocol number in host byte order
66 const char *ifname, const u8 *own_addr, unsigned short protocol,
89 * @proto: Protocol/ethertype for the packet in host byte order (only used if
  /external/iproute2/examples/
SYN-DoS.rate.limit 35 $TC filter add dev $INDEV parent ffff: protocol ip prio 50 handle 1 fw \
  /external/webkit/WebCore/bindings/js/
JSWebSocketConstructor.cpp 76 const String& protocol = args.at(1).toString(exec); local
79 webSocket->connect(url, protocol, ec);
  /external/webkit/WebCore/page/
Location.cpp 69 String Location::protocol() const function in class:WebCore::Location
74 return url().protocol() + ":";
  /external/webkit/WebCore/websockets/
WorkerThreadableWebSocketChannel.cpp 52 WorkerThreadableWebSocketChannel::WorkerThreadableWebSocketChannel(WorkerContext* context, WebSocketChannelClient* client, const String& taskMode, const KURL& url, const String& protocol)
55 , m_bridge(new Bridge(m_workerClientWrapper, m_workerContext, taskMode, url, protocol))
97 WorkerThreadableWebSocketChannel::Peer::Peer(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol)
100 , m_mainWebSocketChannel(WebSocketChannel::create(context, this, url, protocol))
213 void WorkerThreadableWebSocketChannel::Bridge::mainThreadCreateWebSocketChannel(ScriptExecutionContext* context, Bridge* thisPtr, RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, const String& taskMode, const KURL& url, const String& protocol)
218 Peer* peer = Peer::create(clientWrapper, thisPtr->m_loaderProxy, context, taskMode, url, protocol);
222 WorkerThreadableWebSocketChannel::Bridge::Bridge(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtr<WorkerContext> workerContext, const String& taskMode, const KURL& url, const String& protocol)
231 m_loaderProxy.postTaskToLoader(createCallbackTask(&Bridge::mainThreadCreateWebSocketChannel, this, m_workerClientWrapper, m_taskMode, url, protocol));
  /packages/apps/Email/src/com/android/email/service/
IEmailService.aidl 23 int validate(in String protocol, in String host, in String userName, in String password,
  /packages/apps/Email/tests/src/com/android/email/activity/setup/
AccountSetupNamesTests.java 121 * Create an intent with the Account in it, using protocol as the protocol and name as the
124 private Intent getTestIntent(String protocol, String name) {
128 hostAuth.mProtocol = protocol;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
WindowsLoader.java 33 public static Window[] loadWindows(IDevice device, int protocol, int server) {
37 System.out.println("protocol = " + protocol);
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_ContactMethodsTest.java 48 notes = "Test methods which encode or decode protocol",
54 notes = "Test methods which encode or decode protocol",
60 notes = "Test methods which encode or decode protocol",
66 int protocol = ContactMethods.PROTOCOL_AIM; local
67 String encodedString = ContactMethods.encodePredefinedImProtocol(protocol);
69 assertEquals(protocol, ContactMethods.decodeImProtocol(encodedString));
71 protocol = ContactMethods.PROTOCOL_QQ;
72 encodedString = ContactMethods.encodePredefinedImProtocol(protocol);
74 assertEquals(protocol, ContactMethods.decodeImProtocol(encodedString));
76 String protocolString = "custom protocol";
    [all...]
  /development/tools/axl/
axl.py 26 from twisted.internet import protocol, reactor, defer namespace
27 from twisted.internet.protocol import ServerFactory, Protocol
31 class BaseProtocol(Protocol):
242 for protocol in Drop, ReadAndDrop, GarbageStatus, BadHeader, PauseHeader, \
246 factory.protocol = protocol
247 reactor.listenTCP(protocol.PORT, factory)

Completed in 179 milliseconds

1 2 3 4 56 7 8 91011>>