HomeSort by relevance Sort by last modified time
    Searched defs:cookie (Results 226 - 250 of 750) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/uapi/linux/android/
binder.h 55 binder_uintptr_t cookie; member in struct:flat_binder_object
64 binder_uintptr_t cookie; member in struct:binder_fd_object
102 binder_uintptr_t cookie; member in struct:binder_node_debug_info
125 binder_uintptr_t cookie; member in struct:binder_transaction_data
146 binder_uintptr_t cookie; member in struct:binder_ptr_cookie
150 binder_uintptr_t cookie; member in struct:binder_handle_cookie
159 binder_uintptr_t cookie; member in struct:binder_pri_ptr_cookie
  /bionic/libc/kernel/uapi/linux/
rds.h 154 rds_rdma_cookie_t cookie; member in struct:rds_free_mr_args
158 rds_rdma_cookie_t cookie; member in struct:rds_rdma_args
166 rds_rdma_cookie_t cookie; member in struct:rds_atomic_args
  /bootable/recovery/applypatch/
imgdiff.cpp 677 void* cookie; local
678 int ret = StartIteration(handle, &cookie, nullptr, nullptr);
688 while ((ret = Next(cookie, &entry, &name)) == 0) {
702 EndIteration(cookie);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
StreamingMediaPlayer2Test.java 237 HttpCookie cookie = new HttpCookie(cookieName, cookieValue); local
238 cookie.setHttpOnly(true);
239 cookie.setDomain("www.youtube.com");
240 cookie.setPath("/"); // all paths
241 cookie.setSecure(false);
242 cookie.setDiscard(false);
243 cookie.setMaxAge(24 * 3600); // 24hrs
246 cookies.add(cookie);
StreamingMediaPlayerTest.java 207 HttpCookie cookie = new HttpCookie(cookieName, cookieValue); local
208 cookie.setHttpOnly(true);
209 cookie.setDomain("www.youtube.com");
210 cookie.setPath("/"); // all paths
211 cookie.setSecure(false);
212 cookie.setDiscard(false);
213 cookie.setMaxAge(24 * 3600); // 24hrs
216 cookies.add(cookie);
  /device/google/contexthub/firmware/os/core/
nanohub_chre.c 116 static inline uint32_t osChreTimerSet(uint64_t duration, const void* cookie, bool oneShot)
118 uint32_t timId = timTimerSetNew(duration, cookie, oneShot);
127 void *cookie = va_arg(args, void *); local
131 *retValP = osChreTimerSet(length, cookie, oneshot);
562 // const void *cookie = va_args(args, void *);
568 // const void *cookie = va_args(args, void *);
575 // const void *cookie = va_args(args, void *);
581 // const void *cookie = va_args(args, void *);
599 // const void *cookie = va_args(args, void *);
606 // const void *cookie = va_args(args, void *)
    [all...]
osApi.c 113 void *cookie = va_arg(args, void *); local
116 *retValP = (uintptr_t)sensorRegisterAsApp(si, 0, cookie, initComplete);
215 void *cookie = va_arg(args, void *); local
219 *retValP = timTimerSetAsApp(length, jitterPpm, driftPpm, 0, cookie, oneshot);
286 static union OsApiSlabItem* osExpApiI2cCbkInfoAlloc(void *cookie)
292 thing->i2cAppCbkInfo.cookie = cookie;
303 static void osExpApiI2cInternalCbk(void *cookie, size_t tx, size_t rx, int err)
305 union OsApiSlabItem *thing = (union OsApiSlabItem*)cookie;
309 cookie = thing->i2cAppCbkInfo.cookie
408 void *cookie = va_arg(args, void *); local
441 void *cookie = va_arg(args, void *); local
458 void *cookie = va_arg(args, void *); local
476 void *cookie = va_arg(args, void *); local
    [all...]
  /external/boringssl/src/ssl/
handshake_client.cc 313 !CBB_add_bytes(&child, ssl->d1->cookie, ssl->d1->cookie_len)) {
534 CBS hello_verify_request = msg.body, cookie; local
537 !CBS_get_u8_length_prefixed(&hello_verify_request, &cookie) ||
538 CBS_len(&cookie) > sizeof(ssl->d1->cookie) ||
545 OPENSSL_memcpy(ssl->d1->cookie, CBS_data(&cookie), CBS_len(&cookie));
546 ssl->d1->cookie_len = CBS_len(&cookie);
    [all...]
  /external/kernel-headers/original/uapi/linux/android/
binder.h 80 binder_uintptr_t cookie; member in struct:flat_binder_object
89 * @cookie: opaque data, used by user-space
99 binder_uintptr_t cookie; member in struct:binder_fd_object
198 binder_uintptr_t cookie; member in struct:binder_node_debug_info
244 binder_uintptr_t cookie; /* target object cookie */ member in struct:binder_transaction_data
276 binder_uintptr_t cookie; member in struct:binder_ptr_cookie
281 binder_uintptr_t cookie; member in struct:binder_handle_cookie
292 binder_uintptr_t cookie; member in struct:binder_pri_ptr_cookie
336 * void *: cookie for binde
    [all...]
  /external/kernel-headers/original/uapi/linux/
rds.h 268 rds_rdma_cookie_t cookie; member in struct:rds_free_mr_args
273 rds_rdma_cookie_t cookie; member in struct:rds_rdma_args
282 rds_rdma_cookie_t cookie; member in struct:rds_atomic_args
  /external/libchrome/base/message_loop/
message_loop_unittest.cc 232 cookie(c),
237 int cookie; member in struct:base::__anon24224::TaskItem
241 return type == other.type && cookie == other.cookie && start == other.start;
265 return os << item.type << " " << item.cookie << " starts";
267 return os << item.type << " " << item.cookie << " ends";
272 void RecordStart(TaskType type, int cookie) {
273 TaskItem item(type, cookie, true);
278 void RecordEnd(TaskType type, int cookie) {
279 TaskItem item(type, cookie, false)
    [all...]
  /external/libcups/cups/
http-private.h 310 char *cookie; /* Cookie value(s) */ member in struct:_http_s
  /external/libdrm/intel/
intel_bufmgr_fake.c 107 /** Fence cookie for the block. */
150 * Driver callback to emit a fence, returning the cookie.
159 /** Driver callback to wait for a fence cookie to have passed. */
731 unsigned int cookie; local
733 cookie = _fence_emit_internal(bufmgr_fake);
734 _fence_wait_internal(bufmgr_fake, cookie);
1235 unsigned int cookie; local
1237 cookie = _fence_emit_internal(bufmgr_fake);
1238 fence_blocks(bufmgr_fake, cookie);
1240 DBG("drm_fence_validated: 0x%08x cookie\n", cookie)
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
platform_x11.c 109 xcb_get_geometry_cookie_t cookie; local
114 cookie = xcb_get_geometry (dri2_dpy->conn, dri2_surf->drawable);
115 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
163 xcb_get_image_cookie_t cookie; local
167 cookie = xcb_get_image (dri2_dpy->conn, XCB_IMAGE_FORMAT_Z_PIXMAP,
169 reply = xcb_get_image_reply (dri2_dpy->conn, cookie, &error);
207 xcb_get_geometry_cookie_t cookie; local
264 cookie = xcb_get_geometry (dri2_dpy->conn, dri2_surf->drawable);
265 reply = xcb_get_geometry_reply (dri2_dpy->conn, cookie, &error);
287 xcb_void_cookie_t cookie; local
489 xcb_dri2_get_buffers_cookie_t cookie; local
524 xcb_dri2_get_buffers_with_format_cookie_t cookie; local
813 xcb_dri2_copy_region_cookie_t cookie; local
849 xcb_dri2_swap_buffers_cookie_t cookie; local
1118 xcb_dri2_get_msc_cookie_t cookie; local
    [all...]
  /external/mesa3d/src/vulkan/wsi/
wsi_common_x11.c 739 xcb_void_cookie_t cookie = local
755 xcb_discard_reply(chain->conn, cookie.sequence);
845 xcb_void_cookie_t cookie; local
867 cookie =
876 xcb_discard_reply(chain->conn, cookie.sequence);
902 cookie = xcb_free_pixmap(chain->conn, image->pixmap);
903 xcb_discard_reply(chain->conn, cookie.sequence);
916 xcb_void_cookie_t cookie; local
918 cookie = xcb_sync_destroy_fence(chain->conn, image->sync_fence);
919 xcb_discard_reply(chain->conn, cookie.sequence)
934 xcb_void_cookie_t cookie; local
969 xcb_void_cookie_t cookie; local
    [all...]
  /external/protobuf/src/google/protobuf/
arena_unittest.cc 1288 int* cookie = new int(kCookieValue); local
    [all...]
  /external/v8/src/inspector/
v8-debugger-agent-impl.cc 1055 auto cookie = breakpointsCookie->at(i); local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_nl80211_event.c 660 struct nlattr *cookie, const u8 *frame,
671 if (!cookie)
674 cookie_val = nla_get_u64(cookie);
676 " cookie=0%llx%s (ack=%d)",
865 struct nlattr *cookie, struct nlattr *sig,
930 mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
1019 u64 cookie; local
1037 cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
1039 cookie = 0;
1042 "freq=%u channel_type=%u duration=%u cookie=0x%llx (%s))"
1872 u64 cookie = 0; local
1964 u64 cookie = 0; local
    [all...]
  /frameworks/av/services/audioflinger/
AudioFlinger.h 300 wp<RefBase> cookie)
302 mCallback(callBack), mCookie(cookie)
313 wp<RefBase> cookie() const { return mCookie; } function in class:android::AudioFlinger::SyncEvent
328 const wp<RefBase>& cookie);
    [all...]
  /frameworks/base/core/jni/
android_media_AudioRecord.cpp 714 audiorecord_callback_cookie *cookie = local
717 if (cookie == NULL) {
721 cb = new JNIDeviceCallback(env, thiz, cookie->audioRecord_ref,
    [all...]
  /frameworks/base/libs/androidfw/
AssetManager2.cpp 167 const ResStringPool* AssetManager2::GetStringPoolForCookie(ApkAssetsCookie cookie) const {
168 if (cookie < 0 || static_cast<size_t>(cookie) >= apk_assets_.size()) {
171 return apk_assets_[cookie]->GetLoadedArsc()->GetStringPool();
186 const DynamicRefTable* AssetManager2::GetDynamicRefTableForCookie(ApkAssetsCookie cookie) const {
189 if (package_cookie == cookie) {
243 std::unique_ptr<Asset> AssetManager2::Open(const std::string& filename, ApkAssetsCookie cookie,
246 return OpenNonAsset(new_path, cookie, mode);
301 ApkAssetsCookie cookie,
303 if (cookie < 0 || static_cast<size_t>(cookie) >= apk_assets_.size())
356 ApkAssetsCookie cookie = package_group.cookies_[pi]; local
460 ApkAssetsCookie cookie = local
497 ApkAssetsCookie cookie = local
511 ApkAssetsCookie cookie = local
584 ApkAssetsCookie cookie = local
884 ApkAssetsCookie cookie; member in struct:android::__anon45732::ThemeEntry
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
LauncherAppsService.java 672 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
673 if (!isEnabledProfileOf(cookie.user, user, "onPackageAdded")) continue;
694 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
695 if (!isEnabledProfileOf(cookie.user, user, "onPackageRemoved")) continue;
716 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
717 if (!isEnabledProfileOf(cookie.user, user, "onPackageModified")) continue;
738 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
739 if (!isEnabledProfileOf(cookie.user, user, "onPackagesAvailable")) continue;
760 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
782 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
804 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
833 BroadcastCookie cookie = (BroadcastCookie) mListeners.getBroadcastCookie(i); local
    [all...]
  /hardware/qcom/msm8996/kernel-headers/media/
msmb_pproc.h 92 void __user * cookie; member in struct:msm_cpp_frame_info_t
181 void * cookie; member in struct:msm_vpe_frame_info_t
  /hardware/qcom/msm8996/original-kernel-headers/media/
msmb_pproc.h 72 void __user *cookie; member in struct:msm_cpp_frame_info_t
162 void *cookie; member in struct:msm_vpe_frame_info_t
  /hardware/qcom/msm8998/kernel-headers/media/
msmb_pproc.h 94 void * cookie; member in struct:msm_cpp_frame_info_t
182 void * cookie; member in struct:msm_vpe_frame_info_t

Completed in 998 milliseconds

1 2 3 4 5 6 7 8 91011>>