/external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/ |
Main.java | 23 import com.squareup.okhttp.Protocol; 84 return Joiner.on(", ").join(Protocol.values()); 112 @Option(name = { "-i", "--include" }, description = "Include protocol headers in the output")
|
/frameworks/base/core/java/android/net/nsd/ |
NsdManager.java | 35 import com.android.internal.util.Protocol; 159 private static final int BASE = Protocol.BASE_NSD_MANAGER; 208 /** Dns based service discovery protocol */ 463 * @param protocolType The service discovery protocol 481 throw new IllegalArgumentException("Unsupported protocol"); 537 * @param protocolType The service discovery protocol 551 throw new IllegalArgumentException("Unsupported protocol");
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
Spdy3.java | 18 import com.squareup.okhttp.Protocol; 34 * http://www.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3-1 38 @Override public Protocol getProtocol() { 39 return Protocol.SPDY_3;
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
RouteSelectorTest.java | 23 import com.squareup.okhttp.Protocol; 76 private final List<Protocol> protocols = Arrays.asList(Protocol.HTTP_1_1);
|
/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/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/ |
WifiP2pManagerFacade.java | 27 import com.android.internal.util.Protocol; 329 int user_accept = Protocol.BASE_WIFI_P2P_SERVICE + 2; 339 int user_accept = Protocol.BASE_WIFI_P2P_SERVICE + 3;
|
/external/jmdns/src/javax/jmdns/impl/ |
ServiceInfoImpl.java | 189 this._protocol = map.get(Fields.Protocol); 252 String protocol = ""; local 285 protocol = casePreservedType.substring(start, end); 287 if (protocol.length() > 0) { 288 index = aType.indexOf("_" + protocol.toLowerCase() + "."); 289 int start = index + protocol.length() + 2; 304 qualifiedNameMap.put(Fields.Protocol, protocol); 322 // Optional protocol 323 String protocol = (qualifiedNameMap.containsKey(Fields.Protocol) ? qualifiedNameMap.get(Fields.Protocol) : "tcp") local 378 String protocol = this.getProtocol(); local 428 String protocol = this.getProtocol(); local [all...] |
DNSEntry.java | 49 String protocol = _qualifiedNameMap.get(Fields.Protocol); local 52 _type = (application.length() > 0 ? "_" + application + "." : "") + (protocol.length() > 0 ? "_" + protocol + "." : "") + domain + ".";
|
/system/core/fastboot/ |
fastboot.cpp | 249 Socket::Protocol protocol = Socket::Protocol::kTcp; local 256 protocol = Socket::Protocol::kTcp; 260 protocol = Socket::Protocol::kUdp; 278 if (protocol == Socket::Protocol::kTcp) { 280 } else if (protocol == Socket::Protocol::kUdp) [all...] |
/external/mesa3d/docs/ |
MESA_shader_debug.spec | 238 GLX Protocol
|
MESA_swap_control.spec | 109 GLX Protocol
|
MESA_ycbcr_texture.spec | 170 GLX Protocol
|
MESA_multithread_makecurrent.spec | 92 GLX Protocol
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
URLConnectionTest.java | [all...] |
InterceptorTest.java | 62 .protocol(Protocol.HTTP_1_1) 85 .protocol(Protocol.HTTP_1_1)
|
/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;
|
/external/jmdns/src/javax/jmdns/ |
ServiceInfo.java | 19 * <app>.<protocol>.<servicedomain>.<parentdomain>.<br/> 20 * <Instance>.<app>.<protocol>.<servicedomain>.<parentdomain>.<br/> 21 * <sub>._sub.<app>.<protocol>.<servicedomain>.<parentdomain>. 26 * <li><protocol>: This is either "_tcp" or "_udp"</li> 27 * <li><app>: This define the application protocol. Typical example are "_http", "_ftp", etc.</li> 29 * <li><sub>: 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...] |
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/ |
WebSocketCall.java | 73 client.setProtocols(Collections.singletonList(com.squareup.okhttp.Protocol.HTTP_1_1));
|
/external/mdnsresponder/mDNSCore/ |
uDNS.c | 432 u.NATPortReq.opcode = info->Protocol; 519 const char *prot = n->Protocol == NATOp_MapUDP ? "UDP" : n->Protocol == NATOp_MapTCP ? "TCP" : "?"; 558 LogInfo("mDNS_StartNATOperation_internal %p Protocol %d IntPort %d RequestedPort %d NATLease %d", traversal, 559 traversal->Protocol, mDNSVal16(traversal->IntPort), mDNSVal16(traversal->RequestedPort), traversal->NATLease); 567 traversal, traversal->Protocol, mDNSVal16(traversal->IntPort), traversal->NATLease); 573 if (traversal->Protocol && traversal->Protocol == (*n)->Protocol && mDNSSameIPPort(traversal->IntPort, (*n)->IntPort) && 577 traversal, traversal->Protocol, mDNSVal16(traversal->IntPort), traversal->NATLease 1841 mDNSu8 protocol; local [all...] |
/external/mesa3d/docs/OLD/ |
MESA_packed_depth_stencil.spec | 211 GLX Protocol
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pManager.java | 40 import com.android.internal.util.Protocol; 288 private static final int BASE = Protocol.BASE_WIFI_P2P_MANAGER; 568 * @param protocolType protocol type. currently only 571 * service protocol type. The format depends on the service type. [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
RttService.java | 23 import com.android.internal.util.Protocol; 260 private static final int BASE = Protocol.BASE_WIFI_RTT_SERVICE;
|
WifiController.java | 42 import com.android.internal.util.Protocol; 106 private static final int BASE = Protocol.BASE_WIFI_CONTROLLER; [all...] |
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
struct.pb.h | 1 // Generated by the protocol buffer compiler. DO NOT EDIT! 13 #error incompatible with your Protocol Buffer headers. Please update 18 #error incompatible with your Protocol Buffer headers. Please
|
/external/avahi/avahi-sharp/ |
Client.cs | 72 public enum Protocol {
|