Home
last modified time | relevance | path

Searched defs:cookie (Results 1 – 25 of 128) sorted by relevance

123456

/frameworks/base/core/java/android/content/
DAsyncQueryHandler.java56 public Object cookie; field in AsyncQueryHandler.WorkerArgs
164 public void startQuery(int token, Object cookie, Uri uri, in startQuery()
207 public final void startInsert(int token, Object cookie, Uri uri, in startInsert()
233 public final void startUpdate(int token, Object cookie, Uri uri, in startUpdate()
261 public final void startDelete(int token, Object cookie, Uri uri, in startDelete()
286 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { in onQueryComplete()
299 protected void onInsertComplete(int token, Object cookie, Uri uri) { in onInsertComplete()
312 protected void onUpdateComplete(int token, Object cookie, int result) { in onUpdateComplete()
325 protected void onDeleteComplete(int token, Object cookie, int result) { in onDeleteComplete()
/frameworks/base/telecomm/java/android/telecom/
DCallerInfoAsyncQuery.java72 public void onQueryComplete(int token, Object cookie, CallerInfo ci); in onQueryComplete()
82 public Object cookie; field in CallerInfoAsyncQuery.CookieWrapper
267 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { in onQueryComplete()
399 OnQueryCompleteListener listener, Object cookie) { in startQuery()
429 OnQueryCompleteListener listener, Object cookie) { in startQuery()
447 OnQueryCompleteListener listener, Object cookie, int subId) { in startQuery()
499 public void addQueryListener(int token, OnQueryCompleteListener listener, Object cookie) { in addQueryListener()
/frameworks/base/native/android/
Dtrace.cpp32 void ATrace_beginAsyncSection(const char* sectionName, int32_t cookie) { in ATrace_beginAsyncSection()
36 void ATrace_endAsyncSection(const char* sectionName, int32_t cookie) { in ATrace_endAsyncSection()
/frameworks/base/libs/androidfw/tests/
DTheme_test.cpp85 ApkAssetsCookie cookie; in TEST_F() local
109 ApkAssetsCookie cookie; in TEST_F() local
155 ApkAssetsCookie cookie; in TEST_F() local
189 ApkAssetsCookie cookie; in TEST_F() local
223 ApkAssetsCookie cookie; in TEST_F() local
252 ApkAssetsCookie cookie; in TEST_F() local
DAssetManager2_test.cpp106 ApkAssetsCookie cookie = in TEST_F() local
136 ApkAssetsCookie cookie = in TEST_F() local
164 ApkAssetsCookie cookie = in TEST_F() local
209 ApkAssetsCookie cookie = assetmanager.GetResource( in TEST_F() local
370 ApkAssetsCookie cookie = in TEST_F() local
393 ApkAssetsCookie cookie = in TEST_F() local
428 ApkAssetsCookie cookie = assetmanager.GetResource(high_ref, false /*may_be_bag*/, in TEST_F() local
615 ApkAssetsCookie cookie = in TEST_F() local
650 ApkAssetsCookie cookie = in TEST_F() local
674 ApkAssetsCookie cookie = in TEST_F() local
[all …]
/frameworks/base/libs/androidfw/
DZipFileRO.cpp43 void *cookie; member in _ZipEntryRO
145 bool ZipFileRO::startIteration(void** cookie) { in startIteration()
149 bool ZipFileRO::startIteration(void** cookie, const char* prefix, const char* suffix) in startIteration()
165 ZipEntryRO ZipFileRO::nextEntry(void* cookie) in nextEntry()
180 void ZipFileRO::endIteration(void* cookie) in endIteration()
DAttributeResolution.cpp31 static uint32_t ApkAssetsCookieToJavaCookie(ApkAssetsCookie cookie) { in ApkAssetsCookieToJavaCookie()
109 ApkAssetsCookie cookie = kInvalidCookie; in ResolveAttrs() local
283 ApkAssetsCookie cookie = kInvalidCookie; in ApplyStyle() local
422 ApkAssetsCookie cookie = kInvalidCookie; in RetrieveAttributes() local
/frameworks/av/media/libaudiohal/
DHalDeathHandlerHidl.cpp39 void HalDeathHandler::registerAtExitHandler(void* cookie, AtExitHandler handler) { in registerAtExitHandler()
44 void HalDeathHandler::unregisterAtExitHandler(void* cookie) { in unregisterAtExitHandler()
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
DSysTrace.java102 public static void beginSectionAsync(String methodName, int cookie) { in beginSectionAsync()
116 public static void endSectionAsync(String methodName, int cookie) { in endSectionAsync()
/frameworks/base/core/java/android/os/
DIHwBinder.java55 public void serviceDied(long cookie); in serviceDied()
65 public boolean linkToDeath(DeathRecipient recipient, long cookie); in linkToDeath()
DTrace.java129 private static native void nativeAsyncTraceBegin(long tag, String name, int cookie); in nativeAsyncTraceBegin()
131 private static native void nativeAsyncTraceEnd(long tag, String name, int cookie); in nativeAsyncTraceEnd()
232 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) { in asyncTraceBegin()
250 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) { in asyncTraceEnd()
312 public static void beginAsyncSection(@NonNull String methodName, int cookie) { in beginAsyncSection()
324 public static void endAsyncSection(@NonNull String methodName, int cookie) { in endAsyncSection()
DHwRemoteBinder.java48 public native boolean linkToDeath(DeathRecipient recipient, long cookie); in linkToDeath()
64 private static final void sendDeathNotice(DeathRecipient recipient, long cookie) { in sendDeathNotice()
DRemoteCallbackList.java69 Callback(E callback, Object cookie) { in Callback()
116 public boolean register(E callback, Object cookie) { in register()
204 public void onCallbackDied(E callback, Object cookie) { in onCallbackDied()
/frameworks/av/services/camera/libcameraservice/hidl/
DCameraHybridInterface.h56 void* cookie; member
96 void* cookie, uint32_t flags) { in linkToDeath()
116 void* cookie, uint32_t flags, in unlinkToDeath()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
DAppTrace.java28 public static void start(String key, int cookie) { in start()
49 public static void end(String key, int cookie) { in end()
/frameworks/base/core/java/android/hardware/biometrics/
DIBiometricServiceReceiverInternal.aidl31 void onAuthenticationFailed(int cookie, boolean requireConfirmation); in onAuthenticationFailed()
34 void onError(int cookie, int error, String message); in onError()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DSystemViewInfo.java29 public SystemViewInfo(String name, Object cookie, int left, int top, in SystemViewInfo()
34 public SystemViewInfo(String name, Object cookie, int left, int top, in SystemViewInfo()
/frameworks/base/core/java/android/database/sqlite/
DSQLiteConnection.java213 final int cookie = mRecentOperations.beginOperation("open", null, null); in open() local
246 final int cookie = mRecentOperations.beginOperation("close", null, null); in dispose() local
591 final int cookie = mRecentOperations.beginOperation("prepare", sql, null); in prepare() local
639 final int cookie = mRecentOperations.beginOperation("execute", sql, bindArgs); in execute() local
682 final int cookie = mRecentOperations.beginOperation("executeForLong", sql, bindArgs); in executeForLong() local
727 final int cookie = mRecentOperations.beginOperation("executeForString", sql, bindArgs); in executeForString() local
774 final int cookie = mRecentOperations.beginOperation("executeForBlobFileDescriptor", in executeForBlobFileDescriptor() local
821 final int cookie = mRecentOperations.beginOperation("executeForChangedRowCount", in executeForChangedRowCount() local
869 final int cookie = mRecentOperations.beginOperation("executeForLastInsertedRowId", in executeForLastInsertedRowId() local
932 final int cookie = mRecentOperations.beginOperation("executeForCursorWindow", in executeForCursorWindow() local
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DHostapdHal.java100 public void serviceDied(long cookie) { in serviceDied()
112 public void serviceDied(long cookie) { in serviceDied()
241 private boolean linkToHostapdDeath(HwRemoteBinder.DeathRecipient deathRecipient, long cookie) { in linkToHostapdDeath()
466 private void hostapdServiceDiedHandler(long cookie) { in hostapdServiceDiedHandler()
528 linkToHostapdDeath((cookie) -> { in terminate() argument
/frameworks/base/core/java/android/view/textservice/
DTextInfo.java51 public TextInfo(String text, int cookie, int sequenceNumber) { in TextInfo()
68 public TextInfo(CharSequence charSequence, int start, int end, int cookie, int sequenceNumber) { in TextInfo()
DSuggestionsInfo.java71 int suggestionsAttributes, String[] suggestions, int cookie, int sequence) { in SuggestionsInfo()
113 public void setCookieAndSequence(int cookie, int sequence) { in setCookieAndSequence()
/frameworks/av/media/bufferpool/1.0/
DAccessor.cpp43 uint64_t cookie = it->second; in remove() local
56 uint64_t cookie, in addCookieToConnection()
73 uint64_t cookie, in serviceDied()
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
DRemoteAssetRepository.java35 RemoteInputStream openNonAsset(int cookie, String path, int mode) throws IOException; in openNonAsset()
/frameworks/av/media/bufferpool/2.0/
DAccessor.cpp43 uint64_t cookie = it->second; in remove() local
56 uint64_t cookie, in addCookieToConnection()
73 uint64_t cookie, in serviceDied()
/frameworks/av/services/soundtrigger/
DSoundTriggerHalHidl.cpp141 void *cookie, in loadSoundModel()
296 void *cookie) in startRecognition()
631 CallbackCookie cookie) in recognitionCallback()
655 CallbackCookie cookie) in phraseRecognitionCallback()
681 CallbackCookie cookie) in soundModelCallback()
706 const ISoundTriggerHwCallback::RecognitionEvent& event, CallbackCookie cookie) { in recognitionCallback_2_1()
714 const ISoundTriggerHwCallback::PhraseRecognitionEvent& event, int32_t cookie) { in phraseRecognitionCallback_2_1()
726 const ISoundTriggerHwCallback::ModelEvent& event, CallbackCookie cookie) { in soundModelCallback_2_1()

123456