HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 126 - 150 of 1993) sorted by null

1 2 3 4 56 7 8 91011>>

  /system/firewalld/
iptables.h 67 ProtocolEnum protocol);
71 ProtocolEnum protocol);
73 bool AddAcceptRules(ProtocolEnum protocol,
76 bool DeleteAcceptRules(ProtocolEnum protocol,
81 ProtocolEnum protocol,
85 ProtocolEnum protocol,
  /external/avahi/avahi-core/
browse.c 47 AvahiProtocol protocol; member in struct:AvahiSRBLookup
60 static void lookup_handle_cname(AvahiSRBLookup *l, AvahiIfIndex interface, AvahiProtocol protocol, AvahiLookupFlags flags, AvahiRecord *r);
61 static void lookup_drop_cname(AvahiSRBLookup *l, AvahiIfIndex interface, AvahiProtocol protocol, AvahiLookupFlags flags, AvahiRecord *r);
85 AvahiProtocol protocol,
93 assert(AVAHI_PROTO_VALID(protocol));
105 l->protocol = protocol;
161 AvahiProtocol protocol,
172 (l->interface == AVAHI_PROTO_UNSPEC || l->protocol == protocol) &
    [all...]
  /libcore/ojluni/src/main/java/sun/net/spi/
DefaultProxySelector.java 46 * provides backward compatibility with the old http protocol handler
49 * Most of the implementation copied from the old http protocol handler
59 * support for each given protocol.
61 * - 1 row per protocol (http, ftp, ...)
62 * - 1st element of each row is the protocol name
77 * protocol, Property prefix 1, Property prefix 2, ...
93 * it's not necessary. Therefore we do cache the result, on a per-protocol
131 String protocol = uri.getScheme(); local
157 if (protocol == null || host == null) {
158 throw new IllegalArgumentException("protocol = "+protocol+" host = "+host)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
ANTLRMismatchedTreeNodeException.h 30 @protocol ANTLRIntStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
ANTLRMismatchedTreeNodeException.h 30 @protocol ANTLRIntStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
ANTLRMismatchedTreeNodeException.h 30 @protocol ANTLRIntStream;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenStream.h 31 @protocol ANTLRTokenStream < ANTLRIntStream >
ANTLRIntStream.h 31 @protocol ANTLRIntStream < NSObject, NSCopying >
ANTLRMismatchedRangeException.h 30 @protocol ANTLRIntStream;
ANTLRMismatchedTreeNodeException.h 30 @protocol ANTLRIntStream;
  /external/apache-http/src/org/apache/http/client/protocol/
RequestDefaultHeaders.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestDefaultHeaders.java $
32 package org.apache.http.client.protocol;
42 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/impl/client/
DefaultConnectionKeepAliveStrategy.java 38 import org.apache.http.protocol.HTTP;
39 import org.apache.http.protocol.HttpContext;
DefaultHttpClient.java 46 import org.apache.http.client.protocol.ClientContext;
47 import org.apache.http.client.protocol.RequestAddCookies;
48 import org.apache.http.client.protocol.RequestDefaultHeaders;
49 import org.apache.http.client.protocol.RequestProxyAuthentication;
50 import org.apache.http.client.protocol.RequestTargetAuthentication;
51 import org.apache.http.client.protocol.ResponseProcessCookies;
74 import org.apache.http.protocol.BasicHttpContext;
75 import org.apache.http.protocol.BasicHttpProcessor;
76 import org.apache.http.protocol.HTTP;
77 import org.apache.http.protocol.HttpContext
    [all...]
  /external/google-tv-pairing-protocol/
Android.mk 5 LOCAL_MODULE := google-tv-pairing-protocol
  /external/iproute2/testsuite/tests/tc/
policer.t 5 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
12 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketServletConnectionD06.java 31 public WebSocketServletConnectionD06(WebSocketFactory factory, WebSocket websocket, EndPoint endpoint, WebSocketBuffers buffers, long timestamp, int maxIdleTime, String protocol)
34 super(websocket,endpoint,buffers,timestamp,maxIdleTime,protocol);
48 response.addHeader("Sec-WebSocket-Protocol",subprotocol);
  /frameworks/base/services/net/java/android/net/util/
IpUtils.java 83 ByteBuffer buf, int headerOffset, int protocol, int transportLen) {
84 int partial = protocol + transportLen;
93 ByteBuffer buf, int headerOffset, int protocol, int transportLen) {
94 int partial = protocol + transportLen;
110 private static short transportChecksum(ByteBuffer buf, int protocol,
118 sum = pseudoChecksumIPv4(buf, ipOffset, protocol, transportLen);
120 sum = pseudoChecksumIPv6(buf, ipOffset, protocol, transportLen);
126 if (protocol == IPPROTO_UDP && sum == 0) {
  /libcore/ojluni/src/main/java/sun/net/www/protocol/ftp/
Handler.java 30 package sun.net.www.protocol.ftp;
38 import sun.net.www.protocol.http.HttpURLConnection;
  /system/connectivity/shill/
arp_packet.cc 51 // | Format of hardware address (ether)| Format of Protocol Address (IP) |
53 // | Hardware Length | Protocol Length | ARP Protocol OpCode |
61 // | Sender IP Address (of length "Protocol Length")... |
65 // | Target IP Address (of length "Protocol Length")... |
83 const uint16_t protocol = ntohs(header.ar_pro); local
85 if (protocol == ETHERTYPE_IP) {
87 } else if (protocol == ETHERTYPE_IPV6) {
90 NOTIMPLEMENTED() << "Packet has unknown protocol "
91 << protocol;
143 uint16_t protocol; local
    [all...]
  /external/apache-http/src/org/apache/http/client/
RedirectHandler.java 38 import org.apache.http.protocol.HttpContext;
RequestDirector.java 40 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRoutePlanner.java 37 import org.apache.http.protocol.HttpContext;

Completed in 698 milliseconds

1 2 3 4 56 7 8 91011>>