OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cookieURL
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/mac/
CookieJar.mm
83
NSURL *
cookieURL
= url;
87
cookies = wkHTTPCookiesForURL(cookieStorage,
cookieURL
);
90
cookies = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookiesForURL:
cookieURL
];
102
NSURL *
cookieURL
= url;
106
cookies = wkHTTPCookiesForURL(cookieStorage,
cookieURL
);
109
cookies = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookiesForURL:
cookieURL
];
130
NSURL *
cookieURL
= url;
131
RetainPtr<NSArray> filteredCookies = filterCookies([NSHTTPCookie cookiesWithResponseHeaderFields:[NSDictionary dictionaryWithObject:cookieString forKey:@"Set-Cookie"] forURL:
cookieURL
]);
135
wkSetHTTPCookiesForURL(cookieStorage, filteredCookies.get(),
cookieURL
, document->firstPartyForCookies());
138
[[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookies:filteredCookies.get() forURL:
cookieURL
mainDocumentURL:document->firstPartyForCookies()]
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp
202
String
cookieURL
;
215
cookieURL
= urlBuilder.toString();
217
cookieURL
= movieURL;
219
InternetSetCookieExW(
cookieURL
.charactersWithNullTermination(), 0, cookieBuilder.toString().charactersWithNullTermination(), 0, 0);
MediaPlayerPrivateQuickTimeVisualContext.cpp
289
String
cookieURL
;
302
cookieURL
= urlBuilder.toString();
304
cookieURL
= movieURL;
306
InternetSetCookieExW(
cookieURL
.charactersWithNullTermination(), 0, cookieBuilder.toString().charactersWithNullTermination(), 0, 0);
[
all
...]
/external/webkit/Source/WebCore/dom/
Document.cpp
[
all
...]
Document.h
823
// The
cookieURL
is used to query the cookie database for this document's
828
// Q: How is the
cookieURL
different from the document's URL?
831
// inherits its
cookieURL
but not its URL.
833
const KURL&
cookieURL
() const { return m_cookieURL; }
838
//
cookieURL
and the firstPartyForCookies are from different hosts.
841
// document in a third-party context if the
cookieURL
and the
[
all
...]
/external/webkit/Source/WebKit/chromium/src/
PlatformBridge.cpp
321
result = cookieJar->cookiesEnabled(document->
cookieURL
(), document->firstPartyForCookies());
[
all
...]
Completed in 1688 milliseconds