/external/apache-http/src/org/apache/http/ |
HttpVersion.java | 48 /** The protocol name. */ 51 /** HTTP protocol version 0.9 */ 54 /** HTTP protocol version 1.0 */ 57 /** HTTP protocol version 1.1 */ 62 * Create an HTTP protocol version designator. 64 * @param major the major version number of the HTTP protocol 65 * @param minor the minor version number of the HTTP protocol
|
/external/clang/test/Index/ |
complete-at-exprstmt.m | 24 // CHECK-CC1: {TypedText protocol}{LeftParen (}{Placeholder protocol-name}{RightParen )} 31 // CHECK-CC2: {TypedText protocol}{LeftParen (}{Placeholder protocol-name}{RightParen )} 35 // CHECK-CC3: NotImplemented:{ResultType Protocol *}{TypedText @protocol}{LeftParen (}{Placeholder protocol-name}{RightParen )}
|
/external/protobuf/python/ |
README.txt | 0 Protocol Buffers - Google's data interchange format 4 This directory contains the Python Protocol Buffers runtime library. 12 Protocol Compiler (protoc). If you downloaded this package from PyPI 15 Protocol Compiler from some other source before you can use this 21 The Python implementation of Protocol Buffers is not as mature as the C++ 24 join the Protocol Buffers discussion list and let us know! 70 The complete documentation for Protocol Buffers is available via the
|
/external/tcpdump/ |
appletalk.h | 21 * AppleTalk protocol formats (courtesy Bill Croft of Stanford/SUMEX). 35 /* Datagram Delivery Protocol */ 74 /* AppleTalk Transaction Protocol */ 95 /* AppleTalk Echo Protocol */ 108 /* Name Binding Protocol */ 135 /* Routing Table Maint. Protocol */ 142 /* Zone Information Protocol */
|
print-arp.c | 43 * Address Resolution Protocol. 45 * See RFC 826 for protocol description. ARP packets are variable 47 * Protocol type values are the same as those for 10 Mb/s Ethernet. 60 u_short ar_pro; /* format of protocol address */ 62 u_char ar_pln; /* length of protocol address */ 66 #define ARPOP_REVREQUEST 3 /* request protocol address given hardware */ 67 #define ARPOP_REVREPLY 4 /* response giving protocol address */ 76 u_char ar_spa[]; /* sender protocol address */ 78 u_char ar_tpa[]; /* target protocol address */ 99 * ATM Address Resolution Protocol [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebDocumentInternal.h | 40 @protocol _WebDocumentZooming 41 @discussion Optional protocol for a view that wants to handle its own zoom. 43 @protocol _WebDocumentZooming <NSObject> 57 @protocol WebDocumentElement <NSObject> 62 @protocol WebMultipleTextMatches <NSObject> 70 @protocol WebDocumentOptionsSearching <NSObject> 76 @protocol _WebDocumentViewState <NSObject>
|
/libcore/luni/src/test/java/libcore/java/net/ |
URLStreamHandlerFactoryTest.java | 75 // clear cached protocol handlers if they exist 80 System.setProperty("java.protocol.handler.pkgs", getHandlerPackageName()); 84 System.clearProperty("java.protocol.handler.pkgs"); 89 // clear cached protocol handlers if they exist 99 System.setProperty("java.protocol.handler.pkgs", getHandlerPackageName()); 103 System.clearProperty("java.protocol.handler.pkgs"); 113 @Override public URLStreamHandler createURLStreamHandler(String protocol) {
|
/external/chromium/chrome/browser/sync/protocol/ |
proto_value_conversions.cc | 7 #include "chrome/browser/sync/protocol/proto_value_conversions.h" 14 #include "chrome/browser/sync/protocol/app_specifics.pb.h" 15 #include "chrome/browser/sync/protocol/autofill_specifics.pb.h" 16 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" 17 #include "chrome/browser/sync/protocol/encryption.pb.h" 18 #include "chrome/browser/sync/protocol/extension_specifics.pb.h" 19 #include "chrome/browser/sync/protocol/nigori_specifics.pb.h" 20 #include "chrome/browser/sync/protocol/password_specifics.pb.h" 21 #include "chrome/browser/sync/protocol/preference_specifics.pb.h" 22 #include "chrome/browser/sync/protocol/proto_enum_conversions.h [all...] |
/external/protobuf/python/google/protobuf/ |
service_reflection.py | 0 # Protocol Buffers - Google's data interchange format 31 """Contains metaclasses used to create protocol service and service stub 35 inject all useful functionality into the classes output by the protocol 48 in the protocol message. 50 The protocol compiler currently uses this metaclass to create protocol service 69 protocol). 73 describing this protocol service type. 102 describing this protocol service type. 116 """This class constructs a protocol service class using a service descriptor [all...] |
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
SSLContext1Test.java | 60 private static final String NotSupportMsg = "Default protocol is not supported"; 97 fail(defaultProtocol + " protocol is not supported"); 114 * Test for <code>getInstance(String protocol)</code> method Assertion: 127 assertEquals("Invalid protocol", sslContext.getProtocol(), 133 * Test for <code>getInstance(String protocol)</code> method Assertion: 134 * throws NullPointerException when protocol is null; throws 135 * NoSuchAlgorithmException when protocol is not correct; 140 fail("NoSuchAlgorithmException or NullPointerException should be thrown (protocol is null"); 155 * Test for <code>getInstance(String protocol, String provider)</code> 181 * Test for <code>getInstance(String protocol, String provider)</code [all...] |
/external/chromium/net/websockets/ |
websocket_handshake_handler_unittest.cc | 41 "Sec-WebSocket-Protocol: sample\r\n" 64 "Sec-WebSocket-Protocol: sample\r\n" 86 "Sec-WebSocket-Protocol: sample\r\n" 101 "HTTP/1.1 101 WebSocket Protocol Handshake\r\n" 106 "Sec-WebSocket-Protocol: sample\r\n" 124 "HTTP/1.1 101 WebSocket Protocol Handshake\r\n" 129 "Sec-WebSocket-Protocol: sample\r\n" 147 "HTTP/1.1 101 WebSocket Protocol Handshake\r\n" 152 "Sec-WebSocket-Protocol: sample\r\n" 187 "Sec-WebSocket-Protocol: sample\r\n [all...] |
/external/kernel-headers/original/linux/ |
pnp.h | 139 struct list_head protocol_list; /* node in protocol's list of cards */ 142 struct pnp_protocol * protocol; member in struct:pnp_card 184 struct list_head protocol_list; /* node in list of device's protocol */ 188 struct pnp_protocol * protocol; member in struct:pnp_dev 248 #define pnp_can_read(dev) (((dev)->protocol) && ((dev)->protocol->get) && \ 250 #define pnp_can_write(dev) (((dev)->protocol) && ((dev)->protocol->set) && \ 252 #define pnp_can_disable(dev) (((dev)->protocol) && ((dev)->protocol->disable) && [all...] |
/external/apache-http/src/org/apache/http/impl/client/ |
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/protobuf/src/google/protobuf/ |
message_lite.h | 0 // Protocol Buffers - Google's data interchange format 33 // Based on original Protocol Buffers design by 37 // and non-lite) protocol message objects. 48 // Interface to light weight protocol messages. 50 // This interface is implemented by all protocol message objects. Non-lite 54 // descriptors or reflection. You can instruct the protocol compiler 61 // the full protocol buffers runtime library is too big. 64 // to link in lots of protocol definitions, a better way to reduce 69 // into your binary, in which case the size of the protocol buffers 105 // Methods for parsing in protocol buffer format. Most of these ar [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
Contacts_ContactMethodsTest.java | 48 notes = "Test methods which encode or decode protocol", 54 notes = "Test methods which encode or decode protocol", 60 notes = "Test methods which encode or decode protocol", 66 int protocol = ContactMethods.PROTOCOL_AIM; local 67 String encodedString = ContactMethods.encodePredefinedImProtocol(protocol); 69 assertEquals(protocol, ContactMethods.decodeImProtocol(encodedString)); 71 protocol = ContactMethods.PROTOCOL_QQ; 72 encodedString = ContactMethods.encodePredefinedImProtocol(protocol); 74 assertEquals(protocol, ContactMethods.decodeImProtocol(encodedString)); 76 String protocolString = "custom protocol"; [all...] |
/external/apache-http/src/org/apache/http/params/ |
CoreProtocolPNames.java | 36 * Defines parameter names for protocol execution in HttpCore. 45 * Defines the {@link org.apache.http.ProtocolVersion protocol version} 52 public static final String PROTOCOL_VERSION = "http.protocol.version"; 55 * Defines the charset to be used for encoding HTTP protocol elements. 60 public static final String HTTP_ELEMENT_CHARSET = "http.protocol.element-charset"; 68 public static final String HTTP_CONTENT_CHARSET = "http.protocol.content-charset"; 93 public static final String STRICT_TRANSFER_ENCODING = "http.protocol.strict-transfer-encoding"; 115 * proxies that do not support HTTP/1.1 protocol. 120 public static final String USE_EXPECT_CONTINUE = "http.protocol.expect-continue"; 130 public static final String WAIT_FOR_CONTINUE = "http.protocol.wait-for-continue" [all...] |
/external/dhcpcd/ |
lpf.c | 68 open_socket(struct interface *iface, int protocol) 80 if ((s = socket(PF_PACKET, SOCK_DGRAM, htons(protocol))) == -1) 85 su.sll.sll_protocol = htons(protocol); 92 if (protocol == ETHERTYPE_ARP) { 107 if (protocol == ETHERTYPE_ARP) 122 send_raw_packet(const struct interface *iface, int protocol, 134 su.sll.sll_protocol = htons(protocol); 146 if (protocol == ETHERTYPE_ARP) 155 get_raw_packet(struct interface *iface, int protocol, void *data, ssize_t len) 160 if (protocol == ETHERTYPE_ARP [all...] |
/external/webkit/Source/WebCore/websockets/ |
WorkerThreadableWebSocketChannel.h | 57 static PassRefPtr<ThreadableWebSocketChannel> create(WorkerContext* workerContext, WebSocketChannelClient* client, const String& taskMode, const KURL& url, const String& protocol) 59 return adoptRef(new WorkerThreadableWebSocketChannel(workerContext, client, taskMode, url, protocol)); 84 static Peer* create(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol) 86 return new Peer(clientWrapper, loaderProxy, context, taskMode, url, protocol); 103 Peer(RefPtr<ThreadableWebSocketChannelClientWrapper>, WorkerLoaderProxy&, ScriptExecutionContext*, const String& taskMode, const KURL&, const String& protocol); 114 static PassRefPtr<Bridge> create(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtr<WorkerContext> workerContext, const String& taskMode, const KURL& url, const String& protocol) 116 return adoptRef(new Bridge(workerClientWrapper, workerContext, taskMode, url, protocol)); 131 Bridge(PassRefPtr<ThreadableWebSocketChannelClientWrapper>, PassRefPtr<WorkerContext>, const String& taskMode, const KURL&, const String& protocol); 136 static void mainThreadCreateWebSocketChannel(ScriptExecutionContext*, Bridge* thisPtr, RefPtr<ThreadableWebSocketChannelClientWrapper>, const String& taskMode, const KURL&, const String& protocol); 151 WorkerThreadableWebSocketChannel(WorkerContext*, WebSocketChannelClient*, const String& taskMode, const KURL&, const String& protocol); [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ApnSetting.java | 39 public final String protocol; field in class:ApnSetting 58 String protocol, String roamingProtocol, boolean carrierEnabled, int bearer) { 72 this.protocol = protocol; 94 * <type>[| <type>...], <protocol>, <roaming_protocol>, <carrierEnabled>, <bearer> 126 String protocol, roamingProtocol; local 132 protocol = RILConstants.SETUP_DATA_PROTOCOL_IP; 141 protocol = a[14]; 152 a[9],a[4],a[5],authType,typeArray,protocol,roamingProtocol,carrierEnabled,bearer); 174 sb.append(", ").append(protocol); [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
sessionmessages.h | 82 SessionMessage(SignalingProtocol protocol, ActionType type, 84 protocol(protocol), type(type), sid(sid), initiator(initiator), 90 SignalingProtocol protocol; member in struct:cricket::SessionMessage 208 bool ParseContentType(SignalingProtocol protocol, 215 bool ParseSessionInitiate(SignalingProtocol protocol, 221 bool WriteSessionInitiate(SignalingProtocol protocol, 228 bool ParseSessionAccept(SignalingProtocol protocol, 234 bool WriteSessionAccept(SignalingProtocol protocol, 241 bool ParseSessionTerminate(SignalingProtocol protocol, [all...] |
/external/webkit/Source/WebCore/platform/network/mac/ |
AuthenticationMac.mm | 169 NSString *protocol = nil; 172 protocol = @"http"; 175 protocol = @"https"; 178 protocol = @"ftp"; 181 protocol = @"ftps"; 236 protocol:protocol 297 NSString *protocol = [macSpace protocol]; 298 if ([protocol caseInsensitiveCompare:@"http"] == NSOrderedSame [all...] |
/external/iproute2/tc/ |
tc_filter.c | 34 fprintf(stderr, " [ pref PRIO ] protocol PROTO\n"); 57 __u32 protocol = 0; local 76 protocol = ETH_P_ALL; 110 } else if (matches(*argv, "protocol") == 0) { 114 duparg("protocol", *argv); 116 invarg(*argv, "invalid protocol"); 117 protocol = id; 136 req.t.tcm_info = TC_H_MAKE(prio<<16, protocol); 234 fprintf(fp, "protocol %s ", 268 __u32 protocol = 0 local [all...] |
/frameworks/base/voip/java/android/net/sip/ |
SipProfile.java | 44 * <a href="{@docRoot}guide/topics/network/sip.html">Session Initiation Protocol</a> 206 * Sets the protocol used to connect to the SIP server. Currently, 209 * @param protocol the protocol string 211 * @throws IllegalArgumentException if the protocol is not recognized 213 public Builder setProtocol(String protocol) 215 if (protocol == null) { 216 throw new NullPointerException("protocol cannot be null"); 218 protocol = protocol.toUpperCase() [all...] |
/external/chromium/chrome/browser/custom_handlers/ |
protocol_handler_registry.cc | 24 if (protocolHandlers_.find(handler->protocol()) == protocolHandlers_.end()) { 27 if (!policy->IsWebSafeScheme(handler->protocol())) { 28 policy->RegisterWebSafeScheme(handler->protocol()); 30 net::URLRequest::RegisterProtocolFactory(handler->protocol(), 33 protocolHandlers_[handler->protocol()] = handler; 79 ProtocolHandler* currentHandler = GetHandlerFor(handler->protocol());
|
/external/chromium/chrome/browser/ |
external_protocol_handler.h | 29 // Checks to see if the protocol is allowed, if it is whitelisted, 30 // the application associated with the protocol is launched on the io thread, 39 // Creates and runs a External Protocol dialog box. 56 // Starts a url using the external protocol handler with the help 57 // of shellexecute. Should only be called if the protocol is whitelisted 71 // Allows LaunchUrl to proceed with launching an external protocol handler.
|