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

1 2 3 45 6 7 8 91011>>

  /bionic/libc/kernel/uapi/linux/netfilter_bridge/
ebt_ip6.h 38 __u8 protocol; member in struct:ebt_ip6_info
  /external/apache-http/src/org/apache/http/
ProtocolVersion.java 39 * Represents a protocol version, as specified in RFC 2616.
42 * for the protocol name. It defines a protocol version "SIP/2.0".
46 * This class defines a protocol version as a combination of
47 * protocol name, major version number, and minor version number.
66 /** Name of the protocol. */
67 protected final String protocol; field in class:ProtocolVersion
69 /** Major version number of the protocol */
72 /** Minor version number of the protocol */
77 * Create a protocol version designator
    [all...]
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 2 * $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;
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestExecutor.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpRequestExecutor.java $
32 package org.apache.http.protocol;
105 * @throws HttpException in case of a protocol or processing problem
148 * @throws HttpException in case of a protocol or processing problem
185 * @throws HttpException in case of a protocol or processing problem
261 * @throws HttpException in case of a protocol or processing problem
307 * @throws HttpException in case of a protocol or processing problem
UriPatternMatcher.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/UriPatternMatcher.java $
32 package org.apache.http.protocol;
  /external/conscrypt/common/src/main/java/org/conscrypt/
ClientSessionContext.java 65 String protocol = session.getProtocol(); local
68 if (protocol.equals(enabledProtocol)) {
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
URLStreamHandlerRuntime.java 34 private final String protocol; field in class:URLStreamHandlerRuntime
43 protocol = PROTOCOLPREFIX + Integer.toHexString(hashCode());
50 handlers.put(protocol, handler);
64 handlers.remove(protocol);
72 // final URL url = new URL(protocol, null, "");
89 mv.visitLdcInsn(protocol);
  /external/kernel-headers/original/uapi/linux/
gsmmux.h 31 unsigned short protocol;/* Protocol to use - only ETH_P_IP supported */ member in struct:gsm_netconfig
  /external/kernel-headers/original/uapi/linux/netfilter_bridge/
ebt_ip6.h 39 __u8 protocol; member in struct:ebt_ip6_info
  /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...]
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 43 * acceptor.open(endpoint.protocol());
49 template <typename Protocol,
50 typename SocketAcceptorService = socket_acceptor_service<Protocol> >
63 /// The protocol type.
64 typedef Protocol protocol_type;
67 typedef typename Protocol::endpoint endpoint_type;
92 * @param protocol An object specifying protocol parameters to be used.
97 const protocol_type& protocol)
101 this->get_service().open(this->get_implementation(), protocol, ec)
137 const protocol_type protocol = endpoint.protocol(); local
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_endpoint.hpp 41 /// The protocol type associated with the endpoint.
110 /// The protocol associated with the endpoint.
111 protocol_type protocol() const function in class:asio::ip::basic_endpoint
  /external/parameter-framework/upstream/asio/stub/
asio.hpp 103 dummy_base protocol() const { return {}; }; function in struct:asio::ip::tcp::endpoint
  /external/webrtc/talk/app/webrtc/
datachannelinterface.h 60 std::string protocol; // This is set by the application and opaque to the member in struct:webrtc::DataChannelInit
140 virtual std::string protocol() const { return std::string(); } function in class:webrtc::DataChannelInterface
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/third_party/SocketRocket/
SRWebSocket.h 47 @protocol SRWebSocketDelegate;
58 // This returns the negotiated protocol.
60 @property (nonatomic, readonly, copy) NSString *protocol; variable
62 // Protocols should be an array of strings that turn into Sec-WebSocket-Protocol.
95 @protocol SRWebSocketDelegate <NSObject>
  /frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
accessorychat.c 148 uint16_t protocol; local
150 ACCESSORY_GET_PROTOCOL, 0, 0, &protocol, sizeof(protocol), 0);
152 printf("device supports protocol version %d\n", protocol);
154 fprintf(stderr, "failed to read protocol version\n");
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
ProtocolPortTuple.java 51 public ProtocolPortTuple(int protocol, int port, int status) {
52 mProtocol = protocol;
65 int protocol = payload.get(); local
69 return new ProtocolPortTuple(protocol, port, status);
  /packages/apps/Dialer/java/com/android/incallui/incall/protocol/
InCallButtonIds.java 17 package com.android.incallui.incall.protocol;
InCallButtonUiDelegate.java 17 package com.android.incallui.incall.protocol;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCredentials.java 16 private static final String EXTRA_PROTOCOL = "protocol";
21 final String protocol) {
24 i.putExtra(EXTRA_PROTOCOL, protocol);
33 final String protocol = getIntent().getStringExtra(EXTRA_PROTOCOL); local
39 AccountSetupCredentialsFragment.newInstance(emailAddress, protocol,
AccountSetupTypeFragment.java 37 * called when the user has selected a protocol type for the account
38 * @param protocol {@link EmailServiceUtils.EmailServiceInfo#protocol}
40 void onChooseProtocol(String protocol);
60 if (EmailServiceUtils.isServiceAvailable(appContext, info.protocol)) {
73 button.setTag(info.protocol);
91 final String protocol = (String) v.getTag(); local
93 callback.onChooseProtocol(protocol);
  /packages/apps/Messaging/src/android/support/v7/mms/
Utils.java 165 String protocol = "http"; local
169 protocol = url.getProtocol();
176 sb.append(protocol).append("://").append(host)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_ip6.h 37 __u8 protocol; member in struct:ebt_ip6_info
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
netcontext.py 29 # for the DCCP protocol.
129 return self.qpol_symbol.protocol(self.policy)
145 A portcon protocol type.
147 The possible values are equivalent to protocol
150 corresponding protocol string (udp, tcp).
165 raise ValueError("{0} is not a supported IP protocol. "
183 return "portcon {0.protocol} {1} {0.context}".format(self, low)
185 return "portcon {0.protocol} {1}-{2} {0.context}".format(self, low, high)
188 return hash("portcon|{0.protocol}|{1.low}|{1.high}".format(self, self.ports))
191 def protocol(self) member in class:Portcon
    [all...]
  /system/core/adb/
shell_service_test.cpp 48 SubprocessProtocol protocol);
63 const char* command, SubprocessType type, SubprocessProtocol protocol) {
64 subprocess_fd_ = StartSubprocess(command, nullptr, type, protocol);
91 // Reads shell protocol data from |fd| until it closes or errors. Fills
93 // read from the protocol or -1 if an exit code packet was not received.
99 ShellProtocol* protocol = new ShellProtocol(fd); local
100 while (protocol->Read()) {
101 switch (protocol->id()) {
103 stdout->append(protocol->data(), protocol->data_length())
210 ShellProtocol* protocol = new ShellProtocol(subprocess_fd_); local
236 ShellProtocol* protocol = new ShellProtocol(subprocess_fd_); local
    [all...]

Completed in 627 milliseconds

1 2 3 45 6 7 8 91011>>