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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/
KURL.h 139 String protocol() const;
160 // Returns true if the current URL's protocol is the same as the null-
284 bool protocolIs(const String& url, const char* protocol);
287 bool isDefaultPortForProtocol(unsigned short port, const String& protocol);
  /external/wpa_supplicant_6/wpa_supplicant/src/l2_packet/
l2_packet_linux.c 94 const char *ifname, const u8 *own_addr, unsigned short protocol,
112 htons(protocol));
131 ll.sll_protocol = htons(protocol);
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_linux.c 92 const char *ifname, const u8 *own_addr, unsigned short protocol,
110 htons(protocol));
131 ll.sll_protocol = htons(protocol);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLSessionImpl.java 45 ProtocolVersion protocol; field in class:SSLSessionImpl
158 return (protocol == null) ? "NONE" : protocol.name;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
UrlOpener.java 36 import org.apache.http.client.protocol.ClientContext;
40 import org.apache.http.protocol.BasicHttpContext;
41 import org.apache.http.protocol.HttpContext;
117 // If the protocol is not supported by HttpClient (e.g. file:///),
  /external/quake/quake/src/QW/client/
qwcl.mak     [all...]
  /external/apache-http/src/org/apache/http/impl/client/
AbstractHttpClient.java 65 import org.apache.http.protocol.BasicHttpProcessor;
66 import org.apache.http.protocol.DefaultedHttpContext;
67 import org.apache.http.protocol.HttpContext;
68 import org.apache.http.protocol.HttpProcessor;
69 import org.apache.http.protocol.HttpRequestExecutor;
  /external/ppp/pppd/
auth.c 688 if (protp->protocol != PPP_LCP && protp->lowerdown != NULL)
690 if (protp->protocol < 0xC000 && protp->close != NULL)
717 if (protp->protocol != PPP_LCP && protp->enabled_flag
851 if ((protp->protocol == PPP_ECP || protp->protocol == PPP_CCP)
875 if (protp->protocol < 0xC000
876 && protp->protocol != PPP_CCP && protp->protocol != PPP_ECP
888 * The peer has failed to authenticate himself using `protocol'.
891 auth_peer_fail(unit, protocol)
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.cpp 325 if (isDefaultPortForProtocol(url.port(), url.protocol()))
353 if (isDefaultPortForProtocol(port, url.protocol()))
424 if (isDefaultPortForProtocol(port, url.protocol()))
432 String HTMLAnchorElement::protocol() const function in class:WebCore::HTMLAnchorElement
434 return href().protocol() + ":";
  /external/webkit/Tools/DumpRenderTree/win/
UIDelegate.cpp 578 BSTR protocol; local
582 origin->protocol(&protocol);
587 printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%S, %S, %i} database:%S\n", protocol, host, port, databaseIdentifier);
589 SysFreeString(protocol);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 200 * ProviderNames from the predefined IM protocol id.
203 * @param protocol the protocol ID
204 * @return the provider name the IM app uses for the given protocol, or null if no
205 * provider is defined for the given protocol
208 public static String lookupProviderNameFromId(int protocol) {
209 switch (protocol) {
232 * {@link Email} row. Returns null when missing protocol or data.
241 final int protocol = isEmail ? Im.PROTOCOL_GOOGLE_TALK : values.getAsInteger(Im.PROTOCOL); local
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_store_mac.cc 40 const SecProtocolType& protocol,
67 const SecProtocolType& protocol,
96 if (protocol != kSecProtocolTypeAny) {
99 search_attributes_.attr[entries].length = sizeof(protocol);
101 const_cast<void*>(reinterpret_cast<const void*>(&protocol));
295 SecProtocolType protocol = *(static_cast<SecProtocolType*>(attr.data));
297 form->ssl_valid = (protocol == kSecProtocolTypeHTTPS);
556 SecProtocolType protocol = is_secure ? kSecProtocolTypeHTTPS local
564 port, protocol, AuthTypeForScheme(form.scheme),
658 SecProtocolType protocol = is_secure ? kSecProtocolTypeHTTP local
    [all...]
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
DeviceBridge.java 299 int protocol = -1; local
318 connection.sendCommand("PROTOCOL"); //$NON-NLS-1$
321 protocol = Integer.parseInt(line);
324 Log.e(TAG, "Unable to get view server protocol version from device " + device);
330 if (server == -1 || protocol == -1) {
333 ViewServerInfo returnValue = new ViewServerInfo(server, protocol);
385 // Automatic refreshing of windows was added in protocol version 3.
411 * protocol version 3 and above.
485 int protocol; local
487 protocol = sViewServerInfo.get(window.getDevice()).protocolVersion
    [all...]
  /system/bluetooth/tools/
asocket_test.c 89 int protocol = -1; local
95 protocol = 0;
100 protocol = BTPROTO_RFCOMM;
105 protocol = BTPROTO_SCO;
110 protocol = BTPROTO_L2CAP;
115 protocol = 0;
120 ret = socket(family, typ, protocol);
socktest.c 88 int protocol = -1; local
94 protocol = 0;
99 protocol = BTPROTO_RFCOMM;
104 protocol = BTPROTO_SCO;
109 protocol = BTPROTO_L2CAP;
114 protocol = 0;
119 ret = socket(family, typ, protocol);
  /external/qemu/hw/
pc.c 617 uint16_t protocol; local
639 /* kernel protocol version */
644 protocol = lduw_p(header+0x206);
646 protocol = 0;
648 if (protocol < 0x200 || !(header[0x211] & 0x01)) {
653 } else if (protocol < 0x202) {
676 if (protocol >= 0x203)
687 if (protocol >= 0x202) {
698 if (protocol >= 0x200)
702 if (protocol >= 0x201)
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-host.js 20 debug("Set default port for another protocol");
65 debug("Set host to URL with file: protocol");
110 debug("Set host to a URL with tel: protocol");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Mailbox.java 505 public boolean loadsFromServer(String protocol) {
506 if (HostAuth.SCHEME_EAS.equals(protocol)) {
512 } else if (HostAuth.SCHEME_IMAP.equals(protocol)) {
519 } else if (HostAuth.SCHEME_POP3.equals(protocol)) {
530 String protocol = Account.getProtocol(context, mAccountKey); local
531 return (!protocol.equals(HostAuth.SCHEME_POP3));
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 141 byte setProto( byte addr, byte ep, byte interface, byte protocol, unsigned int nak_limit = USB_NAK_LIMIT );
181 inline byte USB::setProto( byte addr, byte ep, byte interface, byte protocol, unsigned int nak_limit ) {
182 return( ctrlReq( addr, ep, bmREQ_HIDOUT, HID_REQUEST_SET_PROTOCOL, protocol, 0x00, interface, 0x0000, NULL, nak_limit ));
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/
Sasl3Test.java 97 * String authanticationID, String protocol, String serverName,
100 * throws SaslException when parameters (protocol, cbh, mechanisms) are
122 Sasl.createSaslClient(new String[] { "NAME-2" }, null, "protocol",
129 Sasl.createSaslClient(new String[] { "NAME-1" }, null, "protocol",
137 fail("SaslException should be thrown when protocol is null");
144 * String authanticationID, String protocol, String serverName,
163 * String authanticationID, String protocol, String serverName,
183 null, "protocol", null, null, cbH);
194 "protocol", null, null, cbH);
202 * String authanticationID, String protocol, String serverName
    [all...]
  /external/iptables/libipq/
libipq.c 85 { IPQ_ERR_PROTOCOL, "Invalid protocol specified" }
209 struct ipq_handle *ipq_create_handle(uint32_t flags, uint32_t protocol)
222 if (protocol == NFPROTO_IPV4)
224 else if (protocol == NFPROTO_IPV6)
  /frameworks/base/core/java/android/net/http/
Connection.java 36 import org.apache.http.protocol.ExecutionContext;
37 import org.apache.http.protocol.HttpContext;
38 import org.apache.http.protocol.BasicHttpContext;
487 // Resorting to protocol version default close connection policy
  /bionic/libc/kernel/common/linux/
if_ppp.h 66 int protocol; member in struct:npioctl
skbuff.h 155 __be16 protocol; member in struct:sk_buff
  /development/ndk/platforms/android-3/include/linux/
if_ppp.h 55 int protocol; member in struct:npioctl

Completed in 3005 milliseconds

<<11121314151617181920>>