Searched refs:cookie (Results 126 - 150 of 468) sorted by relevance

1234567891011>>

/external/chromium_org/tools/perf/measurements/
H A Dpage_cycler.js23 document.cookie = name + "=" + value + "; path=/";
/external/kernel-headers/original/asm-arm/
H A Dio.h160 * 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,siz
[all...]
/external/kernel-headers/original/linux/
H A Dbinder.h61 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 fo
[all...]
H A Dif_arcnet.h95 uint8_t cookie[sizeof(int)]; /* Actually NOT sent over the network */ member in struct:arc_cap
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_cookie_helper_unittest.cc51 // Correct because fetching cookies will get a sorted cookie list.
68 // Correct because fetching cookies will get a sorted cookie list.
211 net::CanonicalCookie cookie = cookie_list_[0]; local
212 cookie_helper->DeleteCookie(cookie);
222 net::CookieList cookie; local
242 cookie = cookie_list_;
247 helper->AddReadCookies(origin, origin, cookie);
255 net::CookieList cookie; local
268 cookie = cookie_list_;
272 helper->AddReadCookies(origin, origin, cookie);
281 net::CookieList cookie; local
[all...]
/external/chromium/chrome/browser/ui/views/
H A Dcookie_info_view.cc60 const net::CookieMonster::CanonicalCookie& cookie) {
61 name_value_field_->SetText(UTF8ToWide(cookie.Name()));
62 content_value_field_->SetText(UTF8ToWide(cookie.Value()));
64 path_value_field_->SetText(UTF8ToWide(cookie.Path()));
66 base::TimeFormatFriendlyDateAndTime(cookie.CreationDate()));
68 std::wstring expire_text = cookie.DoesExpire() ?
69 base::TimeFormatFriendlyDateAndTime(cookie.ExpiryDate()) :
75 if (cookie.DoesExpire())
87 send_for_value_field_->SetText(cookie.IsSecure() ?
99 net::CookieMonster::CanonicalCookie cookie(ur
58 SetCookie( const std::string& domain, const net::CookieMonster::CanonicalCookie& cookie) argument
[all...]
/external/chromium/net/base/
H A Dcookie_monster_perftest.cc28 std::string cookie(kCookieLine);
31 CookieMonster::ParsedCookie pc(cookie);
38 std::string cookie(3800, 'z');
39 cookie += kCookieLine;
42 CookieMonster::ParsedCookie pc(cookie);
79 std::string cookie(kCookieLine);
85 // Add a cookie on a bunch of host
89 EXPECT_TRUE(cm->SetCookie(*it, cookie));
116 // Create a balanced binary tree of domains on which the cookie is set.
144 const std::string cookie local
186 const std::string cookie = base::StringPrintf(domain_cookie_format_line, local
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dcookies_tree_model_util.cc110 dict->SetString(kKeyType, "cookie");
113 const net::CanonicalCookie& cookie = *node.GetDetailedInfo().cookie; local
115 dict->SetString(kKeyName, cookie.Name());
116 dict->SetString(kKeyContent, cookie.Value());
117 dict->SetString(kKeyDomain, cookie.Domain());
118 dict->SetString(kKeyPath, cookie.Path());
119 dict->SetString(kKeySendFor, cookie.IsSecure() ?
122 std::string accessible = cookie.IsHttpOnly() ?
127 base::TimeFormatFriendlyDateAndTime(cookie
[all...]
/external/chromium/chrome/browser/printing/
H A Dprint_view_manager.h63 void OnDidGetPrintedPagesCount(int cookie, int number_pages);
112 bool OpportunisticallyCreatePrintJob(int cookie);
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host.cc35 uint32 cookie = base::NetToHost32(*reinterpret_cast<const uint32*>(data + 4));
36 if (cookie != kStunMagicCookie)
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jar ... cookie.Cookie c1 org.apache.http.cookie.Cookie c2 String path1 String path2 public volatile synthetic
/external/wpa_supplicant_8/wpa_supplicant/
H A Dctrl_iface_udp.c44 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_priv
139 priv->cookie, COOKIE_LEN);
158 u8 cookie[COOKIE_LEN]; local
189 * Require that the client includes a prefix with the 'cookie' value
196 wpa_printf(MSG_DEBUG, "CTLR: No cookie in the request - "
201 if (hexstr2bin(buf + 7, cookie, COOKIE_LEN) < 0) {
202 wpa_printf(MSG_DEBUG, "CTLR: Invalid cookie format in the "
207 if (os_memcmp(cookie, priv->cookie, COOKIE_LEN) != 0) {
208 wpa_printf(MSG_DEBUG, "CTLR: Invalid cookie i
419 u8 cookie[COOKIE_LEN]; member in struct:ctrl_iface_global_priv
454 u8 cookie[COOKIE_LEN]; local
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketKexInit.java27 kp.cookie = new byte[16];
28 rnd.nextBytes(kp.cookie);
56 kp.cookie = tr.readBytes(16);
80 tw.writeBytes(kp.cookie, 0, 16);
115 return kp.cookie;
/external/chromium_org/net/cookies/
H A Dcookie_monster_perftest.cc45 // Note that the performance tests currently all operate on a loaded cookie
65 CookieMonster* cm, const GURL& gurl, const std::string& cookie) {
66 cm->SetCookieWithOptionsAsync(gurl, cookie, options_, base::Bind(
99 std::string cookie(kCookieLine);
102 ParsedCookie pc(cookie);
109 std::string cookie(3800, 'z');
110 cookie += kCookieLine;
113 ParsedCookie pc(cookie);
154 std::string cookie(kCookieLine);
162 // Add a cookie o
64 SetCookie( CookieMonster* cm, const GURL& gurl, const std::string& cookie) argument
222 const std::string cookie = base::StringPrintf(domain_cookie_format_tree, local
264 const std::string cookie = base::StringPrintf(domain_cookie_format_line, local
[all...]
/external/chromium_org/chrome/browser/extensions/api/cookies/
H A Dcookies_unittest.cc89 canonical_cookie1, "some cookie store"));
99 EXPECT_EQ("some cookie store", cookie1->store_id);
107 canonical_cookie2, "some cookie store"));
144 net::CanonicalCookie cookie; local
145 EXPECT_TRUE(filter.MatchesCookie(cookie));
168 net::CanonicalCookie cookie(GURL(),
179 EXPECT_EQ(tests[i].matches, filter.MatchesCookie(cookie));
195 scoped_ptr<Cookie> cookie(
197 canonical_cookie, "some cookie store"));
198 EXPECT_EQ(std::string("011Q255bNX_1!yd\xEF\xBF\xBD" "e+"), cookie
[all...]
/external/chromium_org/chrome/renderer/
H A Dmock_printer.h79 void ScriptedPrint(int cookie,
83 void UpdateSettings(int cookie, PrintMsg_PrintPages_Params* params,
86 void SetPrintedPagesCount(int cookie, int number_pages);
/external/chromium_org/ppapi/generators/
H A Didl_option.py20 testfunc = None, cookie = None):
31 self.cookie = cookie
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDOMTimer.cpp119 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireTimer(context, m_timeoutID); local
132 InspectorInstrumentation::didFireTimer(cookie);
145 InspectorInstrumentation::didFireTimer(cookie);
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dinspector_page.py108 """Returns the value of the cookie by the given |name|."""
114 for cookie in cookies:
115 if cookie['name'] == name:
116 return cookie['value']
/external/chromium_org/tools/telemetry/telemetry/core/backends/webdriver/
H A Dwebdriver_tab_backend.py88 cookie = self._browser_backend.driver.get_cookie(name)
89 if cookie:
90 return cookie['value']
/external/apache-http/src/org/apache/http/client/protocol/
H A DClientContextConfigurer.java39 import org.apache.http.cookie.CookieSpecRegistry;
/external/chromium_org/chrome/browser/printing/
H A Dprint_view_manager_basic.h46 virtual void OnPrintingFailed(int cookie) OVERRIDE;
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_signin_helper_unittest.cc131 scoped_ptr<net::CanonicalCookie> cookie(
138 cookie_list.push_back(*cookie);
151 scoped_ptr<net::CanonicalCookie> cookie(
158 cookie_list.push_back(*cookie);
/external/chromium_org/net/websockets/
H A Dwebsocket_handshake_handler_spdy_test.cc149 headers["cookie"]);
160 std::string cookie = "WK-websocket-test=1"; local
161 cookie.append(1, '\0');
162 cookie += "WK-websocket-test-httponly=1; HttpOnly";
163 headers["set-cookie"] = cookie;
179 "set-cookie: WK-websocket-test=1\r\n"
180 "set-cookie: WK-websocket-test-httponly=1; HttpOnly\r\n"
/external/oprofile/daemon/
H A Dopd_mangling.c43 if (sf->cookie == sf->app_cookie)
85 values.image_name = find_cookie(sf->cookie);
116 values.cg_image_name = find_cookie(last->cookie);
183 binary = find_cookie(sf->cookie);

Completed in 546 milliseconds

1234567891011>>