/external/webkit/WebKit/win/ |
WebURLProtectionSpace.cpp | 151 /* [in] */ BSTR protocol, 161 if (BString(protocol) == webURLProtectionSpaceHTTPBString) 163 else if (BString(protocol) == webURLProtectionSpaceHTTPSBString) 165 else if (BString(protocol) == webURLProtectionSpaceFTPBString) 167 else if (BString(protocol) == webURLProtectionSpaceFTPSBString) 222 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::protocol( function in class:WebURLProtectionSpace
|
WebSecurityOrigin.cpp | 97 HRESULT STDMETHODCALLTYPE WebSecurityOrigin::protocol( function in class:WebSecurityOrigin 103 *result = BString(m_securityOrigin->protocol()).release();
|
/external/iproute2/tc/ |
f_rsvp.c | 29 fprintf(stderr, "Usage: ... rsvp ipproto PROTOCOL session DST[/PORT | GPI ]\n"); 87 if (pinfo->protocol == 0) 88 pinfo->protocol = IPPROTO_AH; 99 if (pinfo->protocol == 0) 100 pinfo->protocol = IPPROTO_ESP; 205 if (pinfo.dpi.mask || pinfo.protocol) 217 if (pinfo.spi.mask || pinfo.protocol) 228 pinfo.protocol = num; 367 if (pinfo && pinfo->protocol) { 369 fprintf(f, "ipproto %s ", inet_proto_n2a(pinfo->protocol, b1, sizeof(b1))) [all...] |
/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/WebCore/platform/ |
KURLGoogle.cpp | 85 static inline void assertProtocolIsGood(const char* protocol) 88 const char* p = protocol; 483 String KURL::protocol() const function in class:WebCore::KURL 573 bool KURL::setProtocol(const String& protocol) 576 replacements.SetScheme(CharactersOrEmpty(protocol), 577 url_parse::Component(0, protocol.length())); 743 bool isDefaultPortForProtocol(unsigned short port, const String& protocol) 745 if (protocol.isEmpty()) 756 return defaultPorts.get(protocol) == port; [all...] |
/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/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...] |
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
ClientHandshakeImpl.java | 46 * Client side handshake protocol implementation. 47 * Handshake protocol operates on top of the Record Protocol. 52 * to Record Protocol. Detected errors are reported to the Alert protocol. 55 * TLS Handshake Protocol</a> 92 session.protocol = ProtocolVersion.getLatestVersion(parameters 94 recordProtocol.setVersion(session.protocol.version); 110 session.protocol = ProtocolVersion.getLatestVersion(parameters 112 recordProtocol.setVersion(session.protocol.version) [all...] |
/external/ipsec-tools/src/libipsec/ |
policy_parse.y | 56 * protocol/mode/src-dst/level 57 * protocol/mode/src-dst parsed as protocol/mode/src-dst/default 58 * protocol/mode/src-dst/ parsed as protocol/mode/src-dst/default 59 * protocol/transport parsed as protocol/mode/any-any/default 60 * protocol/transport//level parsed as protocol/mode/any-any/level 142 %token ACTION PROTOCOL MODE LEVEL LEVEL_SPECIFY IPADDRESS POR [all...] |
/external/iptables/extensions/ |
libipt_conntrack.c | 29 " [!] --ctproto proto Protocol to match; by number or name, eg. `tcp'\n" 194 char *protocol = NULL; local 217 for (protocol = argv[optind-1]; *protocol; protocol++) 218 *protocol = tolower(*protocol); 220 protocol = argv[optind-1]; 221 sinfo->tuple[IP_CT_DIR_ORIGINAL].dst.protonum = parse_protocol(protocol); 226 "rule would never match protocol"); [all...] |
/external/opencore/fileformats/mp4/composer/include/ |
sampledescriptionatom.h | 40 uint32 protocol = 0, 48 uint32 protocol,
|
/external/webkit/WebCore/page/ |
Location.idl | 51 attribute [CustomSetter] DOMString protocol;
|
/external/webkit/WebKit/mac/WebView/ |
WebViewData.h | 45 @protocol WebFormDelegate; 46 @protocol WebGeolocationProvider;
|
/external/webkit/WebKit/chromium/tests/ |
KURLTest.cpp | 50 const char* protocol; member in struct:__anon6559::ComponentCase 66 const char* protocol; member in struct:__anon6559::GetterCase 87 EXPECT_EQ(cases[i].protocol, kurl.protocol()); 101 EXPECT_EQ(cases[i].protocol, kurl.protocol()); 118 // url protocol host port user pass path lastPath query ref 138 EXPECT_EQ(cases[i].protocol, kurl.protocol()); 168 // expects gkurl.protocol() to have been created as ascii 192 const char* protocol; member in struct:__anon6559::ExpectedComponentCase [all...] |
/cts/tests/core/luni-net/ |
Android.mk | 28 $(call all-java-files-under,../../../../dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http) \ 29 $(call all-java-files-under,../../../../dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https) \
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/ |
Handler.java | 18 package org.apache.harmony.luni.internal.net.www.protocol.file; 63 * if the protocol handler doesn't support this method.
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/ |
FtpURLInputStream.java | 18 package org.apache.harmony.luni.internal.net.www.protocol.ftp;
|
/external/apache-http/src/org/apache/http/client/ |
HttpClient.java | 40 import org.apache.http.protocol.HttpContext; 94 * @throws ClientProtocolException in case of an http protocol error 115 * @throws ClientProtocolException in case of an http protocol error 137 * @throws ClientProtocolException in case of an http protocol error 160 * @throws ClientProtocolException in case of an http protocol error 176 * @throws ClientProtocolException in case of an http protocol error 193 * @throws ClientProtocolException in case of an http protocol error 215 * @throws ClientProtocolException in case of an http protocol error 239 * @throws ClientProtocolException in case of an http protocol error
|
/external/apache-http/src/org/apache/http/conn/ |
ManagedClientConnection.java | 43 import org.apache.http.protocol.HttpContext; 126 * to layer the TLS/SSL protocol on top of the tunnelled connection. 129 * would automatically trigger the layering of the TLS/SSL protocol. 131 * layering a new protocol over the connection. 170 * Layers a new protocol on top of a {@link #tunnelTarget tunnelled}
|
/external/apache-http/src/org/apache/http/entity/ |
AbstractHttpEntity.java | 39 import org.apache.http.protocol.HTTP;
|
StringEntity.java | 40 import org.apache.http.protocol.HTTP;
|
/external/apache-http/src/org/apache/http/impl/ |
DefaultHttpResponseFactory.java | 42 import org.apache.http.protocol.HttpContext;
|
/external/apache-http/src/org/apache/http/impl/conn/ |
DefaultHttpRoutePlanner.java | 40 import org.apache.http.protocol.HttpContext;
|