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

<<21222324252627282930>>

  /system/core/fastboot/
Android.mk 21 LOCAL_SRC_FILES := protocol.c engine.c bootimg.c fastboot.c
  /system/core/libnl_2/
netlink.c 248 int nl_connect(struct nl_sock *sk, int protocol)
255 sk->s_fd = socket(PF_NETLINK, SOCK_RAW, protocol);
  /external/openssh/
sshd.c 15 * incompatible with the protocol description in the RFC file, it must be
409 if ((options.protocol & SSH_PROTO_1) &&
410 (options.protocol & SSH_PROTO_2)) {
413 } else if (options.protocol & SSH_PROTO_2) {
425 /* Send our protocol version identification. */
463 s = "Protocol mismatch.\n";
467 logit("Bad protocol version identification '%.100s' from %s",
471 debug("Client protocol version %d.%d; client software version %.100s",
492 if (options.protocol & SSH_PROTO_2)
498 if (!(options.protocol & SSH_PROTO_1))
    [all...]
  /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/Email/src/com/android/email/activity/setup/
AccountSetupBasics.java 621 String protocol = account.mHostAuthRecv.mProtocol; local
622 setFlagsForProtocol(account, protocol);
627 * information for the specified account based on the protocol type.
630 static void setFlagsForProtocol(Account account, String protocol) {
631 if (HostAuth.SCHEME_IMAP.equals(protocol)) {
638 if (HostAuth.SCHEME_EAS.equals(protocol)) {
AccountSetupOptions.java 104 String protocol = host != null ? host.mProtocol : ""; local
105 boolean eas = HostAuth.SCHEME_EAS.equals(protocol);
155 if (HostAuth.SCHEME_POP3.equals(protocol)) {
  /external/libxml2/
nanohttp.c 135 char *protocol; /* the protocol name */ member in struct:xmlNanoHTTPCtxt
150 int returnValue; /* the protocol return value */
151 int version; /* the protocol version */
211 * Initialize the HTTP protocol layer.
253 * Cleanup the HTTP protocol layer.
276 * the protocol host port and path it indicates.
285 if (ctxt->protocol != NULL) {
286 xmlFree(ctxt->protocol);
287 ctxt->protocol = NULL
    [all...]
  /external/chromium/chrome/browser/
keychain_mock_mac.cc 281 UInt16 port, SecProtocolType protocol,
305 mutable_this->SetTestDataProtocol(target_item, protocol);
430 SetTestDataProtocol(index, item_data.protocol);
browsing_data_local_storage_helper_browsertest.cc 85 ASSERT_EQ("http", info.protocol);
  /external/mdnsresponder/mDNSShared/
dns_sd.h 461 kDNSServiceType_HIP = 55, /* Host Identity Protocol */
    [all...]
  /external/webkit/Source/WebCore/page/
ContentSecurityPolicy.cpp 127 return equalIgnoringCase(url.protocol(), m_scheme);
221 scheme = m_origin->protocol();
393 m_list.append(CSPSource(m_origin->protocol(), m_origin->host(), m_origin->port(), false, false));
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
test.py 384 protocol = "https"
386 protocol = "http"
387 return "%s://127.0.0.1:%u/%s" % (protocol, port, relative_path)
  /libcore/support/src/test/java/libcore/java/security/
StandardNames.java     [all...]
  /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 346 unsigned char protocol; member in struct:wanif_conf
  /development/ndk/platforms/android-3/include/linux/
wanrouter.h 314 unsigned char protocol; member in struct:wanif_conf
  /development/ndk/platforms/android-3/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
  /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/chromium/chrome/browser/resources/shared/js/
util.js 125 if ((el.protocol == 'file:' || el.protocol == 'about:') &&
  /external/chromium/net/tools/fetch/
http_listen_socket.cc 67 // a single space between the method/url and url/protocol.
83 ST_PROTO, // Receiving the protocol
97 /* PROTOCOL */ { ST_ERR, ST_HEADER, ST_NAME, ST_ERR, ST_PROTO },
147 // TODO(mbelshe): Deal better with parsing protocol.
227 response = info->protocol + " ";
  /external/chromium/third_party/libevent/
evutil.h 101 int evutil_socketpair(int d, int type, int protocol, int sv[2]);

Completed in 2274 milliseconds

<<21222324252627282930>>