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

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
thread_db.h 134 extern td_err_e td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/linux/nfsd/
xdr.h 89 __u32 cookie; member in struct:nfsd_readdirargs
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
thread_db.h 134 extern td_err_e td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/nfsd/
xdr.h 89 __u32 cookie; member in struct:nfsd_readdirargs
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/nfsd/
xdr.h 89 __u32 cookie; member in struct:nfsd_readdirargs
  /external/chromium/chrome/browser/printing/
print_job.cc 57 new PrintedDocument(settings_, source_, job->cookie());
99 int PrintJob::cookie() const { function in class:printing::PrintJob
101 // Always use an invalid cookie in this case.
103 return document_->cookie();
printer_query.cc 70 int PrinterQuery::cookie() const { function in class:printing::PrinterQuery
  /frameworks/base/core/java/android/widget/
QuickContactBadge.java 247 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
256 createUri = Uri.fromParts("tel", (String)cookie, null);
270 createUri = Uri.fromParts("mailto", (String)cookie, null);
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 202 // Test rendering of included views on layoutlib 4- (e.g. no <include> tag cookie
401 Object cookie = missingKeys.contains(i) || extraViews.contains(i) ? null : childNode; local
402 ViewInfo childView = new ViewInfo("childView" + i, cookie,
496 Object cookie = (i % 2) == 0 ? cookie1 : cookie2; local
497 ViewInfo childView = new ViewInfo("childView" + i, cookie, 0, i * 20, 50,
517 Object cookie = (i % 2) == 0 ? node1 : node2; local
518 assertSame(cookie, childView.getUiViewNode());
548 Object cookie = (i % 2) == 0 ? cookie1 : cookie2; local
549 ViewInfo childView = new ViewInfo("childView" + i, cookie, 0, i * 20, 50,
568 Object cookie = (i % 2) == 0 ? node1 : node2 local
759 Object cookie = info.getCookie(); local
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 84 function readCookie(cookie) {
85 var myCookie = cookie_namespace+"_"+cookie+"=";
86 if (document.cookie) {
87 var index = document.cookie.indexOf(myCookie);
90 var valEnd = document.cookie.indexOf(";", valStart);
92 valEnd = document.cookie.length;
94 var val = document.cookie.substring(valStart, valEnd);
101 function writeCookie(cookie, val, section, expiration) {
109 document.cookie = cookie_namespace+section+cookie+"="+val+"; expires="+expiration+"; path=/"
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 129 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
134 Cursor currentCursor = mChildrenCursors.get(cookie);
148 mChildrenCursors.put((String)cookie, newCursor);
357 public RefreshCalendars(int token, String cookie, String accountType) {
359 mAccount = cookie;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ViewHierarchy.java 717 Object cookie = info.getCookie(); local
718 if (cookie instanceof UiViewElementNode) {
720 UiViewElementNode node = (UiViewElementNode) cookie;
724 } else if (cookie != null) {
725 sb.append(" " + cookie); //$NON-NLS-1$
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 82 // Cookie details.
292 // Cookie details.
461 // Switches the display to showing the passed in cookie.
465 const net::CookieMonster::CanonicalCookie& cookie) {
469 cookie.Name().c_str());
471 cookie.Value().c_str());
475 cookie.Path().c_str());
478 cookie.CreationDate())).c_str());
480 std::string expire_text = cookie.DoesExpire() ?
481 UTF16ToUTF8(base::TimeFormatFriendlyDateAndTime(cookie.ExpiryDate()))
    [all...]
gtk_chrome_cookie_view.h 60 // The cookie details widgets.
70 // |editable_expiration| was when the cookie view was created. One of these
127 // Builds a new cookie view.
130 // Clears the cookie view.
139 // Switches the display to showing the passed in cookie.
143 const net::CookieMonster::CanonicalCookie& 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/webkit/Source/WebCore/websockets/
WebSocketHandshake.cpp 38 #include "Cookie.h"
247 String cookie = cookieRequestHeaderFieldValue(document, url); local
248 if (!cookie.isEmpty())
249 fields.append("Cookie: " + cookie);
250 // Set "Cookie2: <cookie>" if cookies 2 exists for url?
291 String cookie = cookieRequestHeaderFieldValue(document, url); local
292 if (!cookie.isEmpty())
293 request.addHeaderField("Cookie", cookie);
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 233 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
255 if (cookie != null && cookie instanceof Uri) {
256 mPhotoView.assignContactUri((Uri) cookie);
287 String phoneNumber = (String) cookie;
303 String emailAddress = (String) cookie;
  /external/dhcpcd/
arp.c 82 /* If we failed without a magic cookie then we need to try
85 iface->state->offer->cookie != htonl(MAGIC_COOKIE)) ||
87 iface->state->new->cookie != htonl(MAGIC_COOKIE)))
227 if (state->new->cookie != htonl(MAGIC_COOKIE)) {
  /external/mtpd/
pptp.c 93 uint32_t cookie; member in struct:packet::__anon8799::__anon8800::__anon8801
141 outgoing.header.cookie = MAGIC_COOKIE;
187 /* If incoming.header is valid, check cookie and update incoming.expect. */
189 if (incoming.header.cookie != MAGIC_COOKIE) {
  /external/wpa_supplicant_8/src/wps/
http_client.c 50 static void http_client_got_response(struct httpread *handle, void *cookie,
53 struct http_client *c = cookie;
55 wpa_printf(MSG_DEBUG, "HTTP: httpread callback: handle=%p cookie=%p "
56 "e=%d", handle, cookie, e);
  /bionic/libthread_db/include/
thread_db.h 149 extern td_err_e td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie,
  /bootable/recovery/edify/
expr.h 31 void* cookie; member in struct:__anon664
  /development/ndk/platforms/android-9/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,
  /external/openssl/apps/
s_cb.c 695 int MS_CALLBACK generate_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int *cookie_len)
712 BIO_printf(bio_err,"error setting random cookie secret\n");
777 memcpy(cookie, result, resultlength);
783 int MS_CALLBACK verify_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int cookie_len)
795 /* If secret isn't initialized yet, the cookie can't be valid */
858 if (cookie_len == resultlength && memcmp(result, cookie, resultlength) == 0)

Completed in 1780 milliseconds

<<11121314151617181920>>