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

/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java61 IIntentReceiver resultTo; // who receives final result if non-null field in class:BroadcastRecord
146 if (resultTo != null || resultCode != -1 || resultData != null) {
147 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
238 resultTo = _resultTo;
H A DPendingIntentRecord.java210 String requiredPermission, IBinder resultTo, String resultWho, int requestCode,
288 allResolvedTypes, resultTo, options, userId);
291 resolvedType, resultTo, resultWho, requestCode, 0,
209 sendInner(int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options, IActivityContainer container) argument
H A DActivityStarter.java233 IBinder resultTo, String resultWho, int requestCode, int callingPid, int callingUid,
267 if (resultTo != null) {
268 sourceRecord = mSupervisor.isInAnyStackLocked(resultTo);
270 "Will send result to " + resultTo + " " + sourceRecord);
287 resultRecord = sourceRecord.resultTo;
293 sourceRecord.resultTo = null;
643 null /*voiceInteractor*/, null /*resultTo*/, null /*resultWho*/,
718 IBinder resultTo, String resultWho, int requestCode, int startFlags,
861 resultTo, resultWho, requestCode, callingPid,
924 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
230 startActivityLocked(IApplicationThread caller, Intent intent, Intent ephemeralIntent, String resolvedType, ActivityInfo aInfo, ResolveInfo rInfo, IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor, IBinder resultTo, String resultWho, int requestCode, int callingPid, int callingUid, String callingPackage, int realCallingPid, int realCallingUid, int startFlags, ActivityOptions options, boolean ignoreTargetSecurity, boolean componentSpecified, ActivityRecord[] outActivity, ActivityStackSupervisor.ActivityContainer container, TaskRecord inTask) argument
715 startActivityMayWait(IApplicationThread caller, int callingUid, String callingPackage, Intent intent, String resolvedType, IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, IActivityManager.WaitResult outResult, Configuration config, Bundle bOptions, boolean ignoreTargetSecurity, int userId, IActivityContainer iContainer, TaskRecord inTask) argument
923 startActivities(IApplicationThread caller, int callingUid, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle bOptions, int userId) argument
[all...]
H A DUserController.java228 private void finishUserBoot(UserState uss, IIntentReceiver resultTo) { argument
251 mService.broadcastIntentLocked(null, null, intent, null, resultTo, 0, null, null,
1337 void sendBootCompletedLocked(IIntentReceiver resultTo) { argument
1340 finishUserBoot(uss, resultTo);
H A DActivityRecord.java157 ActivityRecord resultTo; // who started this entry, so will get our reply field in class:ActivityRecord
158 final String resultWho; // additional identifier for use by resultTo.
159 final int requestCode; // code given by requester (resultTo)
282 if (resultTo != null || resultWho != null) {
283 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
625 resultTo = _resultTo;
H A DActivityManagerService.java4329 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
4331 return startActivityAsUser(caller, callingPackage, intent, resolvedType, resultTo,
4357 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
4364 resolvedType, null, null, resultTo, resultWho, requestCode, startFlags,
4370 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
4382 if (resultTo == null) {
4385 sourceRecord = mStackSupervisor.isInAnyStackLocked(resultTo);
4387 throw new SecurityException("Called with bad activity token: " + resultTo);
4427 resolvedType, null, null, resultTo, resultWho, requestCode, startFlags, null,
4448 Intent intent, String resolvedType, IBinder resultTo, Strin
4328 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle bOptions) argument
4356 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle bOptions, int userId) argument
4369 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle bOptions, boolean ignoreTargetSecurity, int userId) argument
4447 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle bOptions, int userId) argument
4462 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle bOptions, int userId) argument
4476 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle bOptions) argument
4731 startActivityInPackage(int uid, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Bundle bOptions, int userId, IActivityContainer container, TaskRecord inTask) argument
4747 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle bOptions, int userId) argument
4759 startActivitiesInPackage(int uid, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle bOptions, int userId) argument
17857 broadcastIntentLocked(ProcessRecord callerApp, String callerPackage, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle bOptions, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
18498 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle bOptions, boolean serialized, boolean sticky, int userId) argument
18522 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String requiredPermission, Bundle bOptions, boolean serialized, boolean sticky, int userId) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceActivity.java1112 Fragment resultTo, int resultRequestCode) {
1113 startWithFragment(fragmentName, args, resultTo, resultRequestCode, 0, 0);
1124 * @param resultTo Option fragment that should receive the result of
1126 * @param resultRequestCode If resultTo is non-null, this is the request
1134 Fragment resultTo, int resultRequestCode, @StringRes int titleRes,
1137 if (resultTo == null) {
1140 resultTo.startActivityForResult(intent, resultRequestCode);
1349 * @param resultTo Optional fragment that result data should be sent to.
1350 * If non-null, resultTo.onActivityResult() will be called when this
1353 * @param resultRequestCode If resultTo i
1111 startWithFragment(String fragmentName, Bundle args, Fragment resultTo, int resultRequestCode) argument
1133 startWithFragment(String fragmentName, Bundle args, Fragment resultTo, int resultRequestCode, @StringRes int titleRes, @StringRes int shortTitleRes) argument
1356 startPreferencePanel(String fragmentClass, Bundle args, @StringRes int titleRes, CharSequence titleText, Fragment resultTo, int resultRequestCode) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java157 IBinder resultTo = data.readStrongBinder();
166 resultTo, resultWho, requestCode, startFlags, profilerInfo, options);
180 IBinder resultTo = data.readStrongBinder();
190 resultTo, resultWho, requestCode, startFlags, profilerInfo, options, userId);
204 IBinder resultTo = data.readStrongBinder();
215 resultTo, resultWho, requestCode, startFlags, profilerInfo, options,
230 IBinder resultTo = data.readStrongBinder();
240 resultTo, resultWho, requestCode, startFlags, profilerInfo, options, userId);
254 IBinder resultTo = data.readStrongBinder();
263 resultTo, resultWh
3074 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options) argument
3108 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
3143 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity, int userId) argument
3179 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
3214 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle options, int userId) argument
3244 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
3514 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
5660 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument
[all...]
H A DIActivityManager.java71 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
74 String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags,
77 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
81 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
85 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
90 IBinder resultTo, String resultWho, int requestCode,
113 String resolvedType, IIntentReceiver resultTo, int resultCode,
450 Intent[] intents, String[] resolvedTypes, IBinder resultTo,
70 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options) argument
73 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
76 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, boolean ignoreTargetSecurity, int userId) argument
80 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
84 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration newConfig, Bundle options, int userId) argument
88 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
112 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
449 startActivities(IApplicationThread caller, String callingPackage, Intent[] intents, String[] resolvedTypes, IBinder resultTo, Bundle options, int userId) argument

Completed in 2631 milliseconds