/frameworks/native/libs/utils/ |
D | BasicHashtable.cpp | 85 bucket.cookie = 0; in clear() 101 if (bucket.cookie & Bucket::PRESENT) { in next() 120 if (bucket.cookie & Bucket::PRESENT) { in find() 125 if (!(bucket.cookie & Bucket::COLLISION)) { in find() 136 if (bucket.cookie & Bucket::PRESENT) { in find() 137 if ((bucket.cookie & Bucket::HASH_MASK) == hash in find() 142 if (!(bucket.cookie & Bucket::COLLISION)) { in find() 159 if (bucket->cookie & Bucket::PRESENT) { in add() 162 bucket->cookie |= Bucket::COLLISION; in add() 165 } while (bucket->cookie & Bucket::PRESENT); in add() [all …]
|
D | Debug.cpp | 41 static void defaultPrintFunc(void* cookie, const char* txt) in defaultPrintFunc() argument 163 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) in printTypeCode() argument 168 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer); in printTypeCode() 174 debugPrintFunc func, void* cookie) in printHexData() argument 188 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData() 189 func(cookie, "(NULL)"); in printHexData() 194 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData() 195 func(cookie, "(empty)"); in printHexData() 200 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData() 203 func(cookie, buf); in printHexData() [all …]
|
/frameworks/base/core/java/android/content/ |
D | AsyncQueryHandler.java | 56 public Object cookie; field in AsyncQueryHandler.WorkerArgs 164 public void startQuery(int token, Object cookie, Uri uri, in startQuery() argument 178 args.cookie = cookie; in startQuery() 207 public final void startInsert(int token, Object cookie, Uri uri, in startInsert() argument 216 args.cookie = cookie; in startInsert() 233 public final void startUpdate(int token, Object cookie, Uri uri, in startUpdate() argument 242 args.cookie = cookie; in startUpdate() 261 public final void startDelete(int token, Object cookie, Uri uri, in startDelete() argument 270 args.cookie = cookie; in startDelete() 286 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { in onQueryComplete() argument [all …]
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
D | CallerInfoAsyncQuery.java | 67 public void onQueryComplete(int token, Object cookie, CallerInfo ci); in onQueryComplete() argument 77 public Object cookie; field in CallerInfoAsyncQuery.CookieWrapper 132 CookieWrapper cw = (CookieWrapper) args.cookie; in handleMessage() 201 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { in onQueryComplete() argument 205 CookieWrapper cw = (CookieWrapper) cookie; in onQueryComplete() 294 cw.listener.onQueryComplete(token, cw.cookie, mCallerInfo); in onQueryComplete() 310 OnQueryCompleteListener listener, Object cookie) { in startQuery() argument 320 cw.cookie = cookie; in startQuery() 340 OnQueryCompleteListener listener, Object cookie) { in startQuery() argument 344 Rlog.d(LOG_TAG, "- cookie: " + cookie); in startQuery() [all …]
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnection.java | 237 final int cookie = mRecentOperations.beginOperation("close", null, null); in dispose() local 243 mRecentOperations.endOperation(cookie); in dispose() 498 final int cookie = mRecentOperations.beginOperation("prepare", sql, null); in prepare() local 522 mRecentOperations.failOperation(cookie, ex); in prepare() 525 mRecentOperations.endOperation(cookie); in prepare() 546 final int cookie = mRecentOperations.beginOperation("execute", sql, bindArgs); in execute() local 563 mRecentOperations.failOperation(cookie, ex); in execute() 566 mRecentOperations.endOperation(cookie); in execute() 589 final int cookie = mRecentOperations.beginOperation("executeForLong", sql, bindArgs); in executeForLong() local 606 mRecentOperations.failOperation(cookie, ex); in executeForLong() [all …]
|
/frameworks/base/core/java/android/os/ |
D | Trace.java | 81 private static native void nativeAsyncTraceBegin(long tag, String name, int cookie); in nativeAsyncTraceBegin() argument 82 private static native void nativeAsyncTraceEnd(long tag, String name, int cookie); in nativeAsyncTraceEnd() argument 229 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) { in asyncTraceBegin() argument 231 nativeAsyncTraceBegin(traceTag, methodName, cookie); in asyncTraceBegin() 246 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) { in asyncTraceEnd() argument 248 nativeAsyncTraceEnd(traceTag, methodName, cookie); in asyncTraceEnd()
|
D | RemoteCallbackList.java | 60 Callback(E callback, Object cookie) { in Callback() argument 62 mCookie = cookie; in Callback() 107 public boolean register(E callback, Object cookie) { in register() argument 114 Callback cb = new Callback(callback, cookie); in register() 191 public void onCallbackDied(E callback, Object cookie) { in onCallbackDied() argument
|
/frameworks/native/include/media/hardware/ |
D | HDCPAPI.h | 28 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2); 62 HDCPModule(void *cookie, ObserverFunc observerNotify) {}; in HDCPModule() 123 void *cookie, android::HDCPModule::ObserverFunc); 127 void *cookie, android::HDCPModule::ObserverFunc);
|
/frameworks/base/core/java/android/content/res/ |
D | AssetManager.java | 389 public final InputStream openNonAsset(int cookie, String fileName) in openNonAsset() argument 391 return openNonAsset(cookie, fileName, ACCESS_STREAMING); in openNonAsset() 402 public final InputStream openNonAsset(int cookie, String fileName, int accessMode) in openNonAsset() argument 408 int asset = openNonAssetNative(cookie, fileName, accessMode); in openNonAsset() 423 public final AssetFileDescriptor openNonAssetFd(int cookie, in openNonAssetFd() argument 429 ParcelFileDescriptor pfd = openNonAssetFdNative(cookie, in openNonAssetFd() 454 public final XmlResourceParser openXmlResourceParser(int cookie, in openXmlResourceParser() argument 456 XmlBlock block = openXmlBlockAsset(cookie, fileName); in openXmlResourceParser() 482 /*package*/ final XmlBlock openXmlBlockAsset(int cookie, String fileName) in openXmlBlockAsset() argument 488 int xmlBlock = openXmlAssetNative(cookie, fileName); in openXmlBlockAsset() [all …]
|
/frameworks/base/core/java/android/view/textservice/ |
D | SuggestionsInfo.java | 71 int suggestionsAttributes, String[] suggestions, int cookie, int sequence) { in SuggestionsInfo() argument 80 mCookie = cookie; in SuggestionsInfo() 113 public void setCookieAndSequence(int cookie, int sequence) { in setCookieAndSequence() argument 114 mCookie = cookie; in setCookieAndSequence()
|
D | TextInfo.java | 45 public TextInfo(String text, int cookie, int sequence) { in TextInfo() argument 50 mCookie = cookie; in TextInfo()
|
/frameworks/native/include/utils/ |
D | Debug.h | 53 typedef void (*debugPrintFunc)(void* cookie, const char* txt); 56 debugPrintFunc func = 0, void* cookie = 0); 61 debugPrintFunc func = 0, void* cookie = 0);
|
/frameworks/base/core/jni/ |
D | android_os_Trace.cpp | 67 jlong tag, jstring nameStr, jint cookie) { in android_os_Trace_nativeAsyncTraceBegin() argument 72 atrace_async_begin(tag, utf8Chars.string(), cookie); in android_os_Trace_nativeAsyncTraceBegin() 76 jlong tag, jstring nameStr, jint cookie) { in android_os_Trace_nativeAsyncTraceEnd() argument 81 atrace_async_end(tag, utf8Chars.string(), cookie); in android_os_Trace_nativeAsyncTraceEnd()
|
/frameworks/av/include/media/stagefright/ |
D | 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);
|
/frameworks/av/media/libstagefright/ |
D | TimedEventQueue.cpp | 128 void *cookie, const sp<TimedEventQueue::Event> &event) { in MatchesEventID() argument 130 static_cast<TimedEventQueue::event_id *>(cookie); in MatchesEventID() 155 bool (*predicate)(void *cookie, const sp<Event> &event), in cancelEvents() argument 156 void *cookie, in cancelEvents() 162 if (!(*predicate)(cookie, (*it).event)) { in cancelEvents()
|
/frameworks/base/include/androidfw/ |
D | AssetManager.h | 95 bool addAssetPath(const String8& path, void** cookie); 110 void* nextAssetPath(void* cookie) const; 116 String8 getAssetPath(void* cookie) const; 162 Asset* openNonAsset(void* cookie, const char* fileName, AccessMode mode); 186 AssetDir* openNonAssetDir(void* cookie, const char* dirName);
|
/frameworks/av/include/media/ |
D | MediaPlayerInterface.h | 67 typedef void (*notify_callback_f)(void* cookie, 79 AudioSink *audioSink, void *buffer, size_t size, void *cookie); 101 void *cookie = NULL, 186 void* cookie, notify_callback_f notifyFunc) { in setNotifyCallback() argument 188 mCookie = cookie; mNotify = notifyFunc; in setNotifyCallback()
|
/frameworks/native/include/binder/ |
D | BpBinder.h | 45 void* cookie = NULL, 48 void* cookie = NULL, 104 void* cookie; member
|
D | IBinder.h | 121 void* cookie = NULL, 132 void* cookie = NULL,
|
/frameworks/base/tools/aapt/ |
D | printapk.cpp | 34 void* cookie; in main() local 80 cookie = NULL; in main() 81 while ((entry = iterate_zipfile(zip, &cookie))) { in main()
|
/frameworks/native/libs/binder/ |
D | BpBinder.cpp | 174 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) in linkToDeath() argument 178 ob.cookie = cookie; in linkToDeath() 208 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, in unlinkToDeath() argument 221 || (recipient == NULL && obit.cookie == cookie)) in unlinkToDeath()
|
D | Parcel.cpp | 78 LOG_REFS("Parcel %p acquiring reference on local %p", who, obj.cookie); in acquire_object() 79 static_cast<IBinder*>(obj.cookie)->incStrong(who); in acquire_object() 115 LOG_REFS("Parcel %p releasing reference on local %p", who, obj.cookie); in release_object() 116 static_cast<IBinder*>(obj.cookie)->decStrong(who); in release_object() 137 if (obj.cookie != (void*)0) close(obj.handle); in release_object() 167 obj.cookie = NULL; in flatten_binder() 171 obj.cookie = local; in flatten_binder() 176 obj.cookie = NULL; in flatten_binder() 200 obj.cookie = NULL; in flatten_binder() 204 obj.cookie = binder.unsafe_get(); in flatten_binder() [all …]
|
/frameworks/av/libvideoeditor/lvpp/ |
D | VideoEditorPreviewController.h | 26 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/av/media/libmediaplayerservice/ |
D | MediaPlayerService.h | 59 static int callbackThread(void* cookie); 96 AudioCallback cb, void *cookie, 148 CallbackData(AudioOutput *cookie) { in CallbackData() argument 149 mData = cookie; in CallbackData() 197 AudioCallback cb = NULL, void *cookie = NULL, 216 static void notify(void* cookie, int msg, 354 static void notify(void* cookie, int msg,
|
/frameworks/av/media/libstagefright/include/ |
D | TimedEventQueue.h | 93 bool (*predicate)(void *cookie, const sp<Event> &event), 94 void *cookie,
|