HomeSort by relevance Sort by last modified time
    Searched refs:cookie (Results 376 - 400 of 601) sorted by null

<<11121314151617181920>>

  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 368 protected void onQueryComplete(int queryIndex, Object cookie, Cursor cursor) {
369 if (cursor == null || cookie == null) {
371 Log.d(TAG, "onQueryComplete: cursor=" + cursor + ", cookie=" + cookie);
376 final AttendeeItem item = (AttendeeItem)cookie;
  /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/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,
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/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,
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/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,
  /build/tools/droiddoc/templates-sdk/assets/
android-developer-docs.js 103 function readCookie(cookie) {
104 var myCookie = cookie_namespace+"_"+cookie+"=";
105 if (document.cookie) {
106 var index = document.cookie.indexOf(myCookie);
109 var valEnd = document.cookie.indexOf(";", valStart);
111 valEnd = document.cookie.length;
113 var val = document.cookie.substring(valStart, valEnd);
120 function writeCookie(cookie, val, section, expiration) {
128 document.cookie = cookie_namespace + section + cookie + "=" + val + "; expires=" + expiration+"; path=/"
    [all...]
  /external/doclava/res/assets/templates/assets/
doclava-developer-docs.js 103 function readCookie(cookie) {
104 var myCookie = cookie_namespace+"_"+cookie+"=";
105 if (document.cookie) {
106 var index = document.cookie.indexOf(myCookie);
109 var valEnd = document.cookie.indexOf(";", valStart);
111 valEnd = document.cookie.length;
113 var val = document.cookie.substring(valStart, valEnd);
120 function writeCookie(cookie, val, section, expiration) {
128 document.cookie = cookie_namespace + section + cookie + "=" + val + "; expires=" + expiration+"; path=/"
    [all...]
  /external/antlr/src/org/antlr/runtime/
SerializedGrammar.java 39 public static final String COOKIE = "$ANTLR";
99 String cookie = readString(in); // get $ANTLR local
100 if ( !cookie.equals(COOKIE) ) throw new IOException("not a serialized grammar file");
  /external/dnsmasq/contrib/wrt/
dhcp_release.c 72 u32 cookie; member in struct:dhcp_packet
298 packet.cookie = htonl(DHCP_COOKIE);
  /external/webkit/Source/WebCore/loader/
ResourceLoadNotifier.cpp 128 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_frame, identifier, r); local
130 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, r);
  /external/wpa_supplicant_8/src/wps/
http_server.c 47 static void http_request_cb(struct httpread *handle, void *cookie,
50 struct http_request *req = cookie;
  /hardware/libhardware/include/hardware/
audio_effect.h 660 void *cookie; \/\/ for use by client of buffer provider functions member in struct:buffer_provider_s
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
CameraHal.h 414 virtual void enableMsgType(int32_t msgs, frame_callback frameCb=NULL, event_callback eventCb=NULL, void* cookie=NULL) = 0;
415 virtual void disableMsgType(int32_t msgs, void* cookie) = 0;
452 FrameProvider(FrameNotifier *fn, void* cookie, frame_callback frameCallback)
453 :mFrameNotifier(fn), mCookie(cookie),mFrameCallback(frameCallback) { }
473 EventProvider(MessageNotifier *mn, void* cookie, event_callback eventCallback)
474 :mEventNotifier(mn), mCookie(cookie), mEventCallback(eventCallback) {}
800 void *cookie = NULL) = 0;
801 virtual void disableMsgType(int32_t msgs, void* cookie) = 0;
    [all...]
  /ndk/sources/android/libthread_db/gdb-6.6/
libthread_db.c 298 td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
319 err = func(&handle, cookie);
  /ndk/sources/android/libthread_db/gdb-7.1.x/
libthread_db.c 334 td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
355 if (func(&handle, cookie) != 0) {
  /packages/apps/Calendar/src/com/android/calendar/
CalendarUtils.java 93 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
125 SharedPreferences prefs = getSharedPreferences((Context)cookie, mPrefsName);
  /packages/apps/Contacts/src/com/android/contacts/
SpecialCharSequenceMgr.java 143 // create the cookie object
147 // setup the cookie fields
243 * Cookie object that contains everything we need to communicate to the
283 * the cookie that a cancel request is made.
316 protected void onQueryComplete(int token, Object cookie, Cursor c) {
317 SimContactQueryCookie sc = (SimContactQueryCookie) cookie;
  /packages/apps/Phone/src/com/android/phone/
ManageConferenceUtils.java 324 public void onQueryComplete(int token, Object cookie, CallerInfo ci) {
328 ViewGroup vg = (ViewGroup) 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...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
CookieStoreTest.java 42 HttpCookie cookie = new HttpCookie("name1", "value1"); local
43 cookie.setDiscard(true);
45 cookieStore.add(null, cookie);
65 cookieStore.add(uri, cookie);
68 assertTrue(list.contains(cookie));
97 // expired cookie won't be selected.
171 // expired cookie won't be selected.
226 // duplicated cookie won't be selected.
230 // expired cookie won't be selected.
  /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;
  /frameworks/base/core/java/android/content/res/
TypedArray.java 157 final int cookie = data[index+AssetManager.STYLE_ASSET_COOKIE]; local
158 if (cookie < 0) {
598 + " cookie=" + value.assetCookie);
625 + " cookie=" + value.assetCookie);
717 final int cookie = data[index+AssetManager.STYLE_ASSET_COOKIE]; local
718 if (cookie < 0) {
727 cookie, data[index+AssetManager.STYLE_DATA]);
  /bootable/recovery/updater/
install.c 309 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
327 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
343 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
376 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
408 ZipArchive* za = ((UpdaterInfo*)(state->cookie))->package_zip;
441 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
513 UpdaterInfo* ui = (UpdaterInfo*)(state->cookie);
1018 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe,
1022 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "ui_print\n");
1031 fprintf(((UpdaterInfo*)(state->cookie))->cmd_pipe, "wipe_cache\n")
    [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...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 

Completed in 1529 milliseconds

<<11121314151617181920>>