Searched defs:sendResult (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/os/
H A DRemoteCallback.java49 public void sendResult(Bundle data) {
50 RemoteCallback.this.sendResult(data);
62 public void sendResult(@Nullable final Bundle result) { method in class:RemoteCallback
78 mCallback.sendResult(result);
/frameworks/base/core/java/android/service/resolver/
H A DResolverRankerService.java137 private static void sendResult(List<ResolverTarget> targets, IResolverRankerResult result) { method in class:ResolverRankerService
139 result.sendResult(targets);
158 sendResult(targets, result);
161 sendResult(null, result);
/frameworks/support/media-compat/api24/android/support/v4/media/
H A DMediaBrowserServiceCompatApi24.java68 public void sendResult(List<Parcel> result, int flags) { method in class:MediaBrowserServiceCompatApi24.ResultWrapper
74 mResultObj.sendResult(parcelListToItemList(result));
/frameworks/support/media-compat/api21/android/support/v4/media/
H A DMediaBrowserServiceCompatApi21.java67 public void sendResult(T result) { method in class:MediaBrowserServiceCompatApi21.ResultWrapper
69 mResultObj.sendResult(parcelListToItemList((List<Parcel>)result));
73 mResultObj.sendResult(MediaBrowser.MediaItem.CREATOR.createFromParcel(parcel));
77 mResultObj.sendResult(null);
/frameworks/base/media/java/android/service/media/
H A DMediaBrowserService.java125 * {@link #sendResult} to respond to the caller with the given results. If those
126 * functions return without calling {@link #sendResult}, they must instead call
127 * {@link #detach} before returning, and then may call {@link #sendResult} when
147 public void sendResult(T result) { method in class:MediaBrowserService.Result
149 throw new IllegalStateException("sendResult() called twice for: " + mDebug);
156 * Detach this message from the current thread and allow the {@link #sendResult}
165 throw new IllegalStateException("detach() called when sendResult() had already"
373 * Implementations must call {@link Result#sendResult result.sendResult}
377 * this function, and then {@link Result#sendResult resul
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccFileHandler.java395 private void sendResult(Message response, Object result, Throwable ex) { method in class:IccFileHandler
410 sendResult(response, null, ar.exception);
415 sendResult(response, null, iccException);
463 sendResult(response, recordSize, null);
557 sendResult(response, result.payload, null);
564 sendResult(response, lc.results, null);
590 sendResult(response, result.payload, null);
595 sendResult(response, null, exc);
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserServiceCompat.java366 resultWrapper.sendResult(parcelList);
396 resultWrapper.sendResult(null);
400 resultWrapper.sendResult(parcelItem);
450 resultWrapper.sendResult(parcelList, getFlags());
569 * {@link #sendResult} or {@link #sendError} to respond to the caller with the given results or
570 * errors. If those functions return without calling {@link #sendResult} or {@link #sendError},
572 * {@link #sendResult} or {@link #sendError} when they are done. If {@link #sendResult},
576 * to the caller. If it is called after calling {@link #sendResult} or {@link #sendError}, an
600 public void sendResult( method in class:MediaBrowserServiceCompat.Result
[all...]
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java766 public void sendResult(Bundle result) { method in class:VoiceInteractionSession.CommandRequest
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java4014 callback.sendResult(result);
4078 sendResult();
4116 public void sendResult() { method in class:AccountManagerService.GetAccountsByTypeAndFeatureSession
6052 callback.sendResult(result);

Completed in 668 milliseconds