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

<<11121314151617181920>>

  /external/webkit/WebCore/websockets/
WebSocketChannel.cpp 54 WebSocketChannel::WebSocketChannel(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol)
57 , m_handshake(url, protocol, context)
  /external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/
l2_packet_privsep.c 133 const char *ifname, const u8 *own_addr, unsigned short protocol,
186 reg_cmd[0] = protocol;
  /packages/apps/Email/src/com/android/email/service/
EmailServiceProxy.java 195 public int validate(final String protocol, final String host, final String userName,
202 mReturn = mService.validate(protocol, host, userName, password, port, ssl,
  /system/core/fastboot/
Android.mk 20 LOCAL_SRC_FILES := protocol.c engine.c bootimg.c fastboot.c
  /external/ppp/pppd/
fsm.c 2 * fsm.c - {Link, IP} Control Protocol Finite State Machine.
349 FSMDEBUG(("fsm_input(%x): Rcvd short header.", f->protocol));
356 FSMDEBUG(("fsm_input(%x): Rcvd illegal length.", f->protocol));
360 FSMDEBUG(("fsm_input(%x): Rcvd short packet.", f->protocol));
367 f->protocol, f->state));
447 * to protocol-specific code for checking.
700 * fsm_protreject - Peer doesn't speak this protocol.
735 FSMDEBUG(("%s: Protocol-reject event in state %d!",
812 MAKEHEADER(outp, f->protocol);
  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 209 * ProviderNames from the predefined IM protocol id.
212 * @param protocol the protocol ID
213 * @return the provider name the IM app uses for the given protocol, or null if no
214 * provider is defined for the given protocol
217 public static String lookupProviderNameFromId(int protocol) {
218 switch (protocol) {
241 * {@link Email} row. Returns null when missing protocol or data.
250 final int protocol = isEmail ? Im.PROTOCOL_GOOGLE_TALK : values.getAsInteger(Im.PROTOCOL); local
    [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardEntry.java 317 public final int protocol; field in class:VCardEntry.ImData
323 public ImData(final int protocol, final String customProtocol, final int type,
325 this.protocol = protocol;
338 return (type == imData.type && protocol == imData.protocol
348 "type: %d, protocol: %d, custom_protcol: %s, data: %s, isPrimary: %s",
349 type, protocol, customProtocol, data, isPrimary);
637 private void addIm(int protocol, String customProtocol, int type,
642 mImList.add(new ImData(protocol, customProtocol, type, propValue, isPrimary))
940 final int protocol = sImMap.get(propName); local
    [all...]
  /external/libxml2/
nanohttp.c 133 char *protocol; /* the protocol name */ member in struct:xmlNanoHTTPCtxt
148 int returnValue; /* the protocol return value */
208 * Initialize the HTTP protocol layer.
250 * Cleanup the HTTP protocol layer.
273 * the protocol host port and path it indicates.
282 if (ctxt->protocol != NULL) {
283 xmlFree(ctxt->protocol);
284 ctxt->protocol = NULL;
309 ctxt->protocol = xmlMemStrdup(uri->scheme)
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/fortress/
PolicyUtils.java 341 * generalized expansion expressions, of the form ${{protocol:data}}.
348 * Resolves general expansion expressions of the form ${{protocol:data}}.
349 * @param protocol denotes type of resolution
354 String resolve(String protocol, String data)
359 * Substitutes all entries like ${{protocol:data}}, found in specified string,
362 * may have simplified form, as ${{protocol}}.
365 * @param handler the handler to resolve data denoted by protocol
383 String protocol = (separator >= 0) ? key local
387 String value = handler.resolve(protocol, data);
  /dalvik/libcore/x-net/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 444 messageStr = "Failure in SSL library, usually a protocol error";
482 // For SSL protocol errors, SSL might have more information.
2500 const char* protocol = SSL_get_version(ssl); local
    [all...]
  /external/webkit/WebCore/loader/
MainResourceLoader.cpp 266 } else if (shouldLoadAsEmptyDocument(url) || frameLoader()->representationExistsForURLScheme(url.protocol()))
452 mimeType = frameLoader()->generatedMIMETypeForURLScheme(url.protocol());
517 else if (shouldLoadEmpty || frameLoader()->representationExistsForURLScheme(url.protocol()))
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
base.py 228 protocol = "https"
230 protocol = "http"
231 return "%s://127.0.0.1:%u/%s" % (protocol, port, relative_path)
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupExchange.java 285 String protocol = hostAuth.mProtocol;
286 if (protocol == null || !protocol.startsWith("eas")) {
  /packages/apps/IM/src/com/android/im/service/
RemoteImService.java 253 String protocol = settings.get(ImConfigNames.PROTOCOL_NAME); local
254 if(!"IMPS".equals(protocol)) {
255 Log.e(TAG, "Unsupported protocol: " + protocol);
  /bionic/libc/include/netinet/
ip.h 47 * Definitions for internet protocol version 4.
73 u_int8_t ip_p; /* protocol */
202 u_int8_t ippseudo_p; /* protocol */
203 u_int16_t ippseudo_len; /* protocol length */
246 uint8_t protocol; member in struct:iphdr
  /bionic/libc/kernel/common/linux/
wanrouter.h 314 unsigned char protocol; member in struct:wanif_conf
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
Header.java 18 package org.apache.harmony.luni.internal.net.www.protocol.http;
234 * org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnection.getHeaderField(0)
HttpConnection.java 17 package org.apache.harmony.luni.internal.net.www.protocol.http;
  /external/apache-http/src/org/apache/http/client/utils/
URLEncodedUtils.java 46 import org.apache.http.protocol.HTTP;
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 46 import org.apache.http.protocol.HttpContext;
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionOutputBuffer.java 41 import org.apache.http.protocol.HTTP;
  /external/apache-http/src/org/apache/http/protocol/
HttpRequestExecutor.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/protocol/HttpRequestExecutor.java $
32 package org.apache.http.protocol;
100 * @throws HttpException in case of a protocol or processing problem
143 * @throws HttpException in case of a protocol or processing problem
180 * @throws HttpException in case of a protocol or processing problem
256 * @throws HttpException in case of a protocol or processing problem
302 * @throws HttpException in case of a protocol or processing problem
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 34 import org.apache.http.protocol.HTTP;
  /external/dbus/dbus/
dbus-marshal-recursive.h 28 #include <dbus/dbus-protocol.h>
  /external/iproute2/include/
libnetlink.h 23 extern int rtnl_open_byproto(struct rtnl_handle *rth, unsigned subscriptions, int protocol);

Completed in 307 milliseconds

<<11121314151617181920>>