Searched refs:cookie (Results 1 - 25 of 67) sorted by relevance

123

/frameworks/base/core/java/android/webkit/
H A DCookieSyncManager.java27 * The CookieSyncManager is used to synchronize the browser cookie store
109 // persistent cookie. No sync needed.
123 // persistent cookie.
136 // persistent cookie.
150 // persistent cookie.
164 // persistent cookie.
198 Cookie cookie = iter.next();
199 if (cookie.mode != Cookie.MODE_NORMAL) {
200 if (cookie.mode != Cookie.MODE_NEW) {
201 mDataBase.deleteCookies(cookie
[all...]
H A DCookieManager.java78 // RFC2109 defines 4k as maximum size of a cookie
81 // RFC2109 defines 20 as max cookie count per domain. As we track with base
89 // max cookie count to limit RAM cookie takes less than 100k, it is based on
90 // average cookie entry size is less than 100 bytes
93 // max domain count to limit RAM cookie takes less than 100k,
114 * Package level class to be accessed by cookie sync manager
184 Log.w(LOGTAG, "Empty cookie path");
212 // assign different value for each cookie.
261 * Control whether cookie i
605 deleteACookie(Cookie cookie) argument
624 syncedACookie(Cookie cookie) argument
[all...]
H A DWebViewDatabase.java450 Cookie cookie = new Cookie();
451 cookie.domain = cursor.getString(domainCol);
452 cookie.path = cursor.getString(pathCol);
453 cookie.name = cursor.getString(nameCol);
454 cookie.value = cursor.getString(valueCol);
456 cookie.expires = -1;
458 cookie.expires = cursor.getLong(expiresCol);
460 cookie.secure = cursor.getShort(secureCol) != 0;
461 cookie.mode = Cookie.MODE_NORMAL;
462 list.add(cookie);
502 addCookie(Cookie cookie) argument
[all...]
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java56 public Object cookie; field in class:AsyncQueryHandler.WorkerArgs
148 * @param cookie An object that gets passed into {@link #onQueryComplete}
164 public void startQuery(int token, Object cookie, Uri uri, argument
178 args.cookie = cookie;
203 * @param cookie An object that gets passed into {@link #onInsertComplete}
207 public final void startInsert(int token, Object cookie, Uri uri, argument
216 args.cookie = cookie;
229 * @param cookie A
233 startUpdate(int token, Object cookie, Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
261 startDelete(int token, Object cookie, Uri uri, String selection, String[] selectionArgs) argument
286 onQueryComplete(int token, Object cookie, Cursor cursor) argument
299 onInsertComplete(int token, Object cookie, Uri uri) argument
312 onUpdateComplete(int token, Object cookie, int result) argument
325 onDeleteComplete(int token, Object cookie, int result) argument
[all...]
/frameworks/base/include/media/
H A DPVPlayer.h68 static void do_nothing(status_t s, void *cookie, bool cancelled) { } argument
69 static void run_init(status_t s, void *cookie, bool cancelled);
70 static void run_set_video_surface(status_t s, void *cookie, bool cancelled);
71 static void run_set_audio_output(status_t s, void *cookie, bool cancelled);
72 static void run_prepare(status_t s, void *cookie, bool cancelled);
73 static void check_for_live_streaming(status_t s, void *cookie, bool cancelled);
H A DMediaPlayerInterface.h56 typedef void (*notify_callback_f)(void* cookie, int msg, int ext1, int ext2);
67 AudioSink *audioSink, void *buffer, size_t size, void *cookie);
88 void *cookie = NULL) = 0;
124 virtual void setNotifyCallback(void* cookie, notify_callback_f notifyFunc) { argument
125 mCookie = cookie; mNotify = notifyFunc; }
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java58 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
63 * Wrap the cookie from the WorkerArgs with additional information needed by our
68 public Object cookie; field in class:CallerInfoAsyncQuery.CookieWrapper
123 CookieWrapper cw = (CookieWrapper) args.cookie;
192 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
195 //get the cookie and notify the listener.
196 CookieWrapper cw = (CookieWrapper) cookie;
259 cw.listener.onQueryComplete(token, cw.cookie, mCallerInfo);
275 OnQueryCompleteListener listener, Object cookie) {
285 cw.cookie
274 startQuery(int token, Context context, Uri contactRef, OnQueryCompleteListener listener, Object cookie) argument
304 startQuery(int token, Context context, String number, OnQueryCompleteListener listener, Object cookie) argument
392 addQueryListener(int token, OnQueryCompleteListener listener, Object cookie) argument
[all...]
/frameworks/base/include/utils/
H A DDebug.h53 typedef void (*debugPrintFunc)(void* cookie, const char* txt);
56 debugPrintFunc func = 0, void* cookie = 0);
61 debugPrintFunc func = 0, void* cookie = 0);
H A DAssetManager.h90 * 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, cons
[all...]
/frameworks/base/core/java/android/os/
H A DRemoteCallbackList.java60 Callback(E callback, Object cookie) { argument
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) { argument
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) { argument
[all...]
/frameworks/base/include/private/binder/
H A Dbinder_module.h53 void *cookie;
70 void *cookie;
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java384 * @param cookie Identifier of the package to be opened.
387 public final InputStream openNonAsset(int cookie, String fileName) argument
389 return openNonAsset(cookie, fileName, ACCESS_STREAMING);
396 * @param cookie Identifier of the package to be opened.
400 public final InputStream openNonAsset(int cookie, String fileName, int accessMode) argument
406 int asset = openNonAssetNative(cookie, fileName, accessMode);
421 public final AssetFileDescriptor openNonAssetFd(int cookie, argument
427 ParcelFileDescriptor pfd = openNonAssetFdNative(cookie,
449 * @param cookie Identifier of the package to be opened.
452 public final XmlResourceParser openXmlResourceParser(int cookie, argument
480 openXmlBlockAsset(int cookie, String fileName) argument
671 openNonAssetNative(int cookie, String fileName, int accessMode) argument
673 openNonAssetFdNative(int cookie, String fileName, long[] outOffsets) argument
710 getCookieName(int cookie) argument
736 openXmlAssetNative(int cookie, String fileName) argument
[all...]
/frameworks/base/include/binder/
H A DBpBinder.h45 void* cookie = NULL,
48 void* cookie = NULL,
104 void* cookie; member in struct:android::BpBinder::Obituary
H A DBinder.h41 void* cookie = NULL,
45 void* cookie = NULL,
H A DIBinder.h104 * The @a cookie is optional -- if non-NULL, it should be a
120 void* cookie = NULL,
126 * dies. The @a cookie is optional. If non-NULL, you can
128 * added with that cookie will be unlinked.
131 void* cookie = NULL,
/frameworks/base/tools/aapt/
H A Dprintapk.cpp34 void* cookie; local
80 cookie = NULL;
81 while ((entry = iterate_zipfile(zip, &cookie))) {
/frameworks/base/libs/utils/
H A DDebug.cpp41 static void defaultPrintFunc(void* cookie, const char* txt) argument
163 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) argument
168 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer);
174 debugPrintFunc func, void* cookie)
188 if (singleLineBytesCutoff < 0) func(cookie, "\n");
189 func(cookie, "(NULL)");
194 if (singleLineBytesCutoff < 0) func(cookie, "\n");
195 func(cookie, "(empty)");
200 if (singleLineBytesCutoff < 0) func(cookie, "\
171 printHexData(int32_t indent, const void *buf, size_t length, size_t bytesPerLine, int32_t singleLineBytesCutoff, size_t alignment, bool cStyle, debugPrintFunc func, void* cookie) argument
[all...]
H A DTextOutput.cpp122 static void textOutputPrinter(void* cookie, const char* txt) argument
124 ((TextOutput*)cookie)->print(txt, strlen(txt));
/frameworks/base/cmds/servicemanager/
H A Dbinder.h17 void *cookie; member in struct:binder_object
23 void *cookie; member in struct:binder_txn
/frameworks/base/media/libstagefright/include/
H A DTimedEventQueue.h93 bool (*predicate)(void *cookie, const sp<Event> &event),
94 void *cookie,
/frameworks/base/core/java/android/pim/
H A DContactsAsyncHelper.java54 public void onImageLoadComplete(int token, Object cookie, ImageView iView, argument
76 public Object cookie; field in class:ContactsAsyncHelper.WorkerArgs
255 OnImageLoadCompleteListener listener, Object cookie, Context context,
272 args.cookie = cookie;
335 args.listener.onImageLoadComplete(msg.what, args.cookie, args.view,
254 updateImageViewWithContactPhotoAsync(CallerInfo info, int token, OnImageLoadCompleteListener listener, Object cookie, Context context, ImageView imageView, Uri person, int placeholderImageResource) argument
/frameworks/base/media/libstagefright/
H A DTimedEventQueue.cpp134 void *cookie, const sp<TimedEventQueue::Event> &event) {
136 static_cast<TimedEventQueue::event_id *>(cookie);
161 bool (*predicate)(void *cookie, const sp<Event> &event),
162 void *cookie,
168 if (!(*predicate)(cookie, (*it).event)) {
133 MatchesEventID( void *cookie, const sp<TimedEventQueue::Event> &event) argument
160 cancelEvents( bool (predicate)void *cookie, const sp<Event> &event), void *cookie, bool stopAfterFirstMatch) argument
/frameworks/base/media/libstagefright/rtsp/
H A DARTSPController.cpp88 void (*seekDoneCb)(void *), void *cookie) {
102 (*seekDoneCb)(cookie);
107 mSeekDoneCookie = cookie;
86 seekAsync( int64_t timeUs, void (*seekDoneCb)(void *), void *cookie) argument
/frameworks/base/libs/binder/
H A DBpBinder.cpp174 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))
173 linkToDeath( const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) argument
207 unlinkToDeath( const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, wp<DeathRecipient>* outRecipient) argument
/frameworks/base/services/camera/libcameraservice/
H A DCameraHardwareStub.h99 static int beginAutoFocusThread(void *cookie);
102 static int beginPictureThread(void *cookie);

Completed in 4848 milliseconds

123