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

1 2 34 5 6 7 8 91011>>

  /device/google/contexthub/firmware/lib/libc/
aeabi.cpp 70 // cookie_of() takes a pointer to the user array and returns a reference to the cookie.
77 // element_size field of the cookie.
84 // element_count field of the cookie.
90 // user_array_of() takes a pointer to the cookie and returns a pointer to the user array.
99 extern "C" void* __aeabi_vec_ctor_cookie_nodtor(array_cookie* cookie,
139 // cookie fields and returns user_array. The parameters are arranged to make STRD
140 // usable. Does nothing and returns NULL if cookie is NULL.
141 extern "C" void* __aeabi_vec_ctor_cookie_nodtor(array_cookie* cookie,
145 if (cookie == nullptr) {
148 cookie->element_size = element_size
172 array_cookie* cookie = reinterpret_cast<array_cookie*>( local
191 array_cookie* cookie = reinterpret_cast<array_cookie*>( local
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BestMatchSpec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BestMatchSpec.java $
32 package org.apache.http.impl.cookie;
38 import org.apache.http.cookie.Cookie;
39 import org.apache.http.cookie.CookieOrigin;
40 import org.apache.http.cookie.CookieSpec;
41 import org.apache.http.cookie.MalformedCookieException;
44 * 'Meta' cookie specification that selects a cookie policy depending
45 * on the format of the cookie(s
    [all...]
  /frameworks/base/libs/androidfw/
ApkAssets.cpp 212 void* cookie; local
213 if (::StartIteration(zip_handle_.get(), &cookie, &prefix, nullptr) != 0) {
225 while ((result = ::Next(cookie, &entry, &name)) == 0) {
240 ::EndIteration(cookie);
  /frameworks/base/libs/androidfw/tests/
AttributeResolution_bench.cpp 114 ApkAssetsCookie cookie = local
117 if (cookie == kInvalidCookie) {
124 assetmanager.GetStringPoolForCookie(cookie)->string8At(value.data, &len);
131 StringPiece(layout_path, len).to_string(), cookie, Asset::ACCESS_BUFFER);
  /frameworks/layoutlib/bridge/src/android/preference/
Preference_Delegate.java 46 Object cookie = bc.getCookie(pref); local
47 if (cookie != null) {
48 bc.addViewKey(convertView, cookie);
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
RecurrentTimer.h 53 * cookies thus calling this method multiple times with the same cookie will override the
56 void registerRecurrentEvent(std::chrono::nanoseconds interval, int32_t cookie) {
64 mCookieToEventsMap[cookie] = { interval, cookie, absoluteTime };
69 void unregisterRecurrentEvent(int32_t cookie) {
72 mCookieToEventsMap.erase(cookie);
82 int32_t cookie; member in struct:RecurrentTimer::RecurrentEvent
111 cookies.push_back(event.cookie);
SubscriptionManager.h 136 void onCallbackDead(uint64_t cookie);
150 void serviceDied(uint64_t cookie,
152 mOnClientDead(cookie); variable
  /hardware/interfaces/usb/1.1/vts/functional/
VtsHalUsbV1_1TargetTest.cpp 69 // Stores the cookie of the last invoked usb callback object.
77 int cookie; member in class:UsbCallback
80 UsbCallback(int cookie) : cookie(cookie){};
102 arg.last_usb_cookie = cookie;
  /hardware/libhardware/modules/radio/
radio_hal_tool.c 67 void callback(radio_hal_event_t *event, void *cookie) {
95 int cookie = 0; local
98 callback, &cookie, &hal_tuner);
  /hardware/qcom/msm8960/kernel-headers/media/
msm_gestures.h 54 uint32_t cookie; member in struct:msm_ges_ctrl_cmd
  /hardware/qcom/msm8960/original-kernel-headers/media/
msm_gestures.h 58 uint32_t cookie; member in struct:msm_ges_ctrl_cmd
  /hardware/qcom/msm8996/kernel-headers/media/
msm_gestures.h 54 uint32_t cookie; member in struct:msm_ges_ctrl_cmd
  /hardware/qcom/msm8996/original-kernel-headers/media/
msm_gestures.h 46 uint32_t cookie; member in struct:msm_ges_ctrl_cmd
  /hardware/qcom/msm8998/kernel-headers/media/
msm_gestures.h 54 uint32_t cookie; member in struct:msm_ges_ctrl_cmd
  /hardware/qcom/msm8998/original-kernel-headers/media/
msm_gestures.h 46 uint32_t cookie; member in struct:msm_ges_ctrl_cmd
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
gmon_out.h 33 #define GMON_MAGIC "gmon" /* magic cookie */
48 char cookie[4]; member in struct:gmon_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
gmon_out.h 33 #define GMON_MAGIC "gmon" /* magic cookie */
48 char cookie[4]; member in struct:gmon_hdr
  /prebuilts/go/darwin-x86/src/net/internal/socktest/
switch.go 32 // Stats returns a list of per-cookie socket statistics.
55 // A Cookie represents a 3-tuple of a socket; address family, socket
57 type Cookie uint64
60 func (c Cookie) Family() int { return int(c >> 48) }
63 func (c Cookie) Type() int { return int(c << 16 >> 32) }
66 func (c Cookie) Protocol() int { return int(c & 0xff) }
68 func cookie(family, sotype, proto int) Cookie { func
69 return Cookie(family)<<48 | Cookie(sotype)&0xffffffff<<16 | Cookie(proto)&0xf
    [all...]
  /prebuilts/go/linux-x86/src/net/internal/socktest/
switch.go 32 // Stats returns a list of per-cookie socket statistics.
55 // A Cookie represents a 3-tuple of a socket; address family, socket
57 type Cookie uint64
60 func (c Cookie) Family() int { return int(c >> 48) }
63 func (c Cookie) Type() int { return int(c << 16 >> 32) }
66 func (c Cookie) Protocol() int { return int(c & 0xff) }
68 func cookie(family, sotype, proto int) Cookie { func
69 return Cookie(family)<<48 | Cookie(sotype)&0xffffffff<<16 | Cookie(proto)&0xf
    [all...]
  /system/chre/chre_api/include/chre_api/chre/
common.h 127 * specific API. Typically, a "cookie" parameter is supplied to allow the client
163 //! Set to the cookie parameter given to the request function tied to this
165 const void *cookie; member in struct:chreAsyncResult
  /system/chre/chre_api/legacy/v1_1/chre/
common.h 127 * specific API. Typically, a "cookie" parameter is supplied to allow the client
163 //! Set to the cookie parameter given to the request function tied to this
165 const void *cookie; member in struct:chreAsyncResult
  /system/chre/core/include/chre/core/
gnss_manager.h 45 * @param cookie A cookie that is round-tripped to provide context to the
51 Milliseconds minTimeToNext, const void *cookie);
58 * @param cookie A cookie that is round-tripped to provide context to the
63 bool removeRequest(Nanoapp *nanoapp, const void *cookie);
114 //! The cookie provided to the CHRE API when the nanoapp requested a
116 const void *cookie; member in struct:chre::GnssSession::StateTransition
171 * @param cookie The cookie provided by the nanoapp to round-trip for context
    [all...]
wifi_request_manager.h 64 * @param cookie A cookie that is round-tripped back to the nanoapp to
70 bool configureScanMonitor(Nanoapp *nanoapp, bool enable, const void *cookie);
78 * @param cookie Opaque pointer supplied by the nanoapp and passed back in the
85 const void *cookie);
97 * @param cookie A cookie that is round-tripped back to the nanoapp to provide
104 const void *cookie);
165 const void *cookie; //!< User data supplied by the nanoapp member in struct:chre::WifiRequestManager::PendingRequestBase
204 //! The cookie passed in by a nanoapp making an active request for wifi scans
    [all...]
  /system/core/libcutils/
properties.cpp 128 void (*callback)(const char* name, const char* value, void* cookie);
129 void* cookie; member in struct:callback_data
134 data->callback(name, value, data->cookie);
141 int property_list(void (*fn)(const char* name, const char* value, void* cookie), void* cookie) {
142 callback_data data = { fn, cookie };
  /system/libhwbinder/include/hwbinder/
BpHwBinder.h 42 void* cookie = NULL,
45 void* cookie = NULL,
101 void* cookie; member in struct:android::hardware::BpHwBinder::Obituary

Completed in 773 milliseconds

1 2 34 5 6 7 8 91011>>