/external/wpa_supplicant_8/src/wps/ |
httpread.h | 71 void (*cb)(struct httpread *handle, void *cookie, 73 void *cookie, /* pass to callback */
|
/external/apache-http/src/org/apache/http/cookie/ |
ClientCookie.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/ClientCookie.java $ 32 package org.apache.http.cookie; 35 * ClientCookie extends the standard {@link Cookie} interface with 37 * original cookie attributes exactly as they were specified by the 38 * origin server. This is important for generating the <tt>Cookie</tt> 39 * header because some cookie specifications require that the 40 * <tt>Cookie</tt> header should include certain attributes only if 41 * they were specified in the <tt>Set-Cookie</tt> header. 47 public interface ClientCookie extends Cookie {
|
/external/apache-http/src/org/apache/http/cookie/params/ |
CookieSpecParamBean.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/params/CookieSpecParamBean.java $ 32 package org.apache.http.cookie.params;
|
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/ |
SDL_xbios_tveille.c | 30 #include <mint/cookie.h>
|
/frameworks/base/core/java/android/view/textservice/ |
SuggestionsInfo.java | 67 * @param cookie the cookie of the input TextInfo 68 * @param sequence the cookie of the input TextInfo 71 int suggestionsAttributes, String[] suggestions, int cookie, int sequence) { 80 mCookie = cookie; 108 * Set the cookie and the sequence of SuggestionsInfo which are set to TextInfo from a client 110 * @param cookie the cookie of an input TextInfo 111 * @param sequence the cookie of an input TextInfo 113 public void setCookieAndSequence(int cookie, int sequence) [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
CallerInfoAsyncQuery.java | 67 public void onQueryComplete(int token, Object cookie, CallerInfo ci); 72 * Wrap the cookie from the WorkerArgs with additional information needed by our 77 public Object cookie; field in class:CallerInfoAsyncQuery.CookieWrapper 132 CookieWrapper cw = (CookieWrapper) args.cookie; 201 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { 204 //get the cookie and notify the listener. 205 CookieWrapper cw = (CookieWrapper) cookie; 211 if (DBG) Log.d(LOG_TAG, "Cookie is null, ignoring onQueryComplete() request."); 294 cw.listener.onQueryComplete(token, cw.cookie, mCallerInfo); 310 OnQueryCompleteListener listener, Object cookie) { [all...] |
/sdk/layoutlib_api/src/com/android/ide/common/rendering/api/ |
ViewInfo.java | 44 public ViewInfo(String name, Object cookie, int left, int top, int right, int bottom) { 45 this(name, cookie, left, top, right, bottom, null /*viewObject*/, 49 public ViewInfo(String name, Object cookie, int left, int top, int right, int bottom, 52 mCookie = cookie; 89 * Returns the cookie associated with the XML node. Can be null.
|
/system/core/include/zipfile/ |
zipfile.h | 52 zipentry_t iterate_zipfile(zipfile_t file, void** cookie);
|
/external/chromium/base/win/ |
pe_image_unittest.cc | 21 PVOID cookie) { 22 int* count = reinterpret_cast<int*>(cookie); 34 PVOID cookie) { 35 int* count = reinterpret_cast<int*>(cookie); 45 PVOID cookie) { 46 int* count = reinterpret_cast<int*>(cookie); 55 PVOID cookie) { 56 int* count = reinterpret_cast<int*>(cookie); 66 PVOID cookie) { 67 int* count = reinterpret_cast<int*>(cookie); [all...] |
pe_image.cc | 24 PVOID cookie; member in struct:base::win::EnumAllImportsStorage 49 PIMAGE_THUNK_DATA iat, PVOID cookie) { 51 cookie); 54 storage.cookie); 62 PIMAGE_THUNK_DATA unload_iat, PVOID cookie) { 64 cookie); 68 unload_iat, storage.cookie); 239 bool PEImage::EnumSections(EnumSectionsFunction callback, PVOID cookie) const { 248 if (!callback(*this, section, section_start, size, cookie)) 255 bool PEImage::EnumExports(EnumExportsFunction callback, PVOID cookie) const [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_cookies_helpers.h | 36 // Constructs a Cookie object as defined by the cookies API. This function 40 const net::CookieMonster::CanonicalCookie& cookie, 49 // Retrieves all cookies from the given cookie store corresponding to the given 50 // URL. If the URL is empty, all cookies in the cookie store are retrieved. 55 // Constructs a URL from a cookie's information for use in checking 56 // a cookie against the extension's host permissions. The Secure 57 // property of the cookie defines the URL scheme, and the cookie's 60 const net::CookieMonster::CanonicalCookie& cookie); 62 // Looks through all cookies in the given cookie store, and appends to th [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorPageAgent.cpp | 38 #include "Cookie.h" 130 static PassRefPtr<InspectorObject> buildObjectForCookie(const Cookie& cookie) 133 value->setString("name", cookie.name); 134 value->setString("value", cookie.value); 135 value->setString("domain", cookie.domain); 136 value->setString("path", cookie.path); 137 value->setNumber("expires", cookie.expires); 138 value->setNumber("size", (cookie.name.length() + cookie.value.length())) [all...] |
InspectorInstrumentation.h | 450 inline void InspectorInstrumentation::didCallFunction(const InspectorInstrumentationCookie& cookie) 453 if (hasFrontends() && cookie.first) 454 didCallFunctionImpl(cookie); 467 inline void InspectorInstrumentation::didChangeXHRReadyState(const InspectorInstrumentationCookie& cookie) 470 if (hasFrontends() && cookie.first) 471 didChangeXHRReadyStateImpl(cookie); 484 inline void InspectorInstrumentation::didDispatchEvent(const InspectorInstrumentationCookie& cookie) 487 if (hasFrontends() && cookie.first) 488 didDispatchEventImpl(cookie); 501 inline void InspectorInstrumentation::didDispatchEventOnWindow(const InspectorInstrumentationCookie& cookie) [all...] |
InspectorState.cpp | 48 RefPtr<InspectorValue> cookie = InspectorValue::parseJSON(inspectorStateCookie); local 49 if (cookie) 50 m_properties = cookie->asObject();
|
/external/webkit/Source/WebCore/inspector/front-end/ |
CookieItemsView.js | 141 _deleteCookie: function(cookie) 143 PageAgent.deleteCookie(cookie.name, this._cookieDomain); 228 var cookie = rawCookies[i]; 229 var delimIndex = cookie.indexOf("="); 230 var name = cookie.substring(0, delimIndex); 231 var value = cookie.substring(delimIndex + 1); 240 WebInspector.Cookies.cookieMatchesResourceURL = function(cookie, resourceURL) 243 if (!url || !this.cookieDomainMatchesResourceDomain(cookie.domain, url.host)) 245 return (url.path.indexOf(cookie.path) === 0 246 && (!cookie.port || url.port == cookie.port [all...] |
/frameworks/av/include/media/stagefright/ |
MPEG2TSWriter.h | 35 void *cookie, 36 ssize_t (*write)(void *cookie, const void *data, size_t size)); 60 ssize_t (*mWriteFunc)(void *cookie, const void *data, size_t size);
|
/system/core/adb/ |
services.c | 42 void (*func)(int fd, void *cookie); 44 void *cookie; member in struct:stinfo 51 sti->func(sti->fd, sti->cookie); 59 static void dns_service(int fd, void *cookie) 61 char *hostname = cookie; 67 free(cookie); 79 static void recover_service(int s, void *cookie) 82 unsigned count = (unsigned) cookie; 110 void restart_root_service(int fd, void *cookie) 135 void restart_tcp_service(int fd, void *cookie) [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
AsyncQueryHandlerTest.java | 48 private static final Object INSERT_COOKIE = "insert cookie"; 49 private static final Object QUERY_COOKIE = "query cookie"; 50 private static final Object DELETE_COOKIE = "delete cookie"; 51 private static final Object UPDATE_COOKIE = "update cookie"; 273 private void startQuery(int token, Object cookie, Uri uri, String[] projection, 278 mAsyncHandler.startQuery(token, cookie, uri, projection, 282 private void startInsert(int token, Object cookie, Uri uri, 287 mAsyncHandler.startInsert(token, cookie, uri, initialValues); 290 private void startUpdate(int token, Object cookie, Uri uri, ContentValues values, 295 mAsyncHandler.startUpdate(token, cookie, uri, values, selection, selectionArgs) [all...] |
/frameworks/base/core/java/android/os/ |
RemoteCallbackList.java | 60 Callback(E callback, Object cookie) { 62 mCookie = cookie; 75 * that does not take a cookie object. 96 * @param cookie Optional additional data to be associated with this 107 public boolean register(E callback, Object cookie) { 114 Callback cb = new Callback(callback, cookie); 172 * does not provide a cookie. 186 * @param cookie The cookie object original provided to 191 public void onCallbackDied(E callback, Object cookie) { [all...] |
/external/chromium/chrome/browser/ui/webui/ |
cookies_tree_model_util.cc | 80 dict->SetString(kKeyType, "cookie"); 83 const net::CookieMonster::CanonicalCookie& cookie = local 84 *node.GetDetailedInfo().cookie; 86 dict->SetString(kKeyName, cookie.Name()); 87 dict->SetString(kKeyContent, cookie.Value()); 88 dict->SetString(kKeyDomain, cookie.Domain()); 89 dict->SetString(kKeyPath, cookie.Path()); 90 dict->SetString(kKeySendFor, cookie.IsSecure() ? 93 std::string accessible = cookie.IsHttpOnly() ? 98 base::TimeFormatFriendlyDateAndTime(cookie.CreationDate()))) [all...] |
/external/kernel-headers/original/linux/ |
dmaengine.h | 47 * typedef dma_cookie_t - an opaque DMA cookie 49 * if dma_cookie_t is >0 it's a DMA request cookie, <0 it's an error code 53 #define dma_submit_error(cookie) ((cookie) < 0 ? 1 : 0) 85 * @cookie: last cookie value returned to client 98 dma_cookie_t cookie; member in struct:dma_chan 199 dma_cookie_t cookie, dma_cookie_t *last, 301 * @cookie: transaction identifier to check status of 302 * @last: returns last completed cookie, can be NUL [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteConnection.java | 230 final int cookie = mRecentOperations.beginOperation("close", null, null); local 236 mRecentOperations.endOperation(cookie); 491 final int cookie = mRecentOperations.beginOperation("prepare", sql, null); local 515 mRecentOperations.failOperation(cookie, ex); 518 mRecentOperations.endOperation(cookie); 539 final int cookie = mRecentOperations.beginOperation("execute", sql, bindArgs); local 556 mRecentOperations.failOperation(cookie, ex); 559 mRecentOperations.endOperation(cookie); 582 final int cookie = mRecentOperations.beginOperation("executeForLong", sql, bindArgs); local 599 mRecentOperations.failOperation(cookie, ex) 625 final int cookie = mRecentOperations.beginOperation("executeForString", sql, bindArgs); local 670 final int cookie = mRecentOperations.beginOperation("executeForBlobFileDescriptor", local 717 final int cookie = mRecentOperations.beginOperation("executeForChangedRowCount", local 765 final int cookie = mRecentOperations.beginOperation("executeForLastInsertedRowId", local 828 final int cookie = mRecentOperations.beginOperation("executeForCursorWindow", local [all...] |
/external/chromium/chrome/browser/printing/ |
print_view_manager.cc | 102 void PrintViewManager::OnDidGetPrintedPagesCount(int cookie, int number_pages) { 103 DCHECK_GT(cookie, 0); 106 if (!OpportunisticallyCreatePrintJob(cookie)) 110 if (!document || cookie != document->cookie()) { 123 if (!document || params.document_cookie != document->cookie()) { 357 print_job_->cookie(), 433 bool PrintViewManager::OpportunisticallyCreatePrintJob(int cookie) { 437 if (!cookie) { 446 g_browser_process->print_job_manager()->PopPrinterQuery(cookie, [all...] |
/external/chromium/chrome/browser/tab_contents/ |
tab_specific_content_settings.cc | 115 for (cookie_iterator cookie = cookie_list.begin(); 116 cookie != cookie_list.end(); ++cookie) { 118 cookie->Name(), 119 cookie->Value(), 120 cookie->Domain(), 121 cookie->Path(), 122 cookie->ExpiryDate(), 123 cookie->IsSecure(), 124 cookie->IsHttpOnly()) [all...] |
/dalvik/vm/native/ |
dalvik_system_DexFile.cpp | 75 * Verify that the "cookie" is a DEX file we opened. 79 * If the cookie is invalid, we throw an exception and return "false". 81 static bool validateCookie(int cookie) 83 DexOrJar* pDexOrJar = (DexOrJar*) cookie; 85 LOGVV("+++ dex verifying cookie %p", pDexOrJar); 90 u4 hash = cookie; 96 dvmThrowRuntimeException("invalid DexFile cookie"); 292 * private static void closeDexFile(int cookie) 299 int cookie = args[0]; local 300 DexOrJar* pDexOrJar = (DexOrJar*) cookie; 353 int cookie = args[2]; local 409 int cookie = args[0]; local [all...] |