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

<<11121314151617181920>>

  /external/oprofile/daemon/
opd_sfile.c 57 /* cookie meaningless for kernel, shouldn't hash */
64 if (trans->cookie != NO_COOKIE) {
65 val ^= trans->cookie >> DCOOKIE_SHIFT;
82 do_match(struct sfile const * sf, cookie_t cookie, cookie_t app_cookie,
108 /* ignore the cached trans->cookie for kernel images,
117 return sf->cookie == cookie;
125 return do_match(sfile, trans->cookie, trans->app_cookie, ki,
133 return do_match(sf, sf2->cookie, sf2->app_cookie, sf2->kernel,
154 if (sf->anon || is_cookie_ignored(sf->cookie))
    [all...]
opd_trans.c 105 if (!trans->in_kernel && trans->cookie == NO_COOKIE)
162 printf("CTX_SWITCH to tid %lu, tgid %lu, cookie %llx(%s)\n",
192 trans->cookie = pop_buffer_value(trans);
195 char const * name = verbose_cookie(trans->cookie);
196 verbprintf(vmisc, "COOKIE_SWITCH to cookie %s(%llx)\n",
197 name, trans->cookie);
207 /* subtlety: we must keep trans->cookie cached,
209 * we won't necessarily get a cookie switch on
249 /* subtlety: we must keep trans->cookie cached, even though it's
250 * meaningless for Xen - we won't necessarily get a cookie switc
    [all...]
opd_spu.c 74 printf("SPU_CTX_SWITCH to tid %lu, tgid %lu, cookie %llx(%s)\n",
79 /* The trans->cookie will point to the binary file where the SPU ELF
82 * library, then trans->cookie will differ from the previously obtained
83 * trans->app_cookie. For the non-embedded case, trans->cookie always
86 trans->cookie = pop_buffer_value(trans);
98 spu_context_cache[i].spu_cookie = trans->cookie;
108 trans->cookie = spu_context_cache[i].spu_cookie;
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeWin.cpp 31 #include "Cookie.h"
181 Vector<Cookie> documentCookies;
186 const Cookie& cookie = documentCookies[ndx]; local
188 if (cookie.name.isEmpty())
191 // Build up the cookie string with as much information as we can get so WinINet
194 addCookieParam(cookieBuilder, cookie.name, cookie.value);
195 addCookieParam(cookieBuilder, "path", cookie.path);
196 if (cookie.expires)
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewDatabase.java 34 import android.webkit.CookieManager.Cookie;
523 * Get cookies in the format of CookieManager.Cookie inside an ArrayList for
526 * @return ArrayList<Cookie> If nothing is found, return an empty list.
528 ArrayList<Cookie> getCookiesForDomain(String domain) {
529 ArrayList<Cookie> list = new ArrayList<Cookie>();
555 Cookie cookie = new Cookie(); local
556 cookie.domain = cursor.getString(domainCol)
    [all...]
  /external/chromium/chrome/browser/debugger/
devtools_manager.cc 231 int cookie = DetachClientHost(rvh); local
232 if (cookie != -1) {
234 AttachClientHost(cookie, dest_rvh);
265 int cookie = DetachClientHost(old_rvh); local
266 if (cookie == -1)
270 AttachClientHost(cookie, new_tab->tab_contents()->render_view_host());
278 int cookie = last_orphan_cookie_++; local
279 orphan_client_hosts_[cookie] =
284 return cookie;
449 // We've disconnected from the last renderer -> revoke cookie permissions
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 69 void (*cb)(struct httpread *handle, void *cookie,
71 void *cookie; /* pass to callback */ member in struct:httpread
186 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_TIMEOUT);
693 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_ERROR);
721 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_FILE_READY);
740 void (*cb)(struct httpread *handle, void *cookie,
742 void *cookie, /* pass to callback */
754 h->cookie = cookie;
  /external/wpa_supplicant_8/src/wps/
httpread.c 69 void (*cb)(struct httpread *handle, void *cookie,
71 void *cookie; /* pass to callback */ member in struct:httpread
186 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_TIMEOUT);
693 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_ERROR);
721 (*h->cb)(h, h->cookie, HTTPREAD_EVENT_FILE_READY);
740 void (*cb)(struct httpread *handle, void *cookie,
742 void *cookie, /* pass to callback */
754 h->cookie = cookie;
  /dalvik/vm/
IndirectRefTable.cpp 61 IndirectRef IndirectRefTable::add(u4 cookie, Object* obj)
64 prevState.all = cookie;
205 * specified by the cookie, we don't remove anything. This is the behavior
213 bool IndirectRefTable::remove(u4 cookie, IndirectRef iref)
216 prevState.all = cookie;
269 LOGV("+++ checking for hole at %d (cookie=0x%08x) val=%p",
270 topIndex-1, cookie, table_[topIndex-1].obj);
IndirectRefTable.h 124 /* use as initial value for "cookie", and when table has only one segment */
160 * Instead of a "bottom" argument we take a "cookie", which includes the
164 * "cookie" externally, on the interpreted call stack, the VM can handle
274 IndirectRef add(u4 cookie, Object* obj);
292 * specified by the cookie, we don't remove anything. This is the behavior
297 bool remove(u4 cookie, IndirectRef iref);
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppengineimpl_iq.cc 57 XmppIqCookie* cookie) {
79 if (cookie)
80 *cookie = iq_entry;
87 XmppEngineImpl::RemoveIqHandler(XmppIqCookie cookie,
94 reinterpret_cast<XmppIqEntry*>(cookie));
xmppengine.h 134 virtual void IqResponse(XmppIqCookie cookie, const XmlElement * pelStanza) = 0;
281 //! Returns the cookie passed to the result handler.
284 XmppIqCookie* cookie) = 0;
286 //! Unregisters an iq callback handler given its cookie.
288 virtual XmppReturnStatus RemoveIqHandler(XmppIqCookie cookie,
  /frameworks/base/include/utils/
AssetManager.h 90 * Returns "true" on success, "false" on failure. If 'cookie' is non-NULL,
91 * then on success, *cookie is set to the value corresponding to the
94 bool addAssetPath(const String8& path, void** cookie);
105 * 'cookie' must be NULL, resulting in the first cookie being returned.
106 * Each next cookie will be returned there-after, until NULL indicating
109 void* nextAssetPath(void* cookie) const;
115 String8 getAssetPath(void* cookie) const;
158 * Explicit non-asset file. The file explicitly named by the cookie (the
161 Asset* openNonAsset(void* cookie, const char* fileName, AccessMode mode)
    [all...]
  /frameworks/base/media/libstagefright/
TimedEventQueue.cpp 133 void *cookie, const sp<TimedEventQueue::Event> &event) {
135 static_cast<TimedEventQueue::event_id *>(cookie);
160 bool (*predicate)(void *cookie, const sp<Event> &event),
161 void *cookie,
167 if (!(*predicate)(cookie, (*it).event)) {
  /hardware/ti/omap4xxx/camera/
BaseCameraAdapter.cpp 131 void BaseCameraAdapter::enableMsgType(int32_t msgs, frame_callback callback, event_callback eventCb, void* cookie)
139 mFrameSubscribers.add((int) cookie, callback);
143 mFrameDataSubscribers.add((int) cookie, callback);
147 mImageSubscribers.add((int) cookie, callback);
151 mRawSubscribers.add((int) cookie, callback);
155 mVideoSubscribers.add((int) cookie, callback);
159 mFocusSubscribers.add((int) cookie, eventCb);
160 mShutterSubscribers.add((int) cookie, eventCb);
161 mZoomSubscribers.add((int) cookie, eventCb);
162 mFaceSubscribers.add((int) cookie, eventCb)
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BasicClientCookie.java $
32 package org.apache.http.impl.cookie;
39 import org.apache.http.cookie.ClientCookie;
40 import org.apache.http.cookie.SetCookie;
43 * HTTP "magic-cookie" represents a piece of state information
106 * Returns the comment describing the purpose of this cookie, or
118 * If a user agent (web browser) presents this cookie to a user, the
119 * cookie's purpose will be described using this comment.
139 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
159 * @param expiryDate the {@link Date} after which this cookie is no longer valid
    [all...]
  /external/kernel-headers/original/linux/
inotify.h 21 __u32 cookie; /* cookie to synchronize two events */ member in struct:inotify_event
142 __u32 mask, __u32 cookie,
149 __u32 mask, __u32 cookie,
  /frameworks/media/libvideoeditor/lvpp/
VideoEditorPreviewController.h 60 typedef void (*jni_progress_callback_fct)(void* cookie, M4OSA_UInt32 msgType, void *argc);
86 M4OSA_Void setJniCallback(void* cookie,
142 static void notify(void* cookie, int msg, int ext1, int ext2);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultHttpClient.java 60 import org.apache.http.cookie.CookieSpecRegistry;
66 import org.apache.http.impl.cookie.BestMatchSpecFactory;
67 import org.apache.http.impl.cookie.BrowserCompatSpecFactory;
68 import org.apache.http.impl.cookie.NetscapeDraftSpecFactory;
69 import org.apache.http.impl.cookie.RFC2109SpecFactory;
70 import org.apache.http.impl.cookie.RFC2965SpecFactory;
  /external/chromium/chrome/browser/printing/
printing_message_filter.cc 55 // Always use an invalid cookie.
208 params.document_cookie = printer_query->cookie();
215 if (printer_query->cookie() && printer_query->settings().dpi()) {
230 print_job_manager_->PopPrinterQuery(params.cookie, &printer_query);
260 params.params.document_cookie = printer_query->cookie();
296 params.params.document_cookie = printer_query->cookie();
303 if (printer_query->cookie() && printer_query->settings().dpi())
  /external/ppp/pppd/plugins/rp-pppoe/
common.c 446 /* Copy cookie and relay-ID if needed */
447 if (conn->cookie.type) {
449 ntohs(conn->cookie.length) + TAG_HDR_SIZE);
450 memcpy(cursor, &conn->cookie, ntohs(conn->cookie.length) + TAG_HDR_SIZE);
451 cursor += ntohs(conn->cookie.length) + TAG_HDR_SIZE;
452 plen += ntohs(conn->cookie.length) + TAG_HDR_SIZE;
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLDocument12.js 78 The cookie attribute returns the cookies associated with this document.
80 Retrieve the cookie attribute and examine its value.
98 vcookie = doc.cookie;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLDocument12.js 78 The cookie attribute returns the cookies associated with this document.
80 Retrieve the cookie attribute and examine its value.
98 vcookie = doc.cookie;
  /frameworks/base/libs/binder/
BpBinder.cpp 174 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
178 ob.cookie = cookie;
208 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
221 || (recipient == NULL && obit.cookie == cookie))
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList2.java 59 protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
66 int groupPosition = (Integer) cookie;

Completed in 535 milliseconds

<<11121314151617181920>>