HomeSort by relevance Sort by last modified time
    Searched refs:protocol (Results 301 - 325 of 1040) sorted by null

<<11121314151617181920>>

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
WindowsLoader.java 33 public static Window[] loadWindows(IDevice device, int protocol, int server) {
37 System.out.println("protocol = " + protocol);
  /development/tools/axl/
axl.py 26 from twisted.internet import protocol, reactor, defer namespace
27 from twisted.internet.protocol import ServerFactory, Protocol
31 class BaseProtocol(Protocol):
242 for protocol in Drop, ReadAndDrop, GarbageStatus, BadHeader, PauseHeader, \
246 factory.protocol = protocol
247 reactor.listenTCP(protocol.PORT, factory)
  /external/chromium/chrome/browser/
browsing_data_indexed_db_helper.cc 114 if (EqualsASCII(web_security_origin.protocol(),
123 web_security_origin.protocol().utf8(),
162 const std::string& protocol,
170 : protocol(protocol),
276 web_security_origin.protocol().utf8(),
browsing_data_local_storage_helper.cc 27 const std::string& protocol,
35 : protocol(protocol),
102 if (EqualsASCII(web_security_origin.protocol(),
111 web_security_origin.protocol().utf8(),
222 web_security_origin.protocol().utf8(),
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransport.cc 79 bool P2PTransportParser::ParseCandidates(SignalingProtocol protocol,
146 const buzz::QName& GetCandidateQName(SignalingProtocol protocol) {
147 if (protocol == PROTOCOL_GINGLE) {
156 bool P2PTransportParser::WriteCandidates(SignalingProtocol protocol,
165 new buzz::XmlElement(GetCandidateQName(protocol));
181 elem->SetAttr(QN_PROTOCOL, candidate.protocol());
  /external/webkit/Source/WebKit/win/
WebURLProtectionSpace.cpp 149 /* [in] */ BSTR protocol,
159 if (BString(protocol) == webURLProtectionSpaceHTTPBString)
161 else if (BString(protocol) == webURLProtectionSpaceHTTPSBString)
163 else if (BString(protocol) == webURLProtectionSpaceFTPBString)
165 else if (BString(protocol) == webURLProtectionSpaceFTPSBString)
218 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::protocol( function in class:WebURLProtectionSpace
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
HostAuth.java 77 RECORD_ID, HostAuthColumns.PROTOCOL, HostAuthColumns.ADDRESS, HostAuthColumns.PORT,
107 public static String getSchemeString(String protocol, int flags) {
108 return getSchemeString(protocol, flags, null);
115 public static String getSchemeString(String protocol, int flags, String clientAlias) {
143 return protocol + security;
186 values.put(HostAuthColumns.PROTOCOL, mProtocol);
241 public void setConnection(String protocol, String address, int port, int flags) {
242 setConnection(protocol, address, port, flags, null);
247 * @param protocol the mail protocol to use (e.g. "eas", "imap")
425 String protocol = schemeParts[0]; local
    [all...]
  /external/iproute2/tc/
f_rsvp.c 29 fprintf(stderr, "Usage: ... rsvp ipproto PROTOCOL session DST[/PORT | GPI ]\n");
85 if (pinfo->protocol == 0)
86 pinfo->protocol = IPPROTO_AH;
97 if (pinfo->protocol == 0)
98 pinfo->protocol = IPPROTO_ESP;
203 if (pinfo.dpi.mask || pinfo.protocol)
215 if (pinfo.spi.mask || pinfo.protocol)
226 pinfo.protocol = num;
365 if (pinfo && pinfo->protocol) {
367 fprintf(f, "ipproto %s ", inet_proto_n2a(pinfo->protocol, b1, sizeof(b1)))
    [all...]
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.cpp 62 uint16_t protocol = -1; local
67 ACCESSORY_GET_PROTOCOL, 0, 0, 0, 2, (char *)&protocol);
68 return protocol;
84 int protocol = getProtocol(addr); local
86 if (protocol == 1) {
89 Serial.print("could not read device protocol version\n");
  /external/clang/test/Analysis/
system-header-simulator-objc.h 35 @class NSString, Protocol;
39 @protocol NSObject
46 @end @protocol NSCopying - (id)copyWithZone:(NSZone *)zone;
47 @end @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone;
48 @end @protocol NSCoding - (void)encodeWithCoder:(NSCoder *)aCoder;
62 @protocol NSFastEnumeration - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(NSUInteger)len;
  /external/quake/quake/src/QW/qwfwd/
qwfwd.c 104 int connectsock(char *host, char *service, char *protocol)
116 if(pse = getservbyname(service, protocol))
133 /* Map protocol name to protocol number */
134 if((ppe = getprotobyname(protocol)) == 0)
136 fprintf(stderr, "udpred: can't get \"%s\" protocol entry\n", protocol);
140 /* Use protocol to choose a socket type */
141 if(strcmp(protocol, "udp") == 0)
  /external/webkit/Source/WebCore/platform/
KURLGoogle.cpp 86 static inline void assertProtocolIsGood(const char* protocol)
89 const char* p = protocol;
136 bool isValidProtocol(const String& protocol)
140 if (protocol.isEmpty())
142 if (!isSchemeFirstChar(protocol[0]))
144 unsigned protocolLength = protocol.length();
146 if (!isSchemeChar(protocol[i]))
479 String KURL::protocol() const function in class:WebCore::KURL
599 bool KURL::setProtocol(const String& protocol)
602 int separatorPosition = protocol.find(':')
    [all...]
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /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;
ResponseProcessCookies.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/ResponseProcessCookies.java $
32 package org.apache.http.client.protocol;
50 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 50 import org.apache.http.client.protocol.ClientContext;
51 import org.apache.http.protocol.HTTP;
52 import org.apache.http.protocol.HttpContext;
  /external/chromium/net/websockets/
websocket.h 5 // WebSocket protocol implementation in chromium.
74 Request(const GURL& url, const std::string protocol,
79 protocol_(protocol),
89 const std::string& protocol() const { return protocol_; } function in class:net::WebSocket::Request
  /external/chromium/third_party/libevent/
evutil.c 65 evutil_socketpair(int family, int type, int protocol, int fd[2])
68 return socketpair(family, type, protocol, fd);
85 if (protocol
  /packages/apps/Email/tests/src/com/android/email/service/
EmailBroadcastProcessorServiceTests.java 58 * Create a simple HostAuth with protocol
60 private HostAuth setupSimpleHostAuth(String protocol) {
61 HostAuth hostAuth = ProviderTestUtils.setupHostAuth(protocol, "name", false, mContext);
62 hostAuth.mProtocol = protocol;
  /cts/tests/tests/webkitsecurity/assets/
location-new-window-no-crash.js 16 shouldBe("testWindow.location.protocol", "'about:'");
25 shouldBe("testWindow.location.protocol = 'data'", "'data'"); // Firefox throws an exception
39 shouldBe("testWindow.location.protocol", "'about:'");
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 40 import org.apache.http.protocol.HTTP;
77 * A version of the protocol to parse.
78 * The version is typically not relevant, but the protocol name.
80 protected final ProtocolVersion protocol; field in class:BasicLineParser
84 * Creates a new line parser for the given HTTP-like protocol.
86 * @param proto a version of the protocol to parse, or
88 * is not relevant, only the protocol name.
94 this.protocol = proto;
139 final String protoname = this.protocol.getProtocol();
152 ("Not a valid protocol version: "
    [all...]
  /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...]
  /external/kernel-headers/original/linux/
netfilter.h 39 <= 0x2000 is used for protocol-flags. */
254 unsigned int dataoff, u_int8_t protocol);
259 u_int8_t protocol);
276 u_int8_t protocol, unsigned short family)
284 csum = afinfo->checksum(skb, hook, dataoff, protocol);
292 u_int8_t protocol, unsigned short family)
301 protocol);
  /external/mtpd/
mtpd.c 41 extern struct protocol l2tp;
42 extern struct protocol pptp;
43 static struct protocol *protocols[] = {&l2tp, &pptp, NULL};
44 static struct protocol *the_protocol;
64 struct protocol *p = protocols[i];
66 log_print(INFO, "Using protocol %s", p->name);
75 struct protocol *p = protocols[i];
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 168 final int protocol = isEmail ? Im.PROTOCOL_GOOGLE_TALK : local
169 entryValues.getAsInteger(Im.PROTOCOL);
181 if (protocol != Im.PROTOCOL_CUSTOM) {
183 host = ContactsUtils.lookupProviderNameFromId(protocol);
240 final String protocol = entryValues.getAsString(Im.PROTOCOL); local
241 if (protocol == null) {
245 Integer.valueOf(protocol);

Completed in 1981 milliseconds

<<11121314151617181920>>