HomeSort by relevance Sort by last modified time
    Searched refs:Protocol (Results 1 - 25 of 246) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/Index/Inputs/
declare-objc-predef.h 1 @class Protocol;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
socket_option.hpp 70 template <typename Protocol>
71 int level(const Protocol&) const
77 template <typename Protocol>
78 int name(const Protocol&) const
84 template <typename Protocol>
85 int* data(const Protocol&)
91 template <typename Protocol>
92 const int* data(const Protocol&) const
98 template <typename Protocol>
99 std::size_t size(const Protocol&) cons
    [all...]
push_options.hpp 36 # if !defined(Protocol) && !defined(id)
37 # define Protocol cpp_Protocol
reactive_socket_accept_op.hpp 29 template <typename Socket, typename Protocol>
34 socket_ops::state_type state, Socket& peer, const Protocol& protocol,
35 typename Protocol::endpoint* peer_endpoint, func_type complete_func)
40 protocol_(protocol),
73 Protocol protocol_;
74 typename Protocol::endpoint* peer_endpoint_;
77 template <typename Socket, typename Protocol, typename Handler>
79 public reactive_socket_accept_op_base<Socket, Protocol>
85 socket_ops::state_type state, Socket& peer, const Protocol& protocol
    [all...]
pop_options.hpp 36 # undef Protocol
resolver_service.hpp 30 template <typename Protocol>
39 typedef typename Protocol::endpoint endpoint_type;
42 typedef asio::ip::basic_resolver_query<Protocol> query_type;
45 typedef asio::ip::basic_resolver_iterator<Protocol> iterator_type;
73 typedef resolve_op<Protocol, Handler> op;
93 endpoint.protocol().type(), ec);
105 typedef resolve_endpoint_op<Protocol, Handler> op;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdy3Test.java 18 import com.squareup.okhttp.Protocol;
23 super(Protocol.SPDY_3);
StatusLineTest.java 18 import com.squareup.okhttp.Protocol;
33 assertEquals(Protocol.HTTP_1_1, statusLine.protocol);
42 assertEquals(Protocol.HTTP_1_1, statusLine.protocol);
47 * This is not defined in the protocol but some servers won't add the leading
56 assertEquals(Protocol.HTTP_1_1, statusLine.protocol);
64 assertEquals(Protocol.HTTP_1_0, statusLine.protocol);
    [all...]
  /external/autotest/client/site_tests/kernel_ProtocolCheck/
kernel_ProtocolCheck.py 22 # protocol.
23 Protocol = namedtuple('Protocol', ['name', 'domain', 'socket_type',
26 Protocol('RFCOMM', AF_BLUETOOTH, socket.SOCK_STREAM, BTPROTO_RFCOMM),
27 Protocol('RFCOMM', AF_BLUETOOTH, socket.SOCK_SEQPACKET, BTPROTO_SCO),
28 Protocol('L2CAP', AF_BLUETOOTH, socket.SOCK_STREAM, BTPROTO_L2CAP),
29 Protocol('HCI', AF_BLUETOOTH, socket.SOCK_RAW, BTPROTO_HCI),
30 Protocol('PACKET', socket.AF_PACKET, socket.SOCK_DGRAM, 0),
31 Protocol('RAWv6', socket.AF_INET6, socket.SOCK_RAW, 0),
32 Protocol('UDPLITEv6', socket.AF_INET6, socket.SOCK_DGRAM
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
connect.hpp 60 template <typename Protocol, typename SocketService, typename Iterator>
61 Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin);
97 template <typename Protocol, typename SocketService, typename Iterator>
98 Iterator connect(basic_socket<Protocol, SocketService>& s,
129 template <typename Protocol, typename SocketService, typename Iterator>
130 Iterator connect(basic_socket<Protocol, SocketService>& s,
166 template <typename Protocol, typename SocketService, typename Iterator>
167 Iterator connect(basic_socket<Protocol, SocketService>& s,
229 template <typename Protocol, typename SocketService,
231 Iterator connect(basic_socket<Protocol, SocketService>& s
    [all...]
basic_stream_socket.hpp 40 template <typename Protocol,
41 typename StreamSocketService = stream_socket_service<Protocol> >
43 : public basic_socket<Protocol, StreamSocketService>
53 /// The protocol type.
54 typedef Protocol protocol_type;
57 typedef typename Protocol::endpoint endpoint_type;
69 : basic_socket<Protocol, StreamSocketService>(io_service)
81 * @param protocol An object specifying protocol parameters to be used.
86 const protocol_type& protocol)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Variant.java 18 import com.squareup.okhttp.Protocol;
22 /** A version and dialect of the framed socket protocol. */
25 /** The protocol as selected using ALPN. */
26 Protocol getProtocol();
  /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...]
  /system/connectivity/shill/
http_url.h 29 enum Protocol {
47 Protocol protocol() const { return protocol_; } function in class:shill::HTTPURL
58 Protocol protocol_;
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Protocol.java 22 public class Protocol {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
StatusLine.java 3 import com.squareup.okhttp.Protocol;
15 public final Protocol protocol; field in class:StatusLine
19 public StatusLine(Protocol protocol, int code, String message) {
20 this.protocol = protocol;
26 return new StatusLine(response.protocol(), response.code(), response.message());
33 // Parse protocol like "HTTP/1.1" followed by a space.
35 Protocol protocol local
    [all...]
RequestLine.java 4 import com.squareup.okhttp.Protocol;
18 static String get(Request request, Proxy.Type proxyType, Protocol protocol) {
30 result.append(version(protocol));
60 public static String version(Protocol protocol) {
61 return protocol == Protocol.HTTP_1_0 ? "HTTP/1.0" : "HTTP/1.1";
  /external/parameter-framework/asio-1.10.6/include/asio/impl/
connect.hpp 40 template <typename Protocol, typename SocketService, typename Iterator>
41 Iterator connect(basic_socket<Protocol, SocketService>& s, Iterator begin)
49 template <typename Protocol, typename SocketService, typename Iterator>
50 inline Iterator connect(basic_socket<Protocol, SocketService>& s,
56 template <typename Protocol, typename SocketService, typename Iterator>
57 Iterator connect(basic_socket<Protocol, SocketService>& s,
66 template <typename Protocol, typename SocketService, typename Iterator>
67 inline Iterator connect(basic_socket<Protocol, SocketService>& s,
73 template <typename Protocol, typename SocketService,
75 Iterator connect(basic_socket<Protocol, SocketService>& s
    [all...]
  /external/avahi/avahi-sharp/
HostNameResolver.cs 30 internal delegate void HostNameResolverCallback (IntPtr resolver, int iface, Protocol proto,
39 private Protocol proto;
41 private Protocol aproto;
52 private static extern IntPtr avahi_host_name_resolver_new (IntPtr client, int iface, Protocol proto,
53 byte[] hostname, Protocol aproto, LookupFlags flags,
93 public HostNameResolver (Client client, string hostname) : this (client, -1, Protocol.Unspecified,
94 hostname, Protocol.Unspecified,
99 public HostNameResolver (Client client, int iface, Protocol proto, string hostname,
100 Protocol aproto, LookupFlags flags)
149 private void OnHostNameResolverCallback (IntPtr resolver, int iface, Protocol proto
    [all...]
ServiceResolver.cs 30 internal delegate void ServiceResolverCallback (IntPtr resolver, int iface, Protocol proto,
42 private Protocol proto;
46 private Protocol aproto;
54 private static extern IntPtr avahi_service_resolver_new (IntPtr client, int iface, Protocol proto,
56 Protocol aproto, LookupFlags flags,
102 Protocol.Unspecified,
104 Protocol.Unspecified,
110 service.Protocol, service.Name,
112 Protocol.Unspecified,
117 public ServiceResolver (Client client, int iface, Protocol proto, string name
    [all...]
DomainBrowser.cs 27 internal delegate void DomainBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
41 public Protocol Protocol;
69 private Protocol proto;
116 public DomainBrowser (Client client) : this (client, -1, Protocol.Unspecified, client.DomainName,
120 public DomainBrowser (Client client, int iface, Protocol proto, string domain,
169 private void OnDomainBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
175 info.Protocol = proto;
ServiceTypeBrowser.cs 27 internal delegate void ServiceTypeBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
34 public Protocol Protocol;
63 private Protocol proto;
113 public ServiceTypeBrowser (Client client, string domain) : this (client, -1, Protocol.Unspecified,
118 public ServiceTypeBrowser (Client client, int iface, Protocol proto, string domain, LookupFlags flags)
166 private void OnServiceTypeBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
173 info.Protocol = proto;
EntryGroup.cs 91 private static extern int avahi_entry_group_add_service_strlst (IntPtr group, int iface, Protocol proto,
97 private static extern int avahi_entry_group_update_service_strlst (IntPtr group, int iface, Protocol proto,
102 private static extern int avahi_entry_group_add_service_subtype (IntPtr group, int iface, Protocol proto,
107 private static extern int avahi_entry_group_add_address (IntPtr group, int iface, Protocol proto,
112 private static extern int avahi_entry_group_add_record (IntPtr group, int iface, Protocol proto,
203 AddService (-1, Protocol.Unspecified, flags, name, type, domain, null, port, txt);
206 public void AddService (int iface, Protocol proto, PublishFlags flags, string name, string type, string domain,
220 public void AddService (int iface, Protocol proto, PublishFlags flags, string name, string type, string domain,
234 private void AddService (int iface, Protocol proto, PublishFlags flags, string name, string type,
256 UpdateService (-1, Protocol.Unspecified, PublishFlags.None, name, type, domain, txt)
    [all...]
  /system/core/fastboot/
socket.h 31 // interface that enforces the fastboot protocol.
49 enum class Protocol { kTcp, kUdp };
58 static std::unique_ptr<Socket> NewClient(Protocol protocol, const std::string& hostname,
65 static std::unique_ptr<Socket> NewServer(Protocol protocol, int port);
  /external/okhttp/android/main/java/com/squareup/okhttp/internal/
Platform.java 31 import com.squareup.okhttp.Protocol;
71 SSLSocket sslSocket, String hostname, List<Protocol> protocols) {
122 * Returns the concatenation of 8-bit, length prefixed protocol names.
125 static byte[] concatLengthPrefixed(List<Protocol> protocols) {
128 Protocol protocol = protocols.get(i); local
129 if (protocol == Protocol.HTTP_1_0) continue; // No HTTP/1.0 for ALPN.
130 result.writeByte(protocol.toString().length());
131 result.writeUtf8(protocol.toString())
    [all...]

Completed in 1580 milliseconds

1 2 3 4 5 6 7 8 910