Searched refs:onResult (Results 1 - 25 of 72) sorted by relevance

123

/frameworks/base/core/java/android/accounts/
H A DIAccountAuthenticatorResponse.aidl25 void onResult(in Bundle value);
H A DIAccountManagerResponse.aidl25 void onResult(in Bundle value);
H A DAccountManagerResponse.java42 public void onResult(Bundle result) { method in class:AccountManagerResponse
44 mResponse.onResult(result);
H A DAccountAuthenticatorActivity.java73 mAccountAuthenticatorResponse.onResult(mResultBundle);
H A DAccountAuthenticatorResponse.java45 public void onResult(Bundle result) { method in class:AccountAuthenticatorResponse
48 Log.v(TAG, "AccountAuthenticatorResponse.onResult: "
52 mAccountAuthenticatorResponse.onResult(result);
H A DAbstractAccountAuthenticator.java93 * The activity must then call {@link AccountAuthenticatorResponse#onResult} or
177 response.onResult(result);
205 response.onResult(result);
231 response.onResult(result);
257 response.onResult(result);
286 response.onResult(result);
302 response.onResult(result);
317 response.onResult(result);
332 response.onResult(result);
348 response.onResult(resul
[all...]
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DIRequestCallback.aidl21 void onResult(in Bundle result);
/frameworks/base/core/java/android/app/backup/
H A DBackupObserver.java47 public void onResult(String currentBackupPackage, int status) { method in class:BackupObserver
H A DIBackupObserver.aidl47 void onResult(String target, int status);
/frameworks/base/telecomm/java/android/telecom/
H A DResponse.java30 void onResult(IN request, OUT... result); method in interface:Response
/frameworks/base/telecomm/java/com/android/internal/telecom/
H A DRemoteServiceCallback.aidl28 void onResult(in List<ComponentName> components, in List<IBinder> callServices);
/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DWrapperPositionalDataSource.java59 public void onResult(@NonNull List<A> data, int position, int totalCount) {
60 callback.onResult(convert(mListFunction, data), position, totalCount);
64 public void onResult(@NonNull List<A> data, int position) {
65 callback.onResult(convert(mListFunction, data), position);
75 public void onResult(@NonNull List<A> data) {
76 callback.onResult(convert(mListFunction, data));
H A DWrapperItemKeyedDataSource.java74 public void onResult(@NonNull List<A> data, int position, int totalCount) {
75 callback.onResult(convertWithStashedKeys(data), position, totalCount);
79 public void onResult(@NonNull List<A> data) {
80 callback.onResult(convertWithStashedKeys(data));
90 public void onResult(@NonNull List<A> data) {
91 callback.onResult(convertWithStashedKeys(data));
101 public void onResult(@NonNull List<A> data) {
102 callback.onResult(convertWithStashedKeys(data));
H A DWrapperPageKeyedDataSource.java60 public void onResult(@NonNull List<A> data, int position, int totalCount,
62 callback.onResult(convert(mListFunction, data), position, totalCount,
67 public void onResult(@NonNull List<A> data, @Nullable K previousPageKey,
69 callback.onResult(convert(mListFunction, data), previousPageKey, nextPageKey);
79 public void onResult(@NonNull List<A> data, @Nullable K adjacentPageKey) {
80 callback.onResult(convert(mListFunction, data), adjacentPageKey);
90 public void onResult(@NonNull List<A> data, @Nullable K adjacentPageKey) {
91 callback.onResult(convert(mListFunction, data), adjacentPageKey);
H A DListDataSource.java42 callback.onResult(sublist, position, totalCount);
48 callback.onResult(mList.subList(params.startPosition,
H A DTiledDataSource.java55 callback.onResult(Collections.<T>emptyList(), 0, 0);
66 callback.onResult(list, firstLoadPosition, totalCount);
79 callback.onResult(list);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/async/
H A DAsyncResultCallback.java22 * Class to deliver the returned value from an asynchronous call. Either {@link #onResult(Result)}
30 * void onResult(Result r) {
46 public abstract void onResult(Result result); method in class:AsyncResultCallback
H A DAsyncResultHelper.java38 callback.onResult(result);
44 callback.onResult(result);
/frameworks/support/paging/common/src/test/java/androidx/paging/
H A DPositionalDataSourceTest.kt124 // invalidate data source so it's invalid when onResult() called
151 it.onResult(listOf("a", "b"), 0, 2)
158 it.onResult(elevenLetterList, 0, 12)
164 it.onResult(listOf("a", "b", "c"), 0, 2)
170 it.onResult(listOf("a", "b"), 1, 2)
176 it.onResult(listOf("a", "b", "c"), -1, 2)
182 it.onResult(emptyList(), 0, 2)
188 it.onResult(listOf("a", "b"), 0)
194 it.onResult(listOf("a", "b"), 0)
200 it.onResult(listO
[all...]
H A DPageKeyedDataSourceTest.kt47 callback.onResult(page.data, page.prev, page.next)
52 callback.onResult(page.data, page.prev)
57 callback.onResult(page.data, page.next)
91 // invalidate data source so it's invalid when onResult() called
122 it.onResult(listOf("a", "b"), 0, 2, null, null)
129 it.onResult(elevenLetterList, 0, 12, null, null)
135 it.onResult(listOf("a", "b", "c"), 0, 2, null, null)
141 it.onResult(listOf("a", "b"), 1, 2, null, null)
147 it.onResult(listOf("a", "b", "c"), -1, 2, null, null)
153 it.onResult(emptyLis
[all...]
H A DItemKeyedDataSourceTest.kt196 verify(callback).onResult(argument.capture())
221 callback.onResult(items.subList(start, endExclusive), start, items.size)
223 callback.onResult(items.subList(start, endExclusive))
231 callback.onResult(items.subList(start, endExclusive))
239 callback.onResult(items.subList(start, endExclusive))
271 // invalidate data source so it's invalid when onResult() called
298 it.onResult(listOf("a", "b"), 0, 2)
305 it.onResult(elevenLetterList, 0, 12)
311 it.onResult(listOf("a", "b", "c"), 0, 2)
317 it.onResult(listO
[all...]
/frameworks/base/core/java/android/os/
H A DRemoteCallback.java32 public void onResult(Bundle result); method in interface:RemoteCallback.OnResultListener
71 mListener.onResult(result);
75 mListener.onResult(result);
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DAccountAuthenticatorDummyActivity.java37 response.onResult(result.getExtras());
/frameworks/base/services/tests/servicestests/src/com/android/server/backup/utils/
H A DBackupObserverUtilsTest.java85 verify(mBackupObserverMock).onResult(PACKAGE_NAME, 1);
90 doThrow(new RemoteException()).when(mBackupObserverMock).onResult(PACKAGE_NAME, 1);
94 verify(mBackupObserverMock).onResult(PACKAGE_NAME, 1);
113 doThrow(new RemoteException()).when(mBackupObserverMock).onResult(PACKAGE_NAME, 1);
/frameworks/support/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/
H A DItemDataSource.java66 callback.onResult(data, position, COUNT);
73 callback.onResult(data);

Completed in 1811 milliseconds

123