HomeSort by relevance Sort by last modified time
    Searched refs:sendResult (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/base/core/java/android/app/
IActivityPendingResult.aidl 25 boolean sendResult(int code, String data, in Bundle ex);
SynchronousUserSwitchObserver.java 31 * {@link IRemoteCallback#sendResult(Bundle)}.
39 reply.sendResult(null);
EphemeralResolverService.java 99 callback.sendResult(data);
ActivityOptions.java 327 public void sendResult(Bundle data) throws RemoteException {
352 public void sendResult(Bundle data) throws RemoteException {
    [all...]
  /frameworks/base/core/java/android/os/
IRemoteCallback.aidl 24 void sendResult(in Bundle data);
RemoteCallback.java 49 public void sendResult(Bundle data) {
50 RemoteCallback.this.sendResult(data);
62 public void sendResult(@Nullable final Bundle result) {
78 mCallback.sendResult(result);
  /frameworks/base/core/java/android/service/chooser/
IChooserTargetResult.aidl 26 void sendResult(in List<ChooserTarget> targets);
ChooserTargetService.java 151 result.sendResult(targets);
  /cts/hostsidetests/devicepolicy/app/CertInstaller/src/com/android/cts/certinstaller/
CertInstallerReceiver.java 92 sendResult(context, true, null);
95 sendResult(context, false, e);
104 sendResult(context, !dpm.hasCaCertInstalled(null, certBuffer), null);
107 sendResult(context, false, e);
112 sendResult(context, containsCertificate(dpm.getInstalledCaCerts(null), certBuffer),
116 sendResult(context, false, e);
138 sendResult(context, dpm.installKeyPair(null, privatekey, certificate, alias),
142 sendResult(context, false, e);
148 private void sendResult(Context context, boolean succeed, Exception e) {
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
copy_test.rs 19 void sendResult(bool pass) {
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
copy_test.rs 19 void sendResult(bool pass) {
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
copy_test.rs 19 void sendResult(bool pass) {
  /cts/tests/tests/media/src/android/media/cts/
StubMediaBrowserService.java 80 result.sendResult(mediaItems);
87 result.sendResult(null);
102 result.sendResult(new MediaItem(new MediaDescription.Builder()
114 mPendingLoadChildrenResult.sendResult(Collections.<MediaItem>emptyList());
122 mPendingLoadItemResult.sendResult(new MediaItem(new MediaDescription.Builder()
  /frameworks/base/core/java/android/permissionpresenterservice/
RuntimePermissionPresenterService.java 125 callback.sendResult(result);
127 callback.sendResult(null);
138 callback.sendResult(result);
140 callback.sendResult(null);
  /frameworks/support/media-compat/api21/android/support/v4/media/
MediaBrowserServiceCompatApi21.java 65 public void sendResult(T result) {
67 mResultObj.sendResult(parcelListToItemList((List<Parcel>)result));
70 mResultObj.sendResult(MediaBrowser.MediaItem.CREATOR.createFromParcel(parcel));
74 mResultObj.sendResult(null);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccFileHandler.java 393 private void sendResult(Message response, Object result, Throwable ex) {
408 sendResult(response, null, ar.exception);
413 sendResult(response, null, iccException);
461 sendResult(response, recordSize, null);
550 sendResult(response, result.payload, null);
557 sendResult(response, lc.results, null);
583 sendResult(response, result.payload, null);
588 sendResult(response, null, exc);
  /frameworks/support/media-compat/api24/android/support/v4/media/
MediaBrowserServiceCompatApi24.java 66 public void sendResult(List<Parcel> result, int flags) {
72 mResultObj.sendResult(parcelListToItemList(result));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/views/
RecentsTvTransitionHelper.java 120 public void sendResult(Bundle data) throws RemoteException {
  /frameworks/base/services/core/java/com/android/server/pm/
EphemeralResolverConnection.java 172 public void sendResult(Bundle data) throws RemoteException {
  /frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/
BrowserService.java 141 result.sendResult(list);
  /packages/services/Car/car-support-lib/src/android/support/car/app/menu/
CarMenu.java 45 public void sendResult(List<Item> results) {
47 throw new IllegalStateException("sendResult() called twice.");
71 * Detach this message from the current thread and allow the {@link #sendResult}
80 throw new IllegalStateException("detach() called when sendResult() had already"
89 * @return {@code true} if {@link #sendResult(java.util.List)} or {@link #detach()} has been called.
254 * from this Builder is passed to {@link #sendResult(java.util.List)}. Any changes that are
281 * from this Builder is passed to {@link #sendResult(java.util.List)}. Any changes that are
360 * Add this item to the list of items to be sent when {@link CarMenu#sendResult(java.util.List)}
  /packages/services/Telephony/src/com/android/phone/settings/
VoicemailChangePinActivity.java 630 sendResult(result);
633 sendResult(OmtpConstants.CHANGE_PIN_SYSTEM_ERROR);
640 sendResult(OmtpConstants.CHANGE_PIN_SYSTEM_ERROR);
643 private void sendResult(@ChangePinResult int result) {
  /frameworks/support/media-compat/java/android/support/v4/media/
MediaBrowserServiceCompat.java 312 resultWrapper.sendResult(parcelList);
341 resultWrapper.sendResult(null);
345 resultWrapper.sendResult(parcelItem);
393 resultWrapper.sendResult(parcelList, flags);
495 * {@link #sendResult} to respond to the caller with the given results. If those
496 * functions return without calling {@link #sendResult}, they must instead call
497 * {@link #detach} before returning, and then may call {@link #sendResult} when
517 public void sendResult(T result) {
519 throw new IllegalStateException("sendResult() called twice for: " + mDebug);
526 * Detach this message from the current thread and allow the {@link #sendResult}
    [all...]
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
MediaBrowserServiceSupport.java 252 // Use result.detach to allow calling result.sendResult from another thread:
262 result.sendResult(Collections.<MediaItem>emptyList());
289 result.sendResult(new ArrayList<MediaItem>());
360 result.sendResult(mediaItems);
    [all...]
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
MusicService.java 241 // Use result.detach to allow calling result.sendResult from another thread:
251 result.sendResult(Collections.<MediaItem>emptyList());
319 result.sendResult(mediaItems);
    [all...]

Completed in 980 milliseconds

1 2 3