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

<<21222324252627282930>>

  /prebuilt/ndk/android-ndk-r5/platforms/android-8/arch-arm/usr/include/
stdio.h 129 void *_cookie; /* cookie passed to io functions */
366 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
367 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
stdio.h 129 void *_cookie; /* cookie passed to io functions */
366 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
367 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
stdio.h 129 void *_cookie; /* cookie passed to io functions */
366 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
367 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-arm/usr/include/
stdio.h 129 void *_cookie; /* cookie passed to io functions */
366 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
367 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-x86/usr/include/
stdio.h 129 void *_cookie; /* cookie passed to io functions */
366 #define fropen(cookie, fn) funopen(cookie, fn, 0, 0, 0)
367 #define fwopen(cookie, fn) funopen(cookie, 0, fn, 0, 0)
  /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...]
updater.c 114 state.cookie = &updater_info;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libpulse.so 
libpulse.so.0 
libpulse.so.0.4 
libpulse.so.0.4.1 
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 797 // it needs a cookie.
802 // We need an array cookie for pointers with strong or weak lifetime.
819 // needs a cookie.
828 // it needs a cookie
    [all...]
  /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]);
  /external/chromium/chrome/browser/
external_tab_container_win.h 184 // Returns the ExternalTabContainer instance associated with the cookie
186 // Returns NULL if we fail to find the cookie in the map.
187 static scoped_refptr<ExternalTabContainer> RemovePendingTab(uintptr_t cookie);
  /external/llvm/lib/Support/Unix/
Signals.inc 196 /// to the process. The handler can have a cookie passed to it to identify
198 void llvm::sys::AddSignalHandler(void (*FnPtr)(void *), void *Cookie) {
199 CallBacksToRun.push_back(std::make_pair(FnPtr, Cookie));
  /external/qemu/distrib/sdl-1.2.12/src/audio/mint/
SDL_mintaudio_gsxb.c 34 #include <mint/cookie.h>
91 /* Cookie _SND present ? if not, assume ST machine */
102 /* Cookie GSXB present ? */
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 63 public Object cookie; field in class:AsyncQueryServiceHelper.OperationInfo
131 builder.append(",\n\t cookie= ");
132 builder.append(cookie);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
ggc.h 37 /* The first parameter is a pointer to a pointer, the second a cookie. */
42 /* One of these applies its third parameter (with cookie in the fourth
51 can compute the new values of a pointer when given the cookie in
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
ggc.h 37 /* The first parameter is a pointer to a pointer, the second a cookie. */
42 /* One of these applies its third parameter (with cookie in the fourth
51 can compute the new values of a pointer when given the cookie in
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
ggc.h 37 /* The first parameter is a pointer to a pointer, the second a cookie. */
42 /* One of these applies its third parameter (with cookie in the fourth
51 can compute the new values of a pointer when given the cookie in
  /system/core/adb/
adb.h 312 void framebuffer_service(int fd, void *cookie);
313 void log_service(int fd, void *cookie);
314 void remount_service(int fd, void *cookie);
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.cpp 611 static sp<MediaPlayerBase> createPlayer(player_type playerType, void* cookie,
638 p->setNotifyCallback(cookie, notifyFunc);
1071 void* cookie, int msg, int ext1, int ext2, const Parcel *obj)
1073 Client* client = static_cast<Client*>(cookie);
1087 LOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
    [all...]
  /external/apache-http/src/org/apache/http/client/params/
AllClientPNames.java 37 import org.apache.http.cookie.params.CookieSpecPNames;
  /external/apache-http/src/org/apache/http/client/protocol/
ClientContextConfigurer.java 39 import org.apache.http.cookie.CookieSpecRegistry;
  /external/chromium/chrome/browser/automation/
automation_resource_message_filter.cc 36 // automation channel. This cookie store is transient i.e. it maintains cookies
503 // Set the cookie in the cookie store so that the callback can read it.
510 // The cookie for this URL is only valid until it is read by the callback.

Completed in 1012 milliseconds

<<21222324252627282930>>