/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...] |
websocket_handshake_draft75.cc | 15 "HTTP/1.1 101 Web Socket Protocol Handshake\r\n"; 33 const std::string& protocol) 34 : WebSocketHandshake(url, origin, location, protocol) { 54 msg += "WebSocket-Protocol: "; 136 // protocol field or not as specified in the spec. 138 && !GetSingleHeader(headers, "websocket-protocol", &ws_protocol_))
|
/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...] |
/external/tcpdump/ |
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/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());
|
register_protocol_handler_infobar_delegate.cc | 40 ProtocolHandler* old_handler = registry_->GetHandlerFor(handler_->protocol()); 44 UTF8ToUTF16(handler_->protocol()), old_handler->title()) : 47 UTF8ToUTF16(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.
|
/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:{TypedText @protocol}{LeftParen (}{Placeholder protocol-name}{RightParen )}
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
Via.java | 85 protected Protocol sentProtocol; 105 sentProtocol = new Protocol(); 124 /** get the Protocol Version 136 * @return Protocol field 138 public Protocol getSentProtocol() { 208 /** set the Protocol Version 213 sentProtocol = new Protocol(); 229 * @param s Protocol to set. 231 public void setSentProtocol(Protocol s) { 372 * which transport protocol to use for sending requests and responses t [all...] |
/frameworks/base/core/java/android/hardware/usb/ |
UsbInterface.java | 42 public UsbInterface(int id, int Class, int subClass, int protocol, 47 mProtocol = protocol; 81 * Returns the interface's protocol field. 83 * @return the interface's protocol 120 int protocol = in.readInt(); 122 return new UsbInterface(id, Class, subClass, protocol, endpoints);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
pcm_extplug.h | 54 * Protocol version 56 #define SND_PCM_EXTPLUG_VERSION_MAJOR 1 /**< Protocol major version */ 57 #define SND_PCM_EXTPLUG_VERSION_MINOR 0 /**< Protocol minor version */ 58 #define SND_PCM_EXTPLUG_VERSION_TINY 1 /**< Protocol tiny version */ 60 * Filter-plugin protocol version 69 * protocol version; #SND_PCM_EXTPLUG_VERSION must be filled here
|
/external/apache-harmony/luni/src/test/impl/common/org/apache/harmony/luni/tests/java/net/ |
URLClassLoaderImplTest.java | 42 public URLStreamHandler createURLStreamHandler(String protocol) { 43 if ("jar".equals(protocol)) { 47 fail("Should be JarHandler. But " + protocol);
|
/external/chromium/chrome/browser/debugger/ |
devtools_remote_listen_socket.h | 16 // Listens to remote debugger incoming connections, handles the V8ARDP protocol 42 // The protocol states while reading socket input 46 HEADERS = 2, // Receiving protocol headers
|
/external/chromium/chrome/common/safe_browsing/ |
csd.proto | 6 // protocol buffers. Those protocol messages should be kept in sync 9 // If you want to change this protocol definition or you have questions
|
/external/chromium/third_party/libjingle/source/ |
CHANGELOG | 20 - control signaling protocol 25 - Backward compatible with Google Talk Call Signaling protocol implemented 34 - Updated protocol.
|