Searched defs:protocol (Results 1 - 25 of 273) sorted by relevance

1234567891011

/external/apache-http/src/org/apache/http/protocol/
H A DHttpProcessor.java2 * $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;
H A DHttpRequestHandlerResolver.java2 * $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;
H A DHttpExpectationVerifier.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpExpectationVerifier.java $
32 package org.apache.http.protocol;
H A DHttpRequestHandler.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpRequestHandler.java $
32 package org.apache.http.protocol;
H A DRequestConnControl.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/RequestConnControl.java $
32 package org.apache.http.protocol;
H A DRequestContent.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/RequestContent.java $
32 package org.apache.http.protocol;
H A DRequestDate.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/RequestDate.java $
32 package org.apache.http.protocol;
H A DRequestExpectContinue.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/RequestExpectContinue.java $
32 package org.apache.http.protocol;
H A DRequestTargetHost.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/RequestTargetHost.java $
32 package org.apache.http.protocol;
H A DRequestUserAgent.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/RequestUserAgent.java $
32 package org.apache.http.protocol;
H A DResponseConnControl.java2 * $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;
H A DResponseContent.java2 * $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;
H A DResponseDate.java2 * $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;
H A DResponseServer.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/ResponseServer.java $
32 package org.apache.http.protocol;
/external/webkit/Source/WebCore/page/
H A DOriginAccessEntry.cpp38 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting) argument
39 : m_protocol(protocol.lower())
52 ASSERT(origin.protocol() == origin.protocol().lower());
54 if (m_protocol != origin.protocol())
/external/apache-http/src/org/apache/http/client/protocol/
H A DRequestAddCookies.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestAddCookies.java $
32 package org.apache.http.client.protocol;
56 import org.apache.http.protocol.HttpContext;
57 import org.apache.http.protocol.ExecutionContext;
H A DRequestDefaultHeaders.java2 * $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;
H A DRequestProxyAuthentication.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestProxyAuthentication.java $
32 package org.apache.http.client.protocol;
46 import org.apache.http.protocol.HttpContext;
H A DRequestTargetAuthentication.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestTargetAuthentication.java $
32 package org.apache.http.client.protocol;
46 import org.apache.http.protocol.HttpContext;
/external/chromium/chrome/browser/custom_handlers/
H A Dprotocol_handler.h14 // A single tuple of (protocol, url, title) that indicates how URLs of the
15 // given protocol should be rewritten to be handled.
19 static ProtocolHandler* CreateProtocolHandler(const std::string& protocol,
27 // Encodes this protocol handler as a Value. The caller is responsible for
31 std::string protocol() const { return protocol_; } function in class:ProtocolHandler
38 ProtocolHandler(const std::string& protocol,
/external/chromium/net/tools/fetch/
H A Dhttp_server_response_info.h18 // The response protocol.
19 std::string protocol; member in class:HttpServerResponseInfo
/external/webkit/Source/WebCore/bindings/js/
H A DJSWebSocketCustom.cpp66 String protocol = ustringToString(exec->argument(1).toString(exec)); local
69 webSocket->connect(url, protocol, ec);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebSocketCustom.cpp78 v8::Handle<v8::String> protocol = args[1]->ToString(); local
81 webSocket->connect(url, toWebCoreString(protocol), ec);
/external/webkit/Source/WebCore/websockets/
H A DThreadableWebSocketChannel.cpp53 PassRefPtr<ThreadableWebSocketChannel> ThreadableWebSocketChannel::create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) argument
64 return WorkerThreadableWebSocketChannel::create(workerContext, client, mode, url, protocol);
69 return WebSocketChannel::create(context, client, url, protocol);
/external/webkit/Source/WebCore/workers/
H A DWorkerLocation.cpp42 String WorkerLocation::protocol() const function in class:WebCore::WorkerLocation
44 return m_url.protocol() + ":";

Completed in 320 milliseconds

1234567891011