HomeSort by relevance Sort by last modified time
    Searched refs:cookie (Results 251 - 275 of 413) sorted by null

<<11121314151617

  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 84 function readCookie(cookie) {
85 var myCookie = cookie_namespace+"_"+cookie+"=";
86 if (document.cookie) {
87 var index = document.cookie.indexOf(myCookie);
90 var valEnd = document.cookie.indexOf(";", valStart);
92 valEnd = document.cookie.length;
94 var val = document.cookie.substring(valStart, valEnd);
101 function writeCookie(cookie, val, section, expiration) {
109 document.cookie = cookie_namespace+section+cookie+"="+val+"; expires="+expiration+"; path=/"
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
SelectCalendarsAdapter.java 133 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
138 Cursor currentCursor = mChildrenCursors.get(cookie);
152 mChildrenCursors.put((String)cookie, newCursor);
398 public RefreshCalendars(int token, String cookie, String accountType) {
400 mAccount = cookie;
  /packages/apps/Phone/src/com/android/phone/
NotificationMgr.java 275 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
316 if ((cursor != null) && (cookie != null)){
317 NotificationInfo n = (NotificationInfo) cookie;
704 public void onQueryComplete(int token, Object cookie, CallerInfo ci){
707 if (DBG) log("- cookie: " + cookie);
710 if (cookie == this) {
725 + "cookie = " + cookie);
    [all...]
ManageConferenceUtils.java 324 public void onQueryComplete(int token, Object cookie, CallerInfo ci) {
328 ViewGroup vg = (ViewGroup) cookie;
  /external/webkit/WebCore/inspector/front-end/
DOMAgent.js 475 var cookie = rawCookies[i];
476 var delimIndex = cookie.indexOf("=");
477 var name = cookie.substring(0, delimIndex);
478 var value = cookie.substring(delimIndex + 1);
487 WebInspector.Cookies.cookieMatchesResourceURL = function(cookie, resourceURL)
493 if (!this.cookieDomainMatchesResourceDomain(cookie.domain, match[2]))
497 return (resourcePath.indexOf(cookie.path) === 0
498 && (!cookie.port || resourcePort == cookie.port)
499 && (!cookie.secure || match[1].toLowerCase() === 'https'))
    [all...]
  /frameworks/base/libs/utils/
AssetManager.cpp 93 bool AssetManager::addAssetPath(const String8& path, void** cookie)
119 if (cookie) {
120 *cookie = (void*)(i+1);
132 if (cookie) {
133 *cookie = (void*)mAssetPaths.size();
150 void* AssetManager::nextAssetPath(void* cookie) const
153 size_t next = ((size_t)cookie)+1;
157 String8 AssetManager::getAssetPath(void* cookie) const
160 const size_t which = ((size_t)cookie)-1;
330 Asset* AssetManager::openNonAsset(void* cookie, const char* fileName, AccessMode mode
    [all...]
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp 753 static sp<MediaPlayerBase> createPlayer(player_type playerType, void* cookie,
779 p->setNotifyCallback(cookie, notifyFunc);
    [all...]
  /external/mtpd/
pptp.c 92 uint32_t cookie; member in struct:packet::__anon5411::__anon5412::__anon5413
140 outgoing.header.cookie = MAGIC_COOKIE;
186 /* If incoming.header is valid, check cookie and update incoming.expect. */
188 if (incoming.header.cookie != MAGIC_COOKIE) {
  /bionic/libthread_db/include/
thread_db.h 151 extern td_err_e td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
  /bootable/recovery/edify/
expr.h 31 void* cookie; member in struct:__anon599
  /development/ndk/platforms/android-9/include/
thread_db.h 151 extern td_err_e td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
  /device/samsung/crespo/alsa-lib/include/
aserver.h 158 int cookie; member in struct:__anon1359
  /external/dhcpcd/
dhcp.h 141 uint32_t cookie; member in struct:dhcp_message
142 uint8_t options[DHCP_OPTION_LEN]; /* message options - cookie */
  /external/openssl/apps/
s_cb.c 695 int MS_CALLBACK generate_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int *cookie_len)
712 BIO_printf(bio_err,"error setting random cookie secret\n");
777 memcpy(cookie, result, resultlength);
783 int MS_CALLBACK verify_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int cookie_len)
795 /* If secret isn't initialized yet, the cookie can't be valid */
858 if (cookie_len == resultlength && memcmp(result, cookie, resultlength) == 0)
  /external/qemu/
cpu-common.h 67 void cpu_unregister_map_client(void *cookie);
  /frameworks/base/include/binder/
IPCThreadState.h 106 void* cookie);
  /frameworks/base/include/media/
mediarecorder.h 34 typedef void (*media_completion_f)(status_t status, void *cookie);
EffectApi.h 532 typedef int32_t (* buffer_function_t)(void *cookie, audio_buffer_t *buffer);
537 void *cookie; // for use by client of buffer provider functions member in struct:buffer_provider_s
    [all...]
  /system/core/adb/
framebuffer_service.c 52 void framebuffer_service(int fd, void *cookie)
  /external/dnsmasq/contrib/wrt/
dhcp_release.c 72 u32 cookie; member in struct:dhcp_packet
298 packet.cookie = htonl(DHCP_COOKIE);
  /frameworks/base/core/java/android/util/
CalendarUtils.java 89 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
115 SharedPreferences prefs = getSharedPreferences((Context)cookie, mPrefsName);
  /frameworks/base/media/libstagefright/include/
AwesomePlayer.h 254 static bool ContinuePreparation(void *cookie);
256 static void OnRTSPSeekDoneWrapper(void *cookie);
  /packages/apps/Contacts/src/com/android/contacts/
SpecialCharSequenceMgr.java 139 // create the cookie object
143 // setup the cookie fields
235 * Cookie object that contains everything we need to communicate to the
275 * the cookie that a cancel request is made.
308 protected void onQueryComplete(int token, Object cookie, Cursor c) {
309 SimContactQueryCookie sc = (SimContactQueryCookie) cookie;
  /frameworks/base/core/jni/
android_util_AssetManager.cpp 213 jint cookie,
236 Asset* a = cookie
237 ? am->openNonAsset((void*)cookie, fileName8, (Asset::AccessMode)mode)
253 jint cookie,
270 Asset* a = cookie
271 ? am->openNonAsset((void*)cookie, fileName8, Asset::ACCESS_RANDOM)
461 void* cookie; local
462 bool res = am->addAssetPath(String8(path8), &cookie);
466 return (res) ? (jint)cookie : 0;
803 jint cookie)
    [all...]
  /frameworks/base/cmds/servicemanager/
binder.c 47 fprintf(stderr," target %p cookie %p code %08x flags %08x\n",
48 txn->target, txn->cookie, txn->code, txn->flags);
54 fprintf(stderr," - type %08x flags %08x ptr %p cookie %p\n",
55 obj->type, obj->flags, obj->pointer, obj->cookie);
176 data.txn.cookie = 0;
483 obj->cookie = 0;
501 obj->cookie = 0;

Completed in 568 milliseconds

<<11121314151617