HomeSort by relevance Sort by last modified time
    Searched defs:secure (Results 1 - 23 of 23) sorted by null

  /external/webkit/WebKit/chromium/public/
WebCookie.h 47 , secure(false)
53 const WebString& path, double expires, bool httpOnly, bool secure, bool session)
60 , secure(secure)
71 bool secure; member in struct:WebKit::WebCookie
  /external/apache-http/src/org/apache/http/cookie/
CookieOrigin.java 48 private final boolean secure; field in class:CookieOrigin
50 public CookieOrigin(final String host, int port, final String path, boolean secure) {
74 this.secure = secure;
90 return this.secure;
97 if (this.secure) {
98 buffer.append("(secure)");
  /external/webkit/WebCore/platform/
Cookie.h 39 const String& path, double expires, bool httpOnly, bool secure,
47 , secure(secure)
58 bool secure; member in struct:WebCore::Cookie
65 return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure;
70 return a.name == b.name && a.domain == b.domain && a.path == b.path && a.secure == b.secure;
  /external/webkit/WebCore/platform/network/win/
CookieJarCFNetWin.cpp 103 bool secure = url.protocolIs("https"); local
104 RetainPtr<CFArrayRef> cookiesCF(AdoptCF, CFHTTPCookieStorageCopyCookiesForURL(cookieStorage, urlCF.get(), secure));
117 bool secure = url.protocolIs("https"); local
118 RetainPtr<CFArrayRef> cookiesCF(AdoptCF, CFHTTPCookieStorageCopyCookiesForURL(cookieStorage, urlCF.get(), secure));
156 bool secure = CFHTTPCookieIsSecure(cookie); local
159 rawCookies.uncheckedAppend(Cookie(name, value, domain, path, expires, httpOnly, secure, session));
  /external/apache-http/src/org/apache/http/conn/routing/
HttpRoute.java 71 /** Whether the route is (supposed to be) secure. */
72 private final boolean secure; field in class:HttpRoute
88 * @param secure <code>true</code> if the route is (to be) secure,
97 boolean secure,
117 this.secure = secure;
131 * @param secure <code>true</code> if the route is (to be) secure,
137 boolean secure, TunnelType tunnelled, LayerType layered)
    [all...]
RouteTracker.java 76 /** Whether the route is secure. */
77 private boolean secure; field in class:RouteTracker
114 * @param secure <code>true</code> if the route is secure,
117 public final void connectTarget(boolean secure) {
122 this.secure = secure;
130 * @param secure <code>true</code> if the route is secure,
133 public final void connectProxy(HttpHost proxy, boolean secure) {
    [all...]
  /external/bluetooth/bluez/compat/
dund.c 71 static int secure; variable
151 if (secure)
395 { "secure", 0, 0, 'S' },
426 "\t--secure -S Secure connection\n"
499 secure = 1;
  /external/chromium/net/websockets/
websocket.cc 175 bool secure = is_secure(); local
177 if ((!secure &&
179 (secure &&
  /external/webkit/WebCore/websockets/
WebSocketHandshake.cpp 128 bool WebSocketHandshake::secure() const function in class:WebCore::WebSocketHandshake
133 void WebSocketHandshake::setSecure(bool secure)
135 m_secure = secure;
  /external/bluetooth/bluez/test/
rctest.c 83 static int secure = 0; variable
204 if (secure)
282 if (secure)
591 "\t[-S] secure connection\n"
679 secure = 1;
l2test.c 107 static int secure = 0; variable
277 if (secure)
372 if (secure)
1019 if (secure)
1083 "\t[-S] secure connection\n"
1236 secure = 1;
  /external/bluetooth/bluez/tools/
main.c 59 static int secure = 0; variable
510 if (secure)
718 "\t-S, --secure Secure connection\n"
740 { "secure", 0, 0, 'S' },
787 secure = 1;
  /external/clearsilver/python/
neo_cgi.c 262 int secure = 0; local
264 static char *kwlist[] = {"name", "value", "path", "domain", "time_str", "persist", "secure", NULL};
266 if (!PyArg_ParseTupleAndKeywords(args, keywds, "ss|sssii:cookieSet()", kwlist, &name, &value, &path, &domain, &time_str, &persist, &secure))
269 err = cgi_cookie_set (cgi, name, value, path, domain, time_str, persist, secure);
  /external/webkit/WebCore/platform/text/
StringImpl.cpp 239 PassRefPtr<StringImpl> StringImpl::secure(UChar aChar) function in class:WebCore::StringImpl
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
isdn.h 130 int secure; /* Flag: Secure */ member in struct:__anon14453
  /system/core/adb/
adb.c 838 int secure = 0; local
866 /* run adbd in secure mode if ro.secure is set and
871 property_get("ro.secure", value, "");
873 // don't run as root if ro.secure is set...
874 secure = 1;
882 secure = 0;
888 /* don't listen on a port (default 5037) if running in secure mode */
889 /* don't run as root if we are running in secure mode */
890 if (secure) {
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 615 boolean secure = createTunnelToTarget(route, context);
617 managedConn.tunnelTarget(secure, this.params);
626 boolean secure = createTunnelToProxy(route, hop, context);
629 secure, this.params); local
668 * @return <code>true</code> if the tunnelled route is secure,
788 // Even if that is secure, the hop to the target may be insecure.
    [all...]
  /frameworks/base/core/java/android/webkit/
CookieManager.java 50 private static final String SECURE = "secure";
74 private static final int SECURE_LENGTH = SECURE.length();
139 boolean secure; field in class:CookieManager.Cookie
361 // secure cookies can't be overwritten by non-HTTPS url
362 if (!cookieEntry.secure || HTTPS.equals(uri.mScheme)) {
365 cookieEntry.secure = cookie.secure;
447 boolean secure = HTTPS.equals(uri.mScheme);
458 && (!cookie.secure || secure
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 1782 milliseconds