/frameworks/base/core/tests/coretests/src/android/net/http/ |
CookiesTest.java | 47 * Test that we don't log potentially sensitive cookie values. 51 // enqueue an HTTP response with a cookie that will be rejected 53 .addHeader("Set-Cookie: password=secret; Domain=fake.domain")); 83 .addHeader("Set-Cookie: a=first; Domain=my.t-mobile.com") 84 .addHeader("Set-Cookie: b=second; Domain=.T-mobile.com") 85 .addHeader("Set-Cookie: c=third; Domain=.t-mobile.com") 102 assertContains(sendCookiesRequest.getHeaders(), "Cookie: a=first; b=second; c=third");
|
/external/webkit/Source/WebCore/inspector/front-end/ |
CookieParser.js | 31 // Ideally, we would rely on platform support for parsing a cookie, since 33 // platform cookie parsing logic would require quite a bit of additional 34 // plumbing, and at least some platforms lack support for parsing Cookie, 35 // which is in a format slightly different from Set-Cookie and is normally 57 this._addCookie(kv, WebInspector.Cookie.Type.Request); 72 this._addCookie(kv, WebInspector.Cookie.Type.Response); 106 // cookie values, though. 109 console.log("Failed parsing cookie header before: " + this._input); 136 // specifying a value for a cookie with empty name. 137 this._lastCookie = keyValue.value ? new WebInspector.Cookie(keyValue.key, keyValue.value, type) [all...] |
CookieItemsView.js | 141 _deleteCookie: function(cookie) 143 PageAgent.deleteCookie(cookie.name, this._cookieDomain); 228 var cookie = rawCookies[i]; 229 var delimIndex = cookie.indexOf("="); 230 var name = cookie.substring(0, delimIndex); 231 var value = cookie.substring(delimIndex + 1); 240 WebInspector.Cookies.cookieMatchesResourceURL = function(cookie, resourceURL) 243 if (!url || !this.cookieDomainMatchesResourceDomain(cookie.domain, url.host)) 245 return (url.path.indexOf(cookie.path) === 0 246 && (!cookie.port || url.port == cookie.port [all...] |
/external/chromium/net/base/ |
cookie_monster.h | 35 // The cookie monster is the system for storing and retrieving cookies. It has 43 // TODO(deanm) Implement CookieMonster, the cookie database. 78 // cookies. If the domain of the cookie has an eTLD+1, that is the 79 // key for the map. If the domain of the cookie does not have an eTLD+1, 80 // the key of the map is the host the cookie applies to (it is not 86 // then the key is just the domain of the cookie. Eventually, this 115 // this class, but it must remain valid for the duration of the cookie 126 // Parses the string with the cookie time (very forgivingly). 129 // Returns true if a domain string represents a host-only cookie, 133 // Sets a cookie given explicit user-provided cookie attributes. The cooki [all...] |
/external/kernel-headers/original/linux/ |
binder.h | 61 void *cookie; member in struct:flat_binder_object 125 void *cookie; /* target object cookie */ member in struct:binder_transaction_data 152 void *cookie; member in struct:binder_ptr_cookie 163 void *cookie; member in struct:binder_pri_ptr_cookie 210 * void *: cookie for binder 218 * void *: cookie for binder 243 * void *: cookie 247 * void *: cookie 288 * void *: cookie for binde [all...] |
/external/chromium/base/win/ |
pe_image.cc | 24 PVOID cookie; member in struct:base::win::EnumAllImportsStorage 49 PIMAGE_THUNK_DATA iat, PVOID cookie) { 51 cookie); 54 storage.cookie); 62 PIMAGE_THUNK_DATA unload_iat, PVOID cookie) { 64 cookie); 68 unload_iat, storage.cookie); 239 bool PEImage::EnumSections(EnumSectionsFunction callback, PVOID cookie) const { 248 if (!callback(*this, section, section_start, size, cookie)) 255 bool PEImage::EnumExports(EnumExportsFunction callback, PVOID cookie) const [all...] |
/external/wpa_supplicant/ |
ctrl_iface_udp.c | 50 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_priv 143 os_memcpy(reply, "COOKIE=", 7); 145 priv->cookie, COOKIE_LEN); 164 u8 cookie[COOKIE_LEN]; local 191 * Require that the client includes a prefix with the 'cookie' value 197 if (os_strncmp(buf, "COOKIE=", 7) != 0) { 198 wpa_printf(MSG_DEBUG, "CTLR: No cookie in the request - " 203 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) { 204 wpa_printf(MSG_DEBUG, "CTLR: Invalid cookie format in the " 209 if (os_memcmp(cookie, priv->cookie, COOKIE_LEN) != 0) 408 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_global_priv 443 u8 cookie[COOKIE_LEN]; local [all...] |
/external/wpa_supplicant_6/wpa_supplicant/ |
ctrl_iface_udp.c | 50 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_priv 143 os_memcpy(reply, "COOKIE=", 7); 145 priv->cookie, COOKIE_LEN); 164 u8 cookie[COOKIE_LEN]; local 191 * Require that the client includes a prefix with the 'cookie' value 197 if (os_strncmp(buf, "COOKIE=", 7) != 0) { 198 wpa_printf(MSG_DEBUG, "CTLR: No cookie in the request - " 203 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) { 204 wpa_printf(MSG_DEBUG, "CTLR: Invalid cookie format in the " 209 if (os_memcmp(cookie, priv->cookie, COOKIE_LEN) != 0) 408 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_global_priv 443 u8 cookie[COOKIE_LEN]; local [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
ctrl_iface_udp.c | 50 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_priv 143 os_memcpy(reply, "COOKIE=", 7); 145 priv->cookie, COOKIE_LEN); 164 u8 cookie[COOKIE_LEN]; local 191 * Require that the client includes a prefix with the 'cookie' value 197 if (os_strncmp(buf, "COOKIE=", 7) != 0) { 198 wpa_printf(MSG_DEBUG, "CTLR: No cookie in the request - " 203 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) { 204 wpa_printf(MSG_DEBUG, "CTLR: Invalid cookie format in the " 209 if (os_memcmp(cookie, priv->cookie, COOKIE_LEN) != 0) 408 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_global_priv 443 u8 cookie[COOKIE_LEN]; local [all...] |
/external/kernel-headers/original/asm-arm/ |
io.h | 160 * take an address as such, but a cookie. 236 #define ioremap(cookie,size) __ioremap(cookie,size,0) 237 #define ioremap_nocache(cookie,size) __ioremap(cookie,size,0) 238 #define ioremap_cached(cookie,size) __ioremap(cookie,size,L_PTE_CACHEABLE) 239 #define iounmap(cookie) __iounmap(cookie) 241 #define ioremap(cookie,size) __arch_ioremap((cookie),(size),0 [all...] |
/frameworks/base/libs/utils/ |
Debug.cpp | 41 static void defaultPrintFunc(void* cookie, const char* txt) 163 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) 168 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer); 174 debugPrintFunc func, void* cookie) 188 if (singleLineBytesCutoff < 0) func(cookie, "\n"); 189 func(cookie, "(NULL)"); 194 if (singleLineBytesCutoff < 0) func(cookie, "\n"); 195 func(cookie, "(empty)"); 200 if (singleLineBytesCutoff < 0) func(cookie, "\n") [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorInstrumentation.h | 450 inline void InspectorInstrumentation::didCallFunction(const InspectorInstrumentationCookie& cookie) 453 if (hasFrontends() && cookie.first) 454 didCallFunctionImpl(cookie); 467 inline void InspectorInstrumentation::didChangeXHRReadyState(const InspectorInstrumentationCookie& cookie) 470 if (hasFrontends() && cookie.first) 471 didChangeXHRReadyStateImpl(cookie); 484 inline void InspectorInstrumentation::didDispatchEvent(const InspectorInstrumentationCookie& cookie) 487 if (hasFrontends() && cookie.first) 488 didDispatchEventImpl(cookie); 501 inline void InspectorInstrumentation::didDispatchEventOnWindow(const InspectorInstrumentationCookie& cookie) [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
AsyncQueryHandlerTest.java | 54 private static final Object INSERT_COOKIE = "insert cookie"; 55 private static final Object QUERY_COOKIE = "query cookie"; 56 private static final Object DELETE_COOKIE = "delete cookie"; 57 private static final Object UPDATE_COOKIE = "update cookie"; 385 private void startQuery(int token, Object cookie, Uri uri, String[] projection, 390 mAsyncHandler.startQuery(token, cookie, uri, projection, 394 private void startInsert(int token, Object cookie, Uri uri, 399 mAsyncHandler.startInsert(token, cookie, uri, initialValues); 402 private void startUpdate(int token, Object cookie, Uri uri, ContentValues values, 407 mAsyncHandler.startUpdate(token, cookie, uri, values, selection, selectionArgs) [all...] |
/external/apache-http/src/org/apache/http/cookie/ |
CookieIdentityComparator.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/CookieIdentityComparator.java $ 32 package org.apache.http.cookie; 38 * This cookie comparator can be used to compare identity of cookies. 47 public class CookieIdentityComparator implements Serializable, Comparator<Cookie> { 51 public int compare(final Cookie c1, final Cookie c2) {
|
SetCookie2.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SetCookie2.java $ 32 package org.apache.http.cookie; 45 * If a user agent (web browser) presents this cookie to a user, the 46 * cookie's purpose will be described by the information at this URL. 51 * Sets the Port attribute. It restricts the ports to which a cookie 52 * may be returned in a Cookie request header.
|
/bootable/bootloader/legacy/libboot/ |
tags_cmdline.c | 33 static void tag_cmdline(unsigned tag, void *data, unsigned bytes, void *cookie) 35 *((const char **) cookie) = data; 45 h.cookie = &cmdline;
|
tags_revision.c | 33 static void tag_revision(unsigned tag, void *data, unsigned bytes, void *cookie) 36 memcpy(cookie, data, 4); 47 h.cookie = &n;
|
tags_serialno.c | 33 static void tag_serialno(unsigned tag, void *data, unsigned bytes, void *cookie) 36 memcpy(cookie, data, 8); 46 h.cookie = sn;
|
/external/chromium/chrome/browser/chromeos/login/ |
cookie_fetcher.h | 27 // |profile| is the Profile whose cookie jar you want the cookies in. 30 // |profile| is the Profile whose cookie jar you want the cookies in. 43 // stored in the cookie jar associated with |profile_|, if we get them.
|
/external/webkit/Source/WebCore/platform/network/curl/ |
CookieJarCurl.cpp | 20 #include "Cookie.h" 43 // FIXME: include HttpOnly cookie. 52 bool getRawCookies(const Document*, const KURL&, Vector<Cookie>& rawCookies)
|
/frameworks/base/include/media/stagefright/ |
MPEG2TSWriter.h | 35 void *cookie, 36 ssize_t (*write)(void *cookie, const void *data, size_t size)); 60 ssize_t (*mWriteFunc)(void *cookie, const void *data, size_t size);
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
NotifyingAsyncQueryHandler.java | 40 void onQueryComplete(int token, Object cookie, Cursor cursor); 58 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { 61 listener.onQueryComplete(token, cookie, cursor);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
mqueue.h | 39 * - sigev_value.sival_ptr must point to a cookie that is NOTIFY_COOKIE_LEN 41 * If the notification is triggered, then the cookie is sent to the netlink 42 * socket. The last byte of the cookie is replaced with the NOTIFY_?? codes:
|
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
saslcookiemechanism.h | 43 const std::string & cookie, 47 cookie_(cookie), 52 const std::string & cookie) 55 cookie_(cookie),
|
/external/webkit/LayoutTests/http/tests/cookies/resources/ |
cookie-utility.php | 17 echo "Set the foo cookie";
|