HomeSort by relevance Sort by last modified time
    Searched refs:cookies (Results 51 - 75 of 134) sorted by null

1 23 4 5 6

  /external/apache-http/android/src/android/net/http/
Headers.java 123 private ArrayList<String> cookies = new ArrayList<String>(2); field in class:Headers
285 cookies.add(val);
366 return this.cookies;
  /frameworks/base/core/java/android/content/res/
AssetManager.java 305 // Cookies map to string blocks starting at 1.
697 * cookies for each added asset with 0 indicating failure, or null if
706 int[] cookies = new int[paths.length]; local
708 cookies[i] = addAssetPath(paths[i]);
711 return cookies;
  /external/jetty/src/java/org/eclipse/jetty/servlets/
BalancerServlet.java 319 Cookie[] cookies = request.getCookies(); local
321 for (Cookie cookie : cookies)
  /frameworks/base/core/jni/
android_hardware_location_ContextHubService.cpp 105 uint32_t *cookies; member in struct:android::__anon28150::context_hub_info_s
520 db.hubInfo.cookies = (uint32_t *)malloc(sizeof(uint32_t) * db.hubInfo.numHubs);
522 if (!db.hubInfo.cookies) {
523 ALOGW("Ran out of memory allocating cookies, bailing");
528 db.hubInfo.cookies[i] = db.hubInfo.hubs[i].hub_id;
532 &db.hubInfo.cookies[i]) == 0) {
    [all...]
  /external/chromium-trace/catapult/third_party/WebOb/webob/
response.py 31 from webob.cookies import (
808 cookies = Cookie()
810 cookies.load(header)
813 if name in cookies:
814 del cookies[name]
816 for m in cookies.values():
823 """Merge the cookies that were set on this response with the
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_auth_test.py 65 cookies = rsp.headers.get('Set-Cookie')
66 req = webapp2.Request.blank('/', headers=[('Cookie', cookies)])
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 246 * Provides rudimentary support for cookies. Doesn't support 'path',
254 private final HashMap<String, String> cookies = new HashMap<String, String>(); field in class:NanoHTTPD.CookieHandler
265 this.cookies.put(data[0], data[1]);
284 return this.cookies.keySet().iterator();
295 return this.cookies.get(name);
317 * Internally used by the webserver to add all queued cookies into the
321 * The Response object to which headers the queued cookies
561 private CookieHandler cookies; field in class:NanoHTTPD.HTTPSession
830 this.cookies = new CookieHandler(this.headers);
848 this.cookies.unloadQueue(r)
    [all...]
  /system/extras/tests/net_test/
sock_diag_test.py 122 # Find the cookies for all of our sockets.
123 cookies = {}
129 cookies[(addr, sport, dport)] = diag_msg.id.cookie
131 cookies[(addr, sport, dport)] = diag_msg.id.cookie
133 # Did we find all the cookies?
134 self.assertEquals(2 * NUM_SOCKETS, len(cookies))
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cookielib.py 253 # cookies with no value should be saved and loaded consistently
282 # Invalid contents of cookies file (eg. bad magic string)
303 # Netscape cookies work the same as RFC 2965 with regard to port.
305 # If turn RFC 2965 handling off, Set-Cookie2 cookies should not clobber
306 # Set-Cookie cookies.
307 # Cookie2 should be sent if *any* cookies are not V1 (ie. V0 OR V2 etc.).
308 # Cookies (V1 and V0) with no expiry date should be set to be discarded.
397 # cookies unchanged apart from lost info re. whether path was specified
407 # RFC 2109 cookies are handled as RFC 2965 or Netscape cookies,
    [all...]
test_httplib.py 241 cookies = r.getheader("Set-Cookie")
242 if cookies != hdr:
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cookielib.py 253 # cookies with no value should be saved and loaded consistently
282 # Invalid contents of cookies file (eg. bad magic string)
303 # Netscape cookies work the same as RFC 2965 with regard to port.
305 # If turn RFC 2965 handling off, Set-Cookie2 cookies should not clobber
306 # Set-Cookie cookies.
307 # Cookie2 should be sent if *any* cookies are not V1 (ie. V0 OR V2 etc.).
308 # Cookies (V1 and V0) with no expiry date should be set to be discarded.
397 # cookies unchanged apart from lost info re. whether path was specified
407 # RFC 2109 cookies are handled as RFC 2965 or Netscape cookies,
    [all...]
test_httplib.py 241 cookies = r.getheader("Set-Cookie")
242 if cookies != hdr:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 253 # cookies with no value should be saved and loaded consistently
282 # Invalid contents of cookies file (eg. bad magic string)
303 # Netscape cookies work the same as RFC 2965 with regard to port.
305 # If turn RFC 2965 handling off, Set-Cookie2 cookies should not clobber
306 # Set-Cookie cookies.
307 # Cookie2 should be sent if *any* cookies are not V1 (ie. V0 OR V2 etc.).
308 # Cookies (V1 and V0) with no expiry date should be set to be discarded.
397 # cookies unchanged apart from lost info re. whether path was specified
407 # RFC 2109 cookies are handled as RFC 2965 or Netscape cookies,
    [all...]
test_httplib.py 241 cookies = r.getheader("Set-Cookie")
242 if cookies != hdr:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 253 # cookies with no value should be saved and loaded consistently
282 # Invalid contents of cookies file (eg. bad magic string)
303 # Netscape cookies work the same as RFC 2965 with regard to port.
305 # If turn RFC 2965 handling off, Set-Cookie2 cookies should not clobber
306 # Set-Cookie cookies.
307 # Cookie2 should be sent if *any* cookies are not V1 (ie. V0 OR V2 etc.).
308 # Cookies (V1 and V0) with no expiry date should be set to be discarded.
397 # cookies unchanged apart from lost info re. whether path was specified
407 # RFC 2109 cookies are handled as RFC 2965 or Netscape cookies,
    [all...]
test_httplib.py 241 cookies = r.getheader("Set-Cookie")
242 if cookies != hdr:
  /external/chromium-trace/catapult/third_party/coverage/coverage/htmlfiles/
coverage_html.js 181 var cookies = document.cookie.split(";");
182 for (i = 0; i < cookies.length; i++) {
183 var parts = cookies[i].split("=");
  /external/libchrome/base/
pickle_unittest.cc 243 int cookies[10]; member in struct:base::CustomHeader
288 int cookies[10]; member in struct:base::CustomHeader
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
sessions.py 21 #: Secret key to generate session cookies. Set this to something random
43 #: cookies set for `.mydomain.org` will work in `foo.mydomain.org` and
44 #: `bar.mydomain.org`. Default is None, which means that cookies will
180 Signed cookies can't be forged because the HMAC signature won't match.
314 # Serializer and deserializer for signed cookies.
359 - ``securecookie``: uses secure cookies. This is the default
375 # Signed cookies ----------------------------------------------------------
391 value = self.request.cookies.get(name)
  /external/curl/lib/
url.c     [all...]
  /cts/libs/testserver/src/android/webkit/cts/
CtsTestServer.java 667 * Return a page with a title containing a list of all incoming cookies,
673 Header[] cookies = request.getHeaders("Cookie"); local
676 cookieString.append(cookies.length);
678 for (Header cookie : cookies) {
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/
fixture.py 30 from http.cookies import BaseCookie
149 saved cookies.
151 self.cookies = {}
391 if self.cookies:
393 for name, value in self.cookies.items():
432 self.cookies[key] = morsel.value
    [all...]
  /external/robolectric/v1/lib/main/
httpclient-4.0.3.jar 
  /libcore/ojluni/src/main/java/sun/net/www/protocol/http/
HttpURLConnection.java 260 // also exclude system cookies when any might be set
287 /* User set Cookies */
611 // get applicable cookies based on the uri and request headers
734 /* Application set Proxies should not have access to cookies
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.0.1/
httpclient-4.0.1.jar 

Completed in 891 milliseconds

1 23 4 5 6