HomeSort by relevance Sort by last modified time
    Searched full:cookie (Results 626 - 650 of 1072) sorted by null

<<21222324252627282930>>

  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 233 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
255 if (cookie != null && cookie instanceof Uri) {
256 mPhotoView.assignContactUri((Uri) cookie);
287 String phoneNumber = (String) cookie;
303 String emailAddress = (String) cookie;
  /system/core/adb/
file_sync_client.c 75 typedef void (*sync_ls_cb)(unsigned mode, unsigned size, unsigned time, const char *name, void *cookie);
77 int sync_ls(int fd, const char *path, sync_ls_cb func, void *cookie)
108 buf, cookie); local
536 const char *name, void *cookie)
811 const char *name, void *cookie)
813 sync_ls_build_list_cb_args *args = (sync_ls_build_list_cb_args *)cookie;
  /frameworks/base/core/jni/
android_util_AssetManager.cpp 209 jint cookie,
231 Asset* a = cookie
232 ? am->openNonAsset((void*)cookie, fileName8.c_str(), (Asset::AccessMode)mode)
246 jint cookie,
262 Asset* a = cookie
263 ? am->openNonAsset((void*)cookie, fileName8.c_str(), Asset::ACCESS_RANDOM)
445 void* cookie; local
446 bool res = am->addAssetPath(String8(path8.c_str()), &cookie);
448 return (res) ? (jint)cookie : 0;
784 jint cookie)
    [all...]
  /frameworks/base/libs/utils/
AssetManager.cpp 137 bool AssetManager::addAssetPath(const String8& path, void** cookie)
163 if (cookie) {
164 *cookie = (void*)(i+1);
176 if (cookie) {
177 *cookie = (void*)mAssetPaths.size();
366 void* AssetManager::nextAssetPath(void* cookie) const
369 size_t next = ((size_t)cookie)+1;
373 String8 AssetManager::getAssetPath(void* cookie) const
376 const size_t which = ((size_t)cookie)-1;
546 Asset* AssetManager::openNonAsset(void* cookie, const char* fileName, AccessMode mode
    [all...]
  /packages/apps/Phone/src/com/android/phone/
NotificationMgr.java 314 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
355 if ((cursor != null) && (cookie != null)){
356 NotificationInfo n = (NotificationInfo) cookie;
    [all...]
  /external/chromium/chrome/browser/
cookies_tree_model.cc 49 net::CookieMonster::CanonicalCookie* cookie)
50 : CookieTreeNode(UTF8ToUTF16(cookie->Name())),
51 cookie_(cookie) {
57 // notify CookieMonster that we should delete this cookie
579 return COOKIE;
  /external/webkit/Source/WebCore/bindings/v8/
V8Proxy.cpp 360 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willEvaluateScript(m_frame, source.url().isNull() ? String() : source.url().string(), source.startLine()); local
395 InspectorInstrumentation::didEvaluateScript(cookie);
499 InspectorInstrumentationCookie cookie; local
508 cookie = InspectorInstrumentation::willCallFunction(m_frame, resourceName, lineNumber);
515 InspectorInstrumentation::didCallFunction(cookie);
  /packages/apps/Browser/res/values-be/
strings.xml 191 <string name="pref_privacy_cookies_title" msgid="6763274282214830526">"????? cookie"</string>
192 <string name="pref_privacy_clear_cookies" msgid="3095583579133780331">"???????? ??? ???????? ?????? cookie"</string>
193 <string name="pref_privacy_clear_cookies_summary" msgid="6962742063990677520">"?????i?? ??? ????? cookie ????????"</string>
194 <string name="pref_privacy_clear_cookies_dlg" msgid="1493252163164621278">"???????? ????? ????? cookie?"</string>
219 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"????????? ?????? ????????? ? ?????? ???????? ?????? cookie"</string>
    [all...]
  /packages/apps/Browser/res/values-uk/
strings.xml 192 <string name="pref_privacy_clear_cookies" msgid="3095583579133780331">"?????. ??? ???? ?????? cookie"</string>
193 <string name="pref_privacy_clear_cookies_summary" msgid="6962742063990677520">"?????. ??? ????? cookie ??????-??"</string>
194 <string name="pref_privacy_clear_cookies_dlg" msgid="1493252163164621278">"???????? ??? ????? cookie?"</string>
218 <string name="pref_security_accept_cookies" msgid="3201367661925047989">"?????. ????? cookie"</string>
219 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"????????? ?????? ????????? ?? ????????? ???? ?????? cookie"</string>
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ViewHierarchy.java 717 Object cookie = info.getCookie(); local
718 if (cookie instanceof UiViewElementNode) {
720 UiViewElementNode node = (UiViewElementNode) cookie;
724 } else if (cookie != null) {
725 sb.append(" " + cookie); //$NON-NLS-1$
  /external/apache-http/src/org/apache/http/impl/client/
AbstractHttpClient.java 63 import org.apache.http.cookie.CookieSpecRegistry;
101 /** The cookie spec registry. */
122 /** The cookie store. */
  /external/chromium/chrome/browser/safe_browsing/
malware_details_unittest.cc 48 "Set-Cookie: tastycookie\n"; // This header is stripped.
532 pb_header->set_name("Set-Cookie");
533 pb_header->set_value(""); // The cookie is dropped.
  /external/llvm/lib/Support/Windows/
Signals.inc 305 /// to the process. The handler can have a cookie passed to it to identify
307 void sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) {
310 CallBacksToRun->push_back(std::make_pair(FnPtr, Cookie));
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps_upnp_event.c 214 static void event_got_response_handler(struct httpread *handle, void *cookie,
217 struct wps_event_ *e = cookie;
338 e /* cookie */,
  /frameworks/base/core/java/android/net/http/
AndroidHttpClient.java 74 * To retain cookies, simply add a cookie store to the HttpContext:</p>
176 // cookie store.
411 header.getName().equals("Cookie"))) {
  /system/core/init/
property_service.c 341 static int property_list(void (*propfn)(const char *key, const char *value, void *cookie),
342 void *cookie)
351 propfn(name, value, cookie);
  /packages/apps/Browser/res/values-cs/
strings.xml 191 <string name="pref_privacy_cookies_title" msgid="6763274282214830526">"Soubory cookie"</string>
192 <string name="pref_privacy_clear_cookies" msgid="3095583579133780331">"Vymazat soubory cookie"</string>
193 <string name="pref_privacy_clear_cookies_summary" msgid="6962742063990677520">"Vymazat v?echny soubory cookie prohlí?e?e"</string>
194 <string name="pref_privacy_clear_cookies_dlg" msgid="1493252163164621278">"Vymazat v?echny soubory cookie?"</string>
218 <string name="pref_security_accept_cookies" msgid="3201367661925047989">"P?ijímat soubory cookie"</string>
219 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"Povolit web?m ukládat a ?íst soubory cookie"</string>
    [all...]
  /packages/apps/Browser/res/values-it/
strings.xml 191 <string name="pref_privacy_cookies_title" msgid="6763274282214830526">"Cookie"</string>
192 <string name="pref_privacy_clear_cookies" msgid="3095583579133780331">"Cancella cookie"</string>
193 <string name="pref_privacy_clear_cookies_summary" msgid="6962742063990677520">"Cancella tutti i cookie del browser"</string>
194 <string name="pref_privacy_clear_cookies_dlg" msgid="1493252163164621278">"Cancellare tutti i cookie?"</string>
218 <string name="pref_security_accept_cookies" msgid="3201367661925047989">"Accetta cookie"</string>
219 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"Consenti ai siti di salvare e leggere i dati dei cookie"</string>
    [all...]
  /packages/apps/Browser/res/values-pl/
strings.xml 191 <string name="pref_privacy_cookies_title" msgid="6763274282214830526">"Pliki cookie"</string>
192 <string name="pref_privacy_clear_cookies" msgid="3095583579133780331">"Wyczy?? pliki cookie"</string>
193 <string name="pref_privacy_clear_cookies_summary" msgid="6962742063990677520">"Wyczy?? wszystkie pliki cookie przegl?darki"</string>
194 <string name="pref_privacy_clear_cookies_dlg" msgid="1493252163164621278">"Usun?? wszystkie pliki cookie?"</string>
218 <string name="pref_security_accept_cookies" msgid="3201367661925047989">"Akceptuj pliki cookie"</string>
219 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"Zezwalaj witrynom na zapis i odczyt danych w plikach cookie."</string>
    [all...]
  /packages/apps/Browser/res/values-ro/
strings.xml 191 <string name="pref_privacy_cookies_title" msgid="6763274282214830526">"Cookie-uri"</string>
192 <string name="pref_privacy_clear_cookies" msgid="3095583579133780331">"?terge?i toate datele despre cookie-uri"</string>
193 <string name="pref_privacy_clear_cookies_summary" msgid="6962742063990677520">"?terge?i toate cookie-urile din browser"</string>
194 <string name="pref_privacy_clear_cookies_dlg" msgid="1493252163164621278">"?terge?i toate cookie-urile?"</string>
218 <string name="pref_security_accept_cookies" msgid="3201367661925047989">"Accepta?i cookie-uri"</string>
219 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"Permite?i site-urilor salvarea ?i citirea datelor de tip ?cookie?"</string>
    [all...]
  /packages/apps/Browser/res/values-sk/
strings.xml 191 <string name="pref_privacy_cookies_title" msgid="6763274282214830526">"Súbory cookie"</string>
192 <string name="pref_privacy_clear_cookies" msgid="3095583579133780331">"Vymaza? údaje súborov cookie"</string>
193 <string name="pref_privacy_clear_cookies_summary" msgid="6962742063990677520">"Vymaza? v?etky súbory cookie prehliada?a"</string>
194 <string name="pref_privacy_clear_cookies_dlg" msgid="1493252163164621278">"Odstráni? v?etky súbory cookie?"</string>
218 <string name="pref_security_accept_cookies" msgid="3201367661925047989">"Prijíma? súbory cookie"</string>
219 <string name="pref_security_accept_cookies_summary" msgid="1907951236154433751">"Povoli? webovým stránkam uklada? a ?íta? údaje súborov cookie"</string>
    [all...]
  /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/policy/proto/
device_management_backend.proto 227 // Authorization: GoogleLogin auth=<auth cookie for Mobile Sync>
251 // 401 Unauthorized: invalid auth cookie or DM token.
  /external/chromium/chrome/common/
automation_messages.h 153 AttachExternalTabParams(uint64 cookie,
161 uint64 cookie; member in struct:AttachExternalTabParams
automation_messages_internal.h 73 // This message requests the cookie value for given url in the
76 // cookie value string. On failure, this length = -1.
83 // This message notifies the AutomationProvider to set and broadcast a cookie
86 // string, and the second parameter is the cookie name and value to be set.
    [all...]

Completed in 2143 milliseconds

<<21222324252627282930>>