HomeSort by relevance Sort by last modified time
    Searched full:protocols (Results 401 - 425 of 1555) sorted by null

<<11121314151617181920>>

  /external/curl/docs/
ROADMAP.md 87 Allow the email protocols to return the capabilities before
129 give one API for protocols to call)
  /external/curl/lib/
pingpong.h 43 * 'pingpong' is the generic struct used for protocols doing server<->client
69 /* Function pointers the protocols MUST implement and provide for the
  /external/iptables/extensions/
libip6t_ipv6header.c 19 /* A few hardcoded protocols for 'all' and in case the user has no
20 * /etc/protocols */
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DelegatingSSLSocket.java 68 @Override public void setEnabledProtocols(String[] protocols) {
69 delegate.setEnabledProtocols(protocols);
  /external/owasp/sanitizer/
CHANGE_LOG.html 12 <li value="218">Fixed bug: case-sensitivity of URL protocols was ignored
13 when a set of protocols other than the standard set was used</li>
  /external/valgrind/coregrind/m_gdbserver/gdb/
signals.h 30 protocols, if they use a different numbering, should make sure to
43 remote protocols use a similar encoding. However, it is
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLContextSpi.java 154 * <p>The parameters will always have the ciphersuite and protocols
177 * <p>The parameters will always have the ciphersuite and protocols
  /prebuilts/go/darwin-x86/src/net/
lookup.go 12 // protocols contains minimal mappings between internet protocol
17 var protocols = map[string]int{ var
  /prebuilts/go/linux-x86/src/net/
lookup.go 12 // protocols contains minimal mappings between internet protocol
17 var protocols = map[string]int{ var
  /external/llvm/test/tools/llvm-objdump/X86/
macho-objc-meta-data.test 78 OBJC2_64BIT_EXE: protocols 0x1000023f0
115 OBJC2_64BIT_EXE: protocols 0x1000023f0
160 OBJC2_64BIT_OBJ: protocols 0x0
197 OBJC2_64BIT_OBJ: protocols 0x0
265 OBJC2_32BIT_EXE: protocols 0x0
274 OBJC2_32BIT_EXE: protocols 0x62e8
319 OBJC2_32BIT_EXE: protocols 0x0
328 OBJC2_32BIT_EXE: protocols 0x62e8
649 OBJC1_32BIT_EXE: protocols 0x00000000 (not in an __OBJC section)
    [all...]
  /external/apache-http/src/org/apache/http/impl/entity/
LaxContentLengthStrategy.java 49 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec4.4">Section 4.4</a>,
50 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6">Section 3.6</a>,
51 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.41">Section 14.41</a>
52 * and <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec14.13">Section 14.13</a>
53 * of <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.txt">RFC 2616</a>, but is lenient
StrictContentLengthStrategy.java 46 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec4.4">Section 4.4</a>,
47 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6">Section 3.6</a>,
48 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.41">Section 14.41</a>
49 * and <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec14.13">Section 14.13</a>
50 * of <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.txt">RFC 2616</a>
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
transport.py 158 protocol: If string, will look up a protocol from the default Protocols
165 protocols = remote.Protocols.get_default()
167 protocol = protocols.lookup_by_name(protocol)
169 protocol = protocols.lookup_by_content_type(protocol)
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 315 /// All of the protocols that have been declared.
382 /// and ObjC2 protocols. Objective-C 1 protocols can not contain optional
415 /// Generates a list of referenced protocols. Classes, categories, and
416 /// protocols all use this structure.
417 llvm::Constant *GenerateProtocolList(ArrayRef<std::string> Protocols);
418 /// To ensure that all protocols are seen by the runtime, we add a category on
420 /// protocols. This is a horribly ugly hack, but it allows us to collect all
421 /// of the protocols without changing the ABI.
433 llvm::Constant *Protocols,
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 74 /// \brief A list of Objective-C protocols, along with the source
95 /// categories, protocols, and class implementations. While C++ member
156 /// base classes, its protocols, or its categories' protocols, that has
435 /// base classes, its protocols, or its categories' protocols, that has
445 /// base classes (and base's categories), its protocols, or its categories'
446 /// protocols, that has
464 // Related to protocols declared in \@protocol
791 /// This includes, class's and its conforming protocols' properties
1038 protocol_range protocols() const { function in class:clang::ObjCInterfaceDecl
1783 protocol_range protocols() const { function in class:clang::ObjCProtocolDecl
2003 protocol_range protocols() const { function in class:clang::ObjCCategoryDecl
    [all...]
  /external/curl/src/
tool_help.c 168 " --proto PROTOCOLS Enable/disable PROTOCOLS",
169 " --proto-redir PROTOCOLS Enable/disable PROTOCOLS on redirect",
306 if(curlinfo->protocols) {
307 printf("Protocols: ");
308 for(proto = curlinfo->protocols; *proto; ++proto) {
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSocketFunctionalTest.java 141 String[] protocols = { "SSLv3", "TLSv1" }; local
150 ssocket.setEnabledProtocols(new String[] { protocols[j] });
157 csocket.setEnabledProtocols(new String[] { protocols[j] });
  /external/apache-http/src/org/apache/http/message/
HeaderValueParser.java 124 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2"
127 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6"
130 * <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.txt">RFC 2616</a>.
  /external/clang/lib/AST/
DeclPrinter.cpp     [all...]
  /external/libnfc-nci/src/nfa/int/
nfa_ee_int.h 133 tNFA_PROTOCOL_MASK proto_switch_on; /* default routing - protocols switch_on */
134 tNFA_PROTOCOL_MASK proto_switch_off; /* default routing - protocols switch_off */
135 tNFA_PROTOCOL_MASK proto_battery_off; /* default routing - protocols battery_off */
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asynchat.py 28 r"""A class supporting chat-style (command/response) protocols.
30 This class adds support for 'chat' style protocols - where one side
32 the common internet protocols - smtp, nntp, ftp, etc..).
  /prebuilts/gdb/linux-x86/lib/python2.7/
asynchat.py 28 r"""A class supporting chat-style (command/response) protocols.
30 This class adds support for 'chat' style protocols - where one side
32 the common internet protocols - smtp, nntp, ftp, etc..).
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asynchat.py 28 r"""A class supporting chat-style (command/response) protocols.
30 This class adds support for 'chat' style protocols - where one side
32 the common internet protocols - smtp, nntp, ftp, etc..).
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asynchat.py 28 r"""A class supporting chat-style (command/response) protocols.
30 This class adds support for 'chat' style protocols - where one side
32 the common internet protocols - smtp, nntp, ftp, etc..).
  /system/webservd/libwebserv/
dbus_protocol_handler.cc 91 std::set<std::string> protocols; local
93 protocols.insert(pair.second->protocol());
94 return protocols;

Completed in 1831 milliseconds

<<11121314151617181920>>