Searched refs:cookie (Results 276 - 300 of 424) sorted by relevance

<<11121314151617

/external/chromium_org/components/signin/core/browser/
H A Dabout_signin_internals.h45 // Notification that the cookie accounts are ready to be displayed.
92 // corresponding to the cookies residing on the current cookie jar.
186 // Called when a cookie changes. If the cookie relates to a GAIA LSID cookie,
188 void OnCookieChanged(const net::CanonicalCookie* cookie);
199 // Fetcher for information about accounts in the cookie jar from GAIA.
H A Daccount_reconcilor.h135 // Note internally that this |account_id| is added to the cookie jar.
138 void OnCookieChanged(const net::CanonicalCookie* cookie);
183 // These members are used to validate the gaia cookie. |gaia_accounts_|
184 // holds the state of google accounts in the gaia cookie. Each element is
187 // are ordered the in same way as the gaia cookie.
/external/chromium_org/net/websockets/
H A Dwebsocket_job.h29 // It captures WebSocket handshake message and handles cookie operations.
31 // see HttpOnly cookies, so it injects cookie header in handshake request and
32 // strips set-cookie headers in handshake response.
92 void LoadCookieCallback(const std::string& cookie);
99 // Saves received cookies to the cookie store, and then notifies the
/external/chromium_org/sandbox/win/src/
H A Dsandbox_policy_base.h107 bool Ping(IPCInfo* ipc, void* cookie);
/external/libunwind/src/ia64/
H A DGtables.c142 unw_word_t hdr_addr, info_addr, hdr, directives, pers, cookie, off; local
212 || ((ret = read_mem (as, info_addr + 0x10, &cookie, arg)) < 0)
217 || (!as->big_endian && cookie != 0x7473696c2d6e7964ULL)
218 || ( as->big_endian && cookie != 0x64796e2d6c697374ULL))
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio.c35 #include <mint/cookie.h>
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorPageAgent.cpp556 // scripts once we restored the scripts from the cookie during navigation.
562 // Force cookie serialization.
589 static PassRefPtr<TypeBuilder::Page::Cookie> buildObjectForCookie(const Cookie& cookie) argument
592 .setName(cookie.name)
593 .setValue(cookie.value)
594 .setDomain(cookie.domain)
595 .setPath(cookie.path)
596 .setExpires(cookie.expires)
597 .setSize((cookie.name.length() + cookie
[all...]
/external/chromium_org/chrome/browser/content_settings/
H A Dtab_specific_content_settings_unittest.cc68 // Set a cookie, block access to images, block mediastream access and block a
99 // Block a cookie.
174 // Record a cookie.
185 // Record a blocked cookie.
360 scoped_ptr<net::CanonicalCookie> cookie(
365 cookie_list.push_back(*cookie);
/external/chromium_org/chrome/test/chromedriver/client/
H A Dchromedriver.py285 def AddCookie(self, cookie):
286 self.ExecuteCommand(Command.ADD_COOKIE, {'cookie': cookie})
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventTarget.cpp348 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willHandleEvent(this, event, registeredListener.listener.get(), registeredListener.useCapture); local
352 InspectorInstrumentation::didHandleEvent(cookie);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSharedWorkerImpl.cpp270 void WebSharedWorkerImpl::updateInspectorStateCookie(const String& cookie) argument
275 const Closure& boundFunction = bind(&WebSharedWorkerClient::saveDevToolsAgentState, m_clientWeakPtr, cookie.isolatedCopy());
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_header.h76 uint32_t time; /* time in ms to extend cookie */
187 /* state cookie header */
190 struct timeval time_entered; /* the time I built cookie */
191 uint32_t cookie_life; /* life I will award this cookie */
219 * (minus the cookie).
238 * We include this to 0 it since only a missing cookie will cause
251 /* state cookie parameter */
254 struct sctp_state_cookie cookie; member in struct:sctp_state_cookie_param
360 struct sctp_state_cookie cookie; member in struct:sctp_cookie_echo_chunk
391 /* Oper error holding a stale cookie */
[all...]
/external/chromium_org/net/cookies/
H A Dcookie_monster_unittest.cc227 bool DeleteCanonicalCookie(CookieMonster* cm, const CanonicalCookie& cookie) { argument
231 cookie,
251 // * Three levels of domain cookie (.b.a, .c.b.a, .d.c.b.a)
252 // * Three levels of host cookie (w.b.a, w.c.b.a, w.d.c.b.a)
253 // * http_only cookie (w.c.b.a)
322 // Http_only cookie
432 std::string cookie = base::StringPrintf("a%03d=b", i); local
433 EXPECT_TRUE(SetCookie(cm.get(), url_google_, cookie));
436 EXPECT_NE(cookies.find(cookie), std::string::npos);
489 // domain cookie evictio
527 std::string cookie = base::StringPrintf( local
1063 CanonicalCookie cookie = BuildCanonicalCookie( local
1069 &cookie_monster(), cookie, &delete_cookie_callback)); local
1075 &cookie_monster(), cookie, &delete_cookie_callback)); local
2397 DeleteCanonicalCookieTask(CookieMonster* cm, const CanonicalCookie& cookie, ResultSavingCookieCallback<bool>* callback) argument
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dcookies_tree_model.cc165 cookie(NULL),
192 const net::CanonicalCookie* cookie) {
194 this->cookie = cookie;
298 std::list<net::CanonicalCookie>::iterator cookie)
299 : CookieTreeNode(base::UTF8ToUTF16(cookie->Name())),
300 cookie_(cookie) {
988 return COOKIE; // It's kinda like a cookie?
191 InitCookie( const net::CanonicalCookie* cookie) argument
297 CookieTreeCookieNode( std::list<net::CanonicalCookie>::iterator cookie) argument
H A Dcookies_tree_model.h109 DetailedInfo& InitCookie(const net::CanonicalCookie* cookie);
134 const net::CanonicalCookie* cookie; member in struct:CookieTreeNode::DetailedInfo
154 // the cookie from CookieMonster, clear the database, and so forth.)
259 // The cookie should remain valid at least as long as the
262 std::list<net::CanonicalCookie>::iterator cookie);
639 // Because non-cookie nodes are fetched in a background thread, they are not
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
H A DAuditRules.js1434 _callbackForResourceCookiePairs: function(requests, cookie, callback)
1439 if (WebInspector.Cookies.cookieMatchesResourceURL(cookie, requests[i].url))
1440 callback(requests[i], cookie);
1453 WebInspector.AuditRules.CookieRuleBase.call(this, "http-cookiesize", WebInspector.UIString("Minimize cookie size"));
1489 function collectorCallback(request, cookie)
1496 cookies.push(cookie);
1537 result.addChild(WebInspector.UIString("The average cookie size for all requests on this page is %s", Number.bytesToString(avgAllCookiesSize)));
1541 var entry = result.addChild(WebInspector.UIString("The following domains have a cookie size in excess of 1KB. This is harmful because requests with cookies larger than 1KB typically cannot fit into a single network packet."), true);
1547 var entry = result.addChild(WebInspector.UIString("The following domains have an average cookie size in excess of %d bytes. Reducing the size of cookies for these domains can reduce the time it takes to send requests.", this._avgBytesThreshold), true);
1595 _collectorCallback: function(matchingResourceData, request, cookie)
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_framer.cc34 // Check to see if the name and value of a cookie are both empty.
35 bool IsCookieEmpty(const base::StringPiece& cookie) { argument
36 if (cookie.size() == 0) {
39 size_t pos = cookie.find('=');
43 // Ignore leading whitespaces of cookie value.
45 for (; value_start < cookie.size(); value_start++) {
46 if (!(cookie[value_start] == ' ' || cookie[value_start] == '\t')) {
50 return (pos == 0) && ((cookie.size() - value_start) == 0);
1197 // cookie dat
1319 std::string cookie; local
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dprepare.c234 ** meta[0] Schema cookie. Changes with each schema change.
440 ** Check schema cookies in all databases. If any cookie is out
448 int cookie; local
454 Btree *pBt = db->aDb[iDb].pBt; /* Btree database to read cookie from */
469 /* Read the schema cookie from the database. If it does not match the
472 sqlite3BtreeGetMeta(pBt, BTREE_SCHEMA_VERSION, (u32 *)&cookie);
474 if( cookie!=db->aDb[iDb].pSchema->schema_cookie ){
555 ** prepared statement goes to run the schema cookie would fail to detect
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/
H A DSDL_sysjoystick.c53 IOHIDElementCookie cookie; /* unique value which identifies element, will NOT change */ member in struct:recElement
125 result = (*(pDevice->interface))->getElementValue(pDevice->interface, pElement->cookie, &hidEvent);
241 pElement->cookie = (IOHIDElementCookie) number;
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysvideo.cc645 int32 cookie = 0; local
646 while (get_next_image_info(0,&cookie,&info) == B_OK) {
651 if (get_image_symbol((image_id)cookie,"glBegin",B_SYMBOL_TYPE_ANY,&location) == B_OK) { // I don't know if that *did* work in BeOS
/external/chromium_org/android_webview/renderer/
H A Dprint_web_view_helper.cc1272 int cookie = print_pages_params_->params.document_cookie; local
1273 Send(new PrintHostMsg_PrintingFailed(routing_id(), cookie));
1279 int cookie = print_pages_params_.get() ? local
1283 Send(new PrintHostMsg_PrintPreviewFailed(routing_id(), cookie));
1285 Send(new PrintHostMsg_PrintPreviewCancelled(routing_id(), cookie));
1477 // Send the cookie so that UpdatePrintSettings can reuse PrinterQuery when
1479 int cookie = print_pages_params_.get() ? local
1482 Send(new PrintHostMsg_UpdatePrintSettings(routing_id(), cookie, *job_settings,
1560 params.cookie = print_pages_params_->params.document_cookie;
/external/chromium_org/chrome/browser/
H A Dprocess_singleton_posix_unittest.cc154 std::string cookie(buf, len);
160 EXPECT_EQ(cookie, std::string(buf, len));
389 // notify it over the socket before of a bad cookie.
392 // Change the cookie.
/external/chromium_org/chrome/browser/ui/views/
H A Dcollected_cookies_views.cc513 cookie_info_view_->SetCookie(detailed_info.cookie->Domain(),
514 *detailed_info.cookie);
/external/chromium_org/chrome/renderer/printing/
H A Dprint_web_view_helper.cc1295 int cookie = print_pages_params_->params.document_cookie; local
1296 Send(new PrintHostMsg_PrintingFailed(routing_id(), cookie));
1301 int cookie = print_pages_params_ ? local
1305 Send(new PrintHostMsg_PrintPreviewFailed(routing_id(), cookie));
1307 Send(new PrintHostMsg_PrintPreviewCancelled(routing_id(), cookie));
1490 // Send the cookie so that UpdatePrintSettings can reuse PrinterQuery when
1492 int cookie = print_pages_params_ ? local
1497 routing_id(), cookie, *job_settings, &settings, &canceled));
1546 params.cookie = print_pages_params_->params.document_cookie;
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host.cc504 uint32 cookie = base::NetToHost32(*reinterpret_cast<const uint32*>(data + 4)); local
505 if (cookie != kStunMagicCookie) {

Completed in 1687 milliseconds

<<11121314151617