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

1234

/frameworks/native/include/binder/
H A DDebug.h32 typedef void (*debugPrintFunc)(void* cookie, const char* txt);
35 debugPrintFunc func = 0, void* cookie = 0);
40 debugPrintFunc func = 0, void* cookie = 0);
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.h105 * The @a cookie is optional -- if non-NULL, it should be a
121 void* cookie = NULL,
127 * dies. The @a cookie is optional. If non-NULL, you can
129 * added with that cookie will be unlinked.
132 void* cookie = NULL,
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
H A DSysTrace.java96 * asynchronous events do not need to be nested. The name and cookie used to
100 * @param cookie Unique identifier for distinguishing simultaneous events
102 public static void beginSectionAsync(String methodName, int cookie) { argument
104 Log.v(TAG, "beginSectionAsync " + methodName + " " + cookie);
111 * using the same tag, name and cookie.
114 * @param cookie Unique identifier for distinguishing simultaneous events
116 public static void endSectionAsync(String methodName, int cookie) { argument
118 Log.v(TAG, "endSectionAsync " + methodName + " " + cookie);
/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/native/include/media/hardware/
H A DHDCPAPI.h29 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);
76 HDCPModule(void *cookie, ObserverFunc observerNotify) {}; argument
151 void *cookie, android::HDCPModule::ObserverFunc);
155 void *cookie, android::HDCPModule::ObserverFunc);
/frameworks/base/core/java/android/os/
H A DTrace.java83 private static native void nativeAsyncTraceBegin(long tag, String name, int cookie); argument
84 private static native void nativeAsyncTraceEnd(long tag, String name, int cookie); argument
222 * asynchronous events do not need to be nested. The name and cookie used to
227 * @param cookie Unique identifier for distinguishing simultaneous events
231 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) { argument
233 nativeAsyncTraceBegin(traceTag, methodName, cookie);
240 * using the same tag, name and cookie.
244 * @param cookie Unique identifier for distinguishing simultaneous events
248 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) { argument
250 nativeAsyncTraceEnd(traceTag, methodName, cookie);
[all...]
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);
173 * does not provide a cookie.
187 * @param cookie The cookie object original provided to
192 public void onCallbackDied(E callback, Object cookie) { argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSuggestionsInfo.java67 * @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, in argument
70 SuggestionsInfo( int suggestionsAttributes, String[] suggestions, int cookie, int sequence) argument
[all...]
H A DTextInfo.java42 * @param cookie the cookie for this TextInfo
45 public TextInfo(String text, int cookie, int sequence) { argument
50 mCookie = cookie;
81 * @return the cookie of TextInfo
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java66 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
71 * Wrap the cookie from the WorkerArgs with additional information needed by our
76 public Object cookie; field in class:CallerInfoAsyncQuery.CookieWrapper
131 CookieWrapper cw = (CookieWrapper) args.cookie;
200 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
203 //get the cookie and notify the listener.
204 CookieWrapper cw = (CookieWrapper) cookie;
291 cw.listener.onQueryComplete(token, cw.cookie, mCallerInfo);
307 OnQueryCompleteListener listener, Object cookie) {
317 cw.cookie
306 startQuery(int token, Context context, Uri contactRef, OnQueryCompleteListener listener, Object cookie) argument
336 startQuery(int token, Context context, String number, OnQueryCompleteListener listener, Object cookie) argument
424 addQueryListener(int token, OnQueryCompleteListener listener, Object cookie) argument
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java237 final int cookie = mRecentOperations.beginOperation("close", null, null);
243 mRecentOperations.endOperation(cookie);
498 final int cookie = mRecentOperations.beginOperation("prepare", sql, null);
522 mRecentOperations.failOperation(cookie, ex);
525 mRecentOperations.endOperation(cookie);
546 final int cookie = mRecentOperations.beginOperation("execute", sql, bindArgs);
563 mRecentOperations.failOperation(cookie, ex);
566 mRecentOperations.endOperation(cookie);
589 final int cookie = mRecentOperations.beginOperation("executeForLong", sql, bindArgs);
606 mRecentOperations.failOperation(cookie, e
1336 failOperation(int cookie, Exception ex) argument
1345 endOperation(int cookie) argument
1353 endOperationDeferLog(int cookie) argument
1359 logOperation(int cookie, String detail) argument
1365 endOperationDeferLogLocked(int cookie) argument
1376 logOperationLocked(int cookie, String detail) argument
1391 getOperationLocked(int cookie) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_Trace.cpp74 jlong tag, jstring nameStr, jint cookie) {
80 ALOGV("%s: %lld %s %d", __FUNCTION__, tag, utf8Chars.string(), cookie);
81 atrace_async_begin(tag, utf8Chars.string(), cookie);
85 jlong tag, jstring nameStr, jint cookie) {
91 ALOGV("%s: %lld %s %d", __FUNCTION__, tag, utf8Chars.string(), cookie);
92 atrace_async_end(tag, utf8Chars.string(), cookie);
73 android_os_Trace_nativeAsyncTraceBegin(JNIEnv* env, jclass clazz, jlong tag, jstring nameStr, jint cookie) argument
84 android_os_Trace_nativeAsyncTraceEnd(JNIEnv* env, jclass clazz, jlong tag, jstring nameStr, jint cookie) argument
/frameworks/av/include/media/stagefright/
H A DMPEG2TSWriter.h35 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);
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java386 * @param cookie Identifier of the package to be opened.
389 public final InputStream openNonAsset(int cookie, String fileName) argument
391 return openNonAsset(cookie, fileName, ACCESS_STREAMING);
398 * @param cookie Identifier of the package to be opened.
402 public final InputStream openNonAsset(int cookie, String fileName, int accessMode) argument
408 int asset = openNonAssetNative(cookie, fileName, accessMode);
423 public final AssetFileDescriptor openNonAssetFd(int cookie, argument
429 ParcelFileDescriptor pfd = openNonAssetFdNative(cookie,
451 * @param cookie Identifier of the package to be opened.
454 public final XmlResourceParser openXmlResourceParser(int cookie, argument
482 openXmlBlockAsset(int cookie, String fileName) argument
679 openNonAssetNative(int cookie, String fileName, int accessMode) argument
681 openNonAssetFdNative(int cookie, String fileName, long[] outOffsets) argument
718 getCookieName(int cookie) argument
744 openXmlAssetNative(int cookie, String fileName) argument
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.h26 typedef void (*jni_progress_callback_fct)(void* cookie, M4OSA_UInt32 msgType, void *argc);
60 void* cookie,
135 static void notify(void* cookie, int msg, int ext1, int ext2);
/frameworks/base/tools/aapt/
H A Dprintapk.cpp34 void* cookie; local
80 cookie = NULL;
81 while ((entry = iterate_zipfile(zip, &cookie))) {
/frameworks/native/libs/binder/
H A DDebug.cpp41 static void defaultPrintFunc(void* cookie, const char* txt) argument
149 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) argument
154 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer);
160 debugPrintFunc func, void* cookie)
174 if (singleLineBytesCutoff < 0) func(cookie, "\n");
175 func(cookie, "(NULL)");
180 if (singleLineBytesCutoff < 0) func(cookie, "\n");
181 func(cookie, "(empty)");
186 if (singleLineBytesCutoff < 0) func(cookie, "\
157 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 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/native/cmds/servicemanager/
H A Dbinder.h17 void *cookie; member in struct:binder_object
23 void *cookie; member in struct:binder_txn
/frameworks/av/include/media/
H A DMediaPlayerInterface.h67 typedef void (*notify_callback_f)(void* cookie,
87 AudioSink *audioSink, void *buffer, size_t size, void *cookie,
112 void *cookie = NULL,
201 void* cookie, notify_callback_f notifyFunc) {
203 mCookie = cookie; mNotify = notifyFunc;
200 setNotifyCallback( void* cookie, notify_callback_f notifyFunc) argument
/frameworks/av/media/libstagefright/
H A DTimedEventQueue.cpp148 void *cookie, const sp<TimedEventQueue::Event> &event) {
150 static_cast<TimedEventQueue::event_id *>(cookie);
175 bool (*predicate)(void *cookie, const sp<Event> &event),
176 void *cookie,
182 if (!(*predicate)(cookie, (*it).event)) {
147 MatchesEventID( void *cookie, const sp<TimedEventQueue::Event> &event) argument
174 cancelEvents( bool (predicate)void *cookie, const sp<Event> &event), void *cookie, bool stopAfterFirstMatch) argument
/frameworks/base/include/androidfw/
H A DAssetManager.h91 * Returns "true" on success, "false" on failure. If 'cookie' is non-NULL,
92 * then on success, *cookie is set to the value corresponding to the
95 bool addAssetPath(const String8& path, void** cookie);
106 * 'cookie' must be NULL, resulting in the first cookie being returned.
107 * Each next cookie will be returned there-after, until NULL indicating
110 void* nextAssetPath(void* cookie) const;
116 String8 getAssetPath(void* cookie) const;
159 * Explicit non-asset file. The file explicitly named by the cookie (the
162 Asset* openNonAsset(void* cookie, cons
[all...]
/frameworks/av/media/libstagefright/include/
H A DTimedEventQueue.h109 bool (*predicate)(void *cookie, const sp<Event> &event),
110 void *cookie,

Completed in 606 milliseconds

1234