/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
gmon_out.h | 33 #define GMON_MAGIC "gmon" /* magic cookie */ 48 char cookie[4]; member in struct:gmon_hdr
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
browser.h | 76 const uint32_t *cookie; /* Server cookie; optional */ member in struct:pa_browse_info
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
gmon_out.h | 33 #define GMON_MAGIC "gmon" /* magic cookie */ 48 char cookie[4]; member in struct:gmon_hdr
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/ |
browser.h | 76 const uint32_t *cookie; /* Server cookie; optional */ member in struct:pa_browse_info
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
gmon_out.h | 33 #define GMON_MAGIC "gmon" /* magic cookie */ 48 char cookie[4]; member in struct:gmon_hdr
|
/bionic/libc/kernel/common/linux/ |
inotify.h | 26 __u32 cookie; member in struct:inotify_event
|
/bionic/libc/kernel/common/linux/lockd/ |
xdr.h | 51 struct nlm_cookie cookie; member in struct:nlm_args 65 struct nlm_cookie cookie; member in struct:nlm_res
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
CookieTest.java | 55 String cookie = mCookieManager.getCookie(url); local 56 assertTrue(cookie.equals("a=b")); 58 // no cross domain cookie 59 cookie = mCookieManager.getCookie("http://bar.com"); 60 assertTrue(cookie == null); 62 // more than one cookie 64 cookie = mCookieManager.getCookie(url); 65 assertTrue(cookie.contains("a=b;")); 66 assertTrue(cookie.contains("c=d")); 68 // host cookie should not be accessible from a sub-domain 99 String cookie = mCookieManager.getCookie(url_abcd); local 133 String cookie = mCookieManager.getCookie(url); local 169 String cookie = mCookieManager.getCookie(url + "\/wee"); local 198 String cookie = mCookieManager.getCookie(url); local [all...] |
/development/ndk/platforms/android-3/include/linux/ |
inotify.h | 20 __u32 cookie; member in struct:inotify_event
|
/development/ndk/platforms/android-3/include/linux/lockd/ |
xdr.h | 44 struct nlm_cookie cookie; member in struct:nlm_args 57 struct nlm_cookie cookie; member in struct:nlm_res
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
DateUtils.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/DateUtils.java $ 32 package org.apache.http.impl.cookie;
|
/external/chromium/chrome/browser/automation/ |
automation_util.cc | 64 const net::CookieMonster::CanonicalCookie& cookie, 73 url, cookie.Name(), cookie.Value(), original_domain, 74 cookie.Path(), cookie.ExpiryDate(), cookie.IsSecure(), 75 cookie.IsHttpOnly()); 213 const net::CookieMonster::CanonicalCookie& cookie = cookie_list[i]; local 215 cookie_dict->SetString("name", cookie.Name()); 216 cookie_dict->SetString("value", cookie.Value()) [all...] |
/external/chromium/chrome/browser/printing/ |
print_job.cc | 57 new PrintedDocument(settings_, source_, job->cookie()); 99 int PrintJob::cookie() const { function in class:printing::PrintJob 101 // Always use an invalid cookie in this case. 103 return document_->cookie();
|
/external/chromium/chrome/browser/ui/webui/ |
cookies_tree_model_util.cc | 80 dict->SetString(kKeyType, "cookie"); 83 const net::CookieMonster::CanonicalCookie& cookie = local 84 *node.GetDetailedInfo().cookie; 86 dict->SetString(kKeyName, cookie.Name()); 87 dict->SetString(kKeyContent, cookie.Value()); 88 dict->SetString(kKeyDomain, cookie.Domain()); 89 dict->SetString(kKeyPath, cookie.Path()); 90 dict->SetString(kKeySendFor, cookie.IsSecure() ? 93 std::string accessible = cookie.IsHttpOnly() ? 98 base::TimeFormatFriendlyDateAndTime(cookie.CreationDate()))) [all...] |
/external/chromium_org/chrome/browser/net/ |
evicted_domain_cookie_counter_unittest.cc | 57 // Wrapper to allocate new cookie and store it in |cookies_|. 58 // If |max_age| == 0, then the cookie does not expire. 71 // Simulates cookie addition or update. 72 void Add(net::CanonicalCookie* cookie); 74 // Simulates cookie removal. 75 void Remove(net::CanonicalCookie* cookie); 77 // Simulates cookie eviction. 78 void Evict(net::CanonicalCookie* cookie); 90 // eviction and reinstatement for each cookie, in the order of eviction. 141 net::CanonicalCookie* cookie = net::CanonicalCookie::Create local [all...] |
/external/chromium_org/chrome/browser/printing/ |
print_job.cc | 75 new PrintedDocument(settings_, source_, job->cookie()); 117 int PrintJob::cookie() const { function in class:printing::PrintJob 119 // Always use an invalid cookie in this case. 121 return document_->cookie();
|
/external/chromium_org/net/cookies/ |
cookie_monster_perftest.cc | 45 // 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 on a bunch of hos 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...] |
cookie_monster_store_test.h | 59 CookieStoreCommand(Type type, const CanonicalCookie& cookie) 61 cookie(cookie) {} 64 CanonicalCookie cookie; member in struct:net::CookieStoreCommand 90 virtual void AddCookie(const CanonicalCookie& cookie) OVERRIDE; 93 const CanonicalCookie& cookie) OVERRIDE; 96 const CanonicalCookie& cookie) OVERRIDE; 131 const CanonicalCookie& cookie, 155 // Just act like a backing database. Keep cookie information from 167 virtual void AddCookie(const CanonicalCookie& cookie) OVERRIDE [all...] |
/external/chromium_org/sandbox/win/src/ |
target_services.cc | 117 uint32 cookie = 717115; local 118 ResultCode code = CrossCall(ipc, IPC_PING1_TAG, cookie, &answer); 124 // tick count on the broker and the other is the cookie times two. 138 if (answer.extended[1].unsigned_int != cookie * 2) { 142 uint32 cookie = 717111; local 143 InOutCountedBuffer counted_buffer(&cookie, sizeof(cookie)); 149 if (cookie != 717111 * 3) {
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
PageScriptDebugServer.cpp | 165 InspectorInstrumentationCookie cookie; local 167 cookie = InspectorInstrumentation::willEvaluateScript(frame, sourceURL, TextPosition::minimumPosition().m_line.oneBasedInt()); 173 InspectorInstrumentation::didEvaluateScript(cookie);
|
/external/kernel-headers/original/linux/lockd/ |
xdr.h | 51 struct nlm_cookie cookie; member in struct:nlm_args 67 struct nlm_cookie cookie; member in struct:nlm_res
|
/external/openssh/ |
roaming_client.c | 59 static u_int64_t cookie; variable 72 cookie = packet_get_int64(); 108 buffer_put_int64(&b, cookie); 122 calculate_new_key(&key1, cookie, chall); 123 calculate_new_key(&key2, cookie, chall);
|
sshconnect1.c | 488 u_char cookie[8]; local 498 /* Get cookie from the packet. */ 500 cookie[i] = packet_get_char(); 543 derive_ssh1_session_id(host_key->rsa->n, server_key->rsa->n, cookie, session_id); 636 /* Send the cookie back to the server. */ 638 packet_put_char(cookie[i]);
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowRemoteCallbackList.java | 22 final Object cookie; field in class:ShadowRemoteCallbackList.Callback 24 Callback(E callback, Object cookie) { 26 this.cookie = cookie; 33 onCallbackDied(callback, cookie); 43 public boolean register(E callback, Object cookie) { 50 Callback cb = new Callback(callback, cookie); 87 public void onCallbackDied(E callback, Object cookie) { 120 return ((Callback) activeBroadcast[index]).cookie;
|
/frameworks/native/cmds/servicemanager/ |
binder.h | 17 void *cookie; member in struct:binder_object 23 void *cookie; member in struct:binder_txn
|