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

1 2 3

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
pop_options.hpp 36 # undef Protocol
push_options.hpp 36 # if !defined(Protocol) && !defined(id)
37 # define Protocol cpp_Protocol
  /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/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...]
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Protocol.java 22 public class Protocol {
  /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/nist-sip/java/gov/nist/javax/sip/header/
Protocol.java 34 * Protocol name and version.
43 public class Protocol extends SIPObject {
80 /** get the protocol name
87 /** get the protocol version
95 * Get the protocol name + version
109 } else throw new ParseException( "Missing '/' in protocol", 0 );
146 public Protocol() {
153 * $Log: Protocol.java,v $
  /system/connectivity/shill/
http_url.h 29 enum Protocol {
47 Protocol protocol() const { return protocol_; } function in class:shill::HTTPURL
58 Protocol protocol_;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HeadersTest.java 19 import com.squareup.okhttp.Protocol;
46 FramedTransport.readNameValueBlock(headerBlock, Protocol.SPDY_3).request(request).build();
49 assertEquals(Protocol.SPDY_3, response.protocol());
54 assertEquals(Protocol.SPDY_3.toString(), headers.get(OkHeaders.SELECTED_PROTOCOL));
56 assertEquals(Protocol.SPDY_3.toString(), headers.value(0));
74 FramedTransport.readNameValueBlock(headerBlock, Protocol.SPDY_3).request(request).build();
78 assertEquals(Protocol.SPDY_3.toString(), headers.value(0));
87 Response response = FramedTransport.readNameValueBlock(headerBlock, Protocol.HTTP_2)
92 assertEquals(Protocol.HTTP_2.toString(), headers.value(0))
    [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)
  /external/avahi/avahi-sharp/
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;
RecordBrowser.cs 31 internal delegate void RecordBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
55 public Protocol Protocol;
83 private Protocol proto;
94 private static extern IntPtr avahi_record_browser_new (IntPtr client, int iface, Protocol proto,
133 this (client, -1, Protocol.Unspecified, name, RecordClass.In, type, LookupFlags.None)
137 public RecordBrowser (Client client, int iface, Protocol proto, string name, RecordClass clazz,
187 private void OnRecordBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
193 info.Protocol = proto;
ServiceBrowser.cs 28 internal delegate void ServiceBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
35 public Protocol Protocol;
71 private Protocol proto;
122 public ServiceBrowser (Client client, string type, string domain) : this (client, -1, Protocol.Unspecified,
127 public ServiceBrowser (Client client, int iface, Protocol proto, string type, string domain, LookupFlags flags)
176 private void OnServiceBrowserCallback (IntPtr browser, int iface, Protocol proto, BrowserEvent bevent,
183 info.Protocol = proto;
Client.cs 72 public enum Protocol {
  /external/clang/test/Analysis/Inputs/
system-header-simulator-objc.h 40 @class NSString, Protocol;
44 @protocol NSObject
51 @end @protocol NSCopying - (id)copyWithZone:(NSZone *)zone;
52 @end @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone;
53 @end @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder;
67 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
  /frameworks/base/core/java/com/android/internal/util/
Protocol.java 26 * codes with Message.what starting at Protocol.WIFI + 1 and less than or equal to Protocol.WIFI +
27 * Protocol.MAX_MESSAGE
34 public class Protocol {
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 19 * &lt;app&gt;.&lt;protocol&gt;.&lt;servicedomain&gt;.&lt;parentdomain&gt;.<br/>
20 * &lt;Instance&gt;.&lt;app&gt;.&lt;protocol&gt;.&lt;servicedomain&gt;.&lt;parentdomain&gt;.<br/>
21 * &lt;sub&gt;._sub.&lt;app&gt;.&lt;protocol&gt;.&lt;servicedomain&gt;.&lt;parentdomain&gt;.
26 * <li>&lt;protocol&gt;: This is either "_tcp" or "_udp"</li>
27 * <li>&lt;app&gt;: This define the application protocol. Typical example are "_http", "_ftp", etc.</li>
29 * <li>&lt;sub&gt;: This is the subtype for the application protocol</li>
49 * Protocol Field.
51 Protocol,
382 * dictionary of values to build the fully qualified service name. Mandatory keys are Application and Instance. The Domain default is local, the Protocol default is tcp and the subtype default is none.
599 * Get the URL for this service. An URL is created by combining the protocol, address, port, and path properties
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stm.h 23 ULONG Protocol;
ipxrtdef.h 186 ULONG Protocol;
mpeg2structs.h 45 BYTE Protocol;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
smbus.h 62 /* SMB_REQUEST.Protocol constants */
78 UCHAR Protocol;
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 25 import com.squareup.okhttp.Protocol;
240 throw new ProtocolException("This protocol does not support input");
587 * defined in {@link Protocol OkHttp's protocol enumeration}.
590 List<Protocol> protocolsList = new ArrayList<>();
594 for (String protocol : protocolsString.split(",", -1)) {
596 protocolsList.add(Protocol.get(protocol));
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
remote_test.py 751 self.assertEquals(protojson, config.protocol)
761 self.assertEquals(protojson, config.protocol)
780 self.assertEquals(protojson, config.protocol)
843 class Protocol(object):
846 self.protocols.add_protocol(Protocol, 'text')
891 self.assertEquals(protobuf, protobuf_protocol.protocol)
895 protojson_protocol.protocol)
902 self.assertEquals(protobuf, protobuf_protocol.protocol)
906 protojson_protocol.protocol)
  /external/clang/lib/Sema/
Sema.cpp 188 // Create the built-in forward declaratino for 'Protocol'.
189 DeclarationName Protocol = &Context.Idents.get("Protocol");
190 if (IdResolver.begin(Protocol) == IdResolver.end())
    [all...]

Completed in 1110 milliseconds

1 2 3