HomeSort by relevance Sort by last modified time
    Searched defs:protocol (Results 51 - 75 of 773) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/protocol/
RequestTargetHost.java 2 * $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;
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;
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/linux-kselftest/tools/testing/selftests/bpf/
test_iptunnel_common.h 21 __u8 protocol; member in struct:vip
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Protocol.java 25 * <h3>Protocol vs Scheme</h3>
28 * the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word <i>protocol</i>
31 public enum Protocol {
48 * Chromium's binary-framed protocol that includes header compression,
53 * href="http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3-1">draft
60 * The IETF's binary-framed protocol that includes header compression,
71 private final String protocol; field in class:Protocol
73 Protocol(String protocol)
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/
OkUrlFactory.java 58 String protocol = url.getProtocol(); local
62 if (protocol.equals("http")) return new HttpURLConnectionImpl(url, copy, urlFilter);
63 if (protocol.equals("https")) return new HttpsURLConnectionImpl(url, copy, urlFilter);
64 throw new IllegalArgumentException("Unexpected protocol: " + protocol);
77 @Override public URLStreamHandler createURLStreamHandler(final String protocol) {
78 if (!protocol.equals("http") && !protocol.equals("https")) return null;
90 if (protocol.equals("http")) return 80;
91 if (protocol.equals("https")) return 443
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
FilterUrlByProtocolAttributePolicy.java 37 * the value have no protocol or have an allowed protocol.
40 * URLs with protocols must match the protocol set passed to the constructor.
46 * Same-origin URLs, URLs without any protocol or authority part are always
71 case '/': case '#': case '?': // No protocol.
80 String protocol = Strings.toLowerCase(s.substring(0, i)); local
81 if (!protocols.contains(protocol)) { return null; }
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_env.h 40 const string* protocol = nullptr; member in struct:tensorflow::WorkerCacheFactoryOptions
52 protocol = &server_def.protocol();
  /external/tensorflow/tensorflow/core/platform/posix/
net.cc 35 const int protocol = is_tcp ? IPPROTO_TCP : 0; local
36 const int fd = socket(AF_INET, is_tcp ? SOCK_STREAM : SOCK_DGRAM, protocol);
  /external/v8/src/inspector/
string-util.cc 7 #include "src/inspector/protocol/Protocol.h"
93 namespace protocol { namespace in namespace:v8_inspector
95 std::unique_ptr<protocol::Value> StringUtil::parseJSON(
106 std::unique_ptr<protocol::Value> StringUtil::parseJSON(const String16& string) {
112 } // namespace protocol
string-util.h 18 namespace protocol { namespace in namespace:v8_inspector
57 static std::unique_ptr<protocol::Value> parseJSON(const String16& json);
58 static std::unique_ptr<protocol::Value> parseJSON(const StringView& json);
61 } // namespace protocol
  /external/webrtc/webrtc/base/
httpcommon-inl.h 83 CTYPE protocol[9]; local
84 asccpyn(protocol, arraysize(protocol), secure_ ? "https://" : "http://");
85 val->append(protocol);
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
Handler.java 30 package sun.net.www.protocol.ftp;
  /packages/apps/Dialer/java/com/android/dialer/p13n/inference/protocol/
P13nRanker.java 15 package com.android.dialer.p13n.inference.protocol;
  /packages/apps/Dialer/java/com/android/incallui/answer/protocol/
AnswerScreen.java 17 package com.android.incallui.answer.protocol;
AnswerScreenDelegate.java 17 package com.android.incallui.answer.protocol;
  /packages/apps/Dialer/java/com/android/incallui/incall/protocol/
InCallScreenDelegate.java 17 package com.android.incallui.incall.protocol;
  /packages/apps/Dialer/java/com/android/incallui/rtt/protocol/
RttCallScreen.java 17 package com.android.incallui.rtt.protocol;
  /packages/apps/Dialer/java/com/android/incallui/video/protocol/
VideoCallScreen.java 17 package com.android.incallui.video.protocol;
  /packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
CvvmProtocol.java 17 package com.android.voicemail.impl.protocol;
26 * A flavor of OMTP protocol with a different mobile originated (MO) format
ProtocolHelper.java 17 package com.android.voicemail.impl.protocol;
29 VisualVoicemailProtocol protocol, OmtpVvmCarrierConfigHelper config) {
38 return protocol.createMessageSender(
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIm.java 41 int protocol = builder.getInt(Im.PROTOCOL); local
44 Im.getProtocolLabel(mContext.getResources(), protocol, customProtocol).toString()); local
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
portconquery.py 37 protocol The protocol to match (socket.IPPROTO_TCP for
104 def protocol(self): member in class:PortconQuery
107 @protocol.setter
108 def protocol(self, value): member in class:PortconQuery
124 self.log.debug("Protocol: {0.protocol!r}".format(self))
138 if self.protocol and self.protocol != portcon.protocol
    [all...]
  /system/netd/server/dns/
DnsTlsServer.h 30 // secure protocol.
59 int protocol = IPPROTO_TCP; member in struct:android::net::DnsTlsServer
  /libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
Handler.java 26 package sun.net.www.protocol.jar;
99 String protocol = u.getProtocol(); local
100 if (protocol != null)
101 h += protocol.hashCode();

Completed in 454 milliseconds

1 23 4 5 6 7 8 91011>>