HomeSort by relevance Sort by last modified time
    Searched refs:cookie (Results 351 - 375 of 709) sorted by null

<<11121314151617181920>>

  /system/core/adb/
file_sync_service.h 79 void file_sync_service(int fd, void *cookie);
remount_service.c 97 void remount_service(int fd, void *cookie)
  /external/wpa_supplicant/
wpa_ctrl.c 56 char *cookie; member in struct:wpa_ctrl
242 ctrl->cookie = strdup(buf);
252 os_free(ctrl->cookie);
272 if (ctrl->cookie) {
274 _cmd_len = strlen(ctrl->cookie) + 1 + cmd_len;
280 strcpy(pos, ctrl->cookie);
281 pos += strlen(ctrl->cookie);
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
wpa_ctrl.c 58 char *cookie; member in struct:wpa_ctrl
270 ctrl->cookie = os_strdup(buf);
280 os_free(ctrl->cookie);
300 if (ctrl->cookie) {
302 _cmd_len = os_strlen(ctrl->cookie) + 1 + cmd_len;
308 os_strlcpy(pos, ctrl->cookie, _cmd_len);
309 pos += os_strlen(ctrl->cookie);
  /external/wpa_supplicant_8/src/common/
wpa_ctrl.c 51 char *cookie; member in struct:wpa_ctrl
224 ctrl->cookie = os_strdup(buf);
234 os_free(ctrl->cookie);
254 if (ctrl->cookie) {
256 _cmd_len = os_strlen(ctrl->cookie) + 1 + cmd_len;
262 os_strlcpy(pos, ctrl->cookie, _cmd_len);
263 pos += os_strlen(ctrl->cookie);
  /frameworks/base/media/libmediaplayerservice/
MediaPlayerService.h 53 static int callbackThread(void* cookie);
87 AudioCallback cb, void *cookie);
143 AudioCallback cb = NULL, void *cookie = NULL);
160 static void notify(void* cookie, int msg,
284 static void notify(void* cookie, int msg,
  /system/extras/sound/
playwav.c 37 int (*fill)(void *buf, unsigned sz, void *cookie),
38 void *cookie)
71 if (fill(buf, sz, cookie))
85 if (fill(buf, sz, cookie))
125 int fill_buffer(void *buf, unsigned sz, void *cookie)
  /external/chromium/base/
message_loop_unittest.cc 617 cookie(c),
622 int cookie; member in struct:TaskItem
626 return type == other.type && cookie == other.cookie && start == other.start;
652 return os << item.type << " " << item.cookie << " starts";
654 return os << item.type << " " << item.cookie << " ends";
660 OrderedTasks(TaskList* order, int cookie)
663 cookie_(cookie) {
665 OrderedTasks(TaskList* order, TaskType type, int cookie)
668 cookie_(cookie) {
692 int cookie() const { function in class:OrderedTasks
    [all...]
  /external/chromium/chrome/browser/
process_singleton_linux.cc 15 // them, we store a unique cookie in the profile directory, which must also be
16 // present in the remote directory to connect. The cookie is checked both before
18 // different cookies. Thus, a matching cookie before and after means the
19 // connection was to a directory with a valid cookie.
394 bool CheckCookie(const FilePath& path, const FilePath& cookie) {
395 return (cookie == ReadLink(path));
403 // It's a symlink. Read the cookie.
404 FilePath cookie = ReadLink(cookie_path); local
405 if (cookie.empty())
409 // Verify the cookie before connecting
    [all...]
  /external/ppp/pppd/plugins/rp-pppoe/
discovery.c 140 printf("Got a cookie:");
141 /* Print first 20 bytes of cookie */
148 conn->cookie.type = htons(type);
149 conn->cookie.length = htons(len);
150 memcpy(conn->cookie.payload, data, len);
458 /* Copy cookie and relay-ID if needed */
459 if (conn->cookie.type) {
461 ntohs(conn->cookie.length) + TAG_HDR_SIZE);
462 memcpy(cursor, &conn->cookie, ntohs(conn->cookie.length) + TAG_HDR_SIZE)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.cpp 33 #include "Cookie.h"
268 Vector<Cookie> documentCookies;
273 const Cookie& cookie = documentCookies[ndx]; local
275 if (cookie.name.isEmpty())
278 // Build up the cookie string with as much information as we can get so WinINet
281 addCookieParam(cookieBuilder, cookie.name, cookie.value);
282 addCookieParam(cookieBuilder, "path", cookie.path);
283 if (cookie.expires)
    [all...]
  /frameworks/base/libs/binder/
Parcel.cpp 78 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie);
79 static_cast<IBinder*>(obj.cookie)->incStrong(who);
115 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie);
116 static_cast<IBinder*>(obj.cookie)->decStrong(who);
137 if (obj.cookie != (void*)0) close(obj.handle);
167 obj.cookie = NULL;
171 obj.cookie = local;
176 obj.cookie = NULL;
200 obj.cookie = NULL;
204 obj.cookie = binder.unsafe_get()
    [all...]
Binder.cpp 119 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
125 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
  /bionic/libthread_db/
libthread_db.c 207 td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
228 if (func(&handle, cookie) != 0) {
  /bootable/recovery/edify/
main.c 44 state.cookie = NULL;
204 state.cookie = NULL;
  /external/bluetooth/glib/gmodule/
gmodule-beos.c 88 int32 cookie = 0; local
92 status = get_next_image_info (0, &cookie, &info);
  /external/chromium/chrome/browser/extensions/
isolated_app_apitest.cc 22 // Returns whether the given tab's current URL has the given cookie.
23 bool WARN_UNUSED_RESULT HasCookie(TabContents* contents, std::string cookie) {
28 return actual_cookie.find(cookie) != std::string::npos;
78 // Check that each tab sees its own cookie.
95 // Check that the non_app iframe cookie is associated with app1 and not the
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppengineimpl.h 160 //! Returns the cookie passed to the result handler.
163 XmppIqCookie* cookie);
165 //! Unregisters an iq callback handler given its cookie.
167 virtual XmppReturnStatus RemoveIqHandler(XmppIqCookie cookie,
  /external/dhcpcd/
dhcp.h 153 uint32_t cookie; member in struct:dhcp_message
154 uint8_t options[DHCP_OPTION_LEN]; /* message options - cookie */
168 uint32_t cookie; member in struct:dhcp_lease
  /external/dnsmasq/contrib/wrt/
dhcp_lease_time.c 67 u32 cookie; member in struct:dhcp_packet
100 /* skip over DHCP cookie; */
164 packet.cookie = htonl(DHCP_COOKIE);
  /external/kernel-headers/original/asm-x86/
signal.h 248 #define ptrace_signal_deliver(regs, cookie) \
260 #define ptrace_signal_deliver(regs, cookie) do { } while (0)
  /hardware/ti/omap4xxx/camera/
SensorListener.cpp 173 void SensorListener::setCallbacks(orientation_callback_t orientation_cb, void *cookie) {
179 mCbCookie = cookie;
  /hardware/ti/omap4xxx/camera/inc/
BaseCameraAdapter.h 40 virtual void enableMsgType(int32_t msgs, frame_callback callback=NULL, event_callback eventCb=NULL, void* cookie=NULL);
41 virtual void disableMsgType(int32_t msgs, void* cookie);
  /bionic/libc/kernel/common/linux/nfsd/
xdr.h 89 __u32 cookie; member in struct:nfsd_readdirargs
  /bootable/recovery/updater/
updater.c 114 state.cookie = &updater_info;

Completed in 928 milliseconds

<<11121314151617181920>>