Searched refs:intent (Results 1 - 25 of 954) sorted by path

1234567891011>>

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp1959 camera_metadata_entry_t intent =
1962 if (intent.count == 0) return BAD_VALUE;
1964 if (intent.data.u8[0] == ANDROID_CONTROL_CAPTURE_INTENT_STILL_CAPTURE) {
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java156 " am to-intent-uri [INTENT]\n" +
291 "am to-intent-uri: print the given Intent specification as an intent: URI.\n" +
433 } else if (op.equals("to-intent-uri")) {
527 Intent intent = makeIntent(UserHandle.USER_CURRENT);
532 System.out.println("Starting service: " + intent);
533 ComponentName cn = mAm.startService(null, intent, intent.getType(),
545 Intent intent = makeIntent(UserHandle.USER_CURRENT);
550 System.out.println("Stopping service: " + intent);
1299 activityStarting(Intent intent, String pkg) argument
1650 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
[all...]
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java312 public void send(int code, Intent intent, String resolvedType,
315 mResult.offer(intent, 5, TimeUnit.SECONDS);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java88 public boolean activityStarting(Intent intent, String pkg) throws RemoteException { argument
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java102 * <intent-filter>
104 * </intent-filter>
121 * <intent-filter>
123 * </intent-filter>
1435 public final IBinder onBind(Intent intent) { argument
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java200 public static final String KEY_INTENT = "intent";
1921 // the STORAGE_OK intent will re-trigger the update.
2030 Intent intent = bundle.getParcelable(KEY_INTENT);
2031 if (intent != null && mActivity != null) {
2034 mActivity.startActivity(intent);
2321 Intent intent = new Intent();
2325 intent.setClassName(componentName.getPackageName(),
2327 intent.putExtra(KEY_ACCOUNTS, accounts);
2328 intent.putExtra(KEY_ACCOUNT_MANAGER_RESPONSE,
2330 mActivity.startActivity(intent);
[all...]
H A DChooseTypeAndAccountActivity.java159 final Intent intent = getIntent();
176 // If the selected account as specified in the intent matches one in the list we will
178 Account selectedAccount = (Account) intent.getParcelableExtra(EXTRA_SELECTED_ACCOUNT);
189 mSetOfAllowableAccounts = getAllowableAccountSet(intent);
190 mSetOfRelevantAccountTypes = getReleventAccountTypes(intent);
191 mDescriptionOverride = intent.getStringExtra(EXTRA_DESCRIPTION_TEXT_OVERRIDE);
372 final Intent intent = (Intent)accountManagerResult.getParcelable(
374 if (intent != null) {
378 intent.setFlags(intent
502 getReleventAccountTypes(final Intent intent) argument
526 getAllowableAccountSet(final Intent intent) argument
[all...]
H A DGrantCredentialsPermissionActivity.java186 Intent intent = getIntent();
187 AccountAuthenticatorResponse response = intent.getParcelableExtra(EXTRAS_RESPONSE);
/frameworks/base/core/java/android/app/
H A DActivity.java263 * intent is delivered -- so the code in these methods should be fairly
843 /** Return the intent that started this activity. */
849 * Change the intent returned by {@link #getIntent}. This holds a
850 * reference to the given intent; it does not copy it. Often used in
1390 * <p>An activity will always be paused before receiving a new intent, so
1396 * @param intent The new intent that was started for the activity.
1402 protected void onNewIntent(Intent intent) { argument
1678 * <p>Custom implementation may adjust the content intent to better reflect the top-level
1682 * modify the intent t
4182 startActivityForResult(@equiresPermission Intent intent, int requestCode) argument
4220 startActivityForResult(@equiresPermission Intent intent, int requestCode, @Nullable Bundle options) argument
4286 startActivityForResultAsUser(Intent intent, int requestCode, UserHandle user) argument
4293 startActivityForResultAsUser(Intent intent, int requestCode, @Nullable Bundle options, UserHandle user) argument
4323 startActivityAsUser(Intent intent, UserHandle user) argument
4330 startActivityAsUser(Intent intent, Bundle options, UserHandle user) argument
4362 startActivityAsCaller(Intent intent, @Nullable Bundle options, boolean ignoreTargetSecurity, int userId) argument
4395 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4427 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
4444 startIntentSenderForResultInner(IntentSender intent, String who, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, Bundle options) argument
4489 startActivity(Intent intent) argument
4516 startActivity(Intent intent, @Nullable Bundle options) argument
4583 startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4610 startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
4639 startActivityIfNeeded(@equiresPermission @onNull Intent intent, int requestCode) argument
4674 startActivityIfNeeded(@equiresPermission @onNull Intent intent, int requestCode, @Nullable Bundle options) argument
4727 startNextMatchingActivity(@equiresPermission @onNull Intent intent) argument
4750 startNextMatchingActivity(@equiresPermission @onNull Intent intent, @Nullable Bundle options) argument
4781 startActivityFromChild(@onNull Activity child, @RequiresPermission Intent intent, int requestCode) argument
4805 startActivityFromChild(@onNull Activity child, @RequiresPermission Intent intent, int requestCode, @Nullable Bundle options) argument
4833 startActivityFromFragment(@onNull Fragment fragment, @RequiresPermission Intent intent, int requestCode) argument
4858 startActivityFromFragment(@onNull Fragment fragment, @RequiresPermission Intent intent, int requestCode, @Nullable Bundle options) argument
4867 startActivityForResult( String who, Intent intent, int requestCode, @Nullable Bundle options) argument
4898 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4912 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) argument
4927 startIntentSenderFromChildFragment(Fragment child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) argument
6608 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, int ident, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, NonConfigurationInstances lastNonConfigurationInstances, Configuration config, String referrer, IVoiceInteractor voiceInteractor, Window window) argument
7138 onStartActivityFromFragment(Fragment fragment, Intent intent, int requestCode, Bundle options) argument
7144 onStartIntentSenderFromFragment(Fragment fragment, IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
[all...]
H A DActivityManager.java281 * a sticky intent without appropriate permission.
1724 * @param intent The Intent that describes the recents entry. This is the same Intent that
1740 public int addAppTask(@NonNull Activity activity, @NonNull Intent intent, argument
1777 intent, description, thumbnail);
3710 * this task be brought to the foreground and a new intent delivered to the top
3717 * @param intent The Intent describing the new activity to be launched on the task.
3722 public void startActivity(Context context, Intent intent, Bundle options) { argument
3725 thread.getApplicationThread(), mAppTaskImpl, intent, options);
H A DActivityManagerNative.java100 static public void broadcastStickyIntent(Intent intent, String permission, int userId) { argument
101 broadcastStickyIntent(intent, permission, AppOpsManager.OP_NONE, userId);
108 static public void broadcastStickyIntent(Intent intent, String permission, int appOp, argument
112 null, intent, null, null, Activity.RESULT_OK, null, null,
155 Intent intent = Intent.CREATOR.createFromParcel(data);
165 int result = startActivity(app, callingPackage, intent, resolvedType,
178 Intent intent = Intent.CREATOR.createFromParcel(data);
189 int result = startActivityAsUser(app, callingPackage, intent, resolvedType,
202 Intent intent = Intent.CREATOR.createFromParcel(data);
214 int result = startActivityAsCaller(app, callingPackage, intent, resolvedTyp
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
3278 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
3350 startNextMatchingActivity(IBinder callingActivity, Intent intent, 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
3543 unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) argument
3721 addAppTask(IBinder activityToken, Intent intent, ActivityManager.TaskDescription description, Bitmap thumbnail) argument
4424 publishService(IBinder token, Intent intent, IBinder service) argument
4438 unbindFinished(IBinder token, Intent intent, boolean doRebind) argument
6199 launchAssistIntent(Intent intent, int requestType, String hint, int userHandle, Bundle args) argument
7018 startConfirmDeviceCredentialIntent(Intent intent) argument
7030 sendIntentSender(IIntentSender target, int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, Bundle options) argument
7103 canBypassWorkChallenge(PendingIntent intent) argument
[all...]
H A DActivityThread.java314 Intent intent; field in class:ActivityThread.ActivityClientRecord
382 ComponentName componentName = intent != null ? intent.getComponent() : null;
445 public ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, argument
448 token, sendingUser, intent.getFlags());
449 this.intent = intent;
452 Intent intent; field in class:ActivityThread.ReceiverData
456 return "ReceiverData{intent=" + intent
478 Intent intent; field in class:ActivityThread.CreateServiceData
488 Intent intent; field in class:ActivityThread.BindServiceData
713 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
773 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
814 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
828 scheduleUnbindService(IBinder token, Intent intent) argument
942 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
2430 resolveActivityInfo(Intent intent) argument
2441 startActivityNow(Activity parent, String id, Intent intent, ActivityInfo activityInfo, IBinder token, Bundle state, Activity.NonConfigurationInstances lastNonConfigurationInstances) argument
4214 safeToComponentShortString(Intent intent) argument
[all...]
H A DActivityView.java228 public void startActivity(Intent intent) { argument
235 if (DEBUG) Log.v(TAG, "startActivity(): intent=" + intent + " " +
237 if (mActivityContainer.startActivity(intent) == START_CANCELED) {
463 int startActivity(Intent intent) { argument
465 return mIActivityContainer.startActivity(intent);
H A DAliasActivity.java41 * resource describing an intent that launches the real application.
47 * resource describing an intent that launches the real application.
67 Intent intent = parseAlias(parser);
68 if (intent == null) {
70 "No <intent> tag found in alias description");
73 startActivity(intent);
91 Intent intent = null;
113 if ("intent".equals(nodeName)) {
115 if (intent == null) intent
[all...]
H A DApplicationErrorReport.java222 Intent intent = new Intent(Intent.ACTION_APP_ERROR);
223 intent.setPackage(receiverPackage);
224 ResolveInfo info = pm.resolveActivity(intent, 0);
H A DApplicationPackageManager.java180 // reuse the intent instance
189 Intent intent = new Intent(intentToResolve);
190 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
191 intent.setClassName(ris.get(0).activityInfo.packageName,
193 return intent;
207 Intent intent = new Intent(intentToResolve);
208 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
209 intent.setClassName(ris.get(0).activityInfo.packageName,
211 return intent;
788 public ResolveInfo resolveActivity(Intent intent, in argument
793 resolveActivityAsUser(Intent intent, int flags, int userId) argument
806 queryIntentActivities(Intent intent, int flags) argument
814 queryIntentActivitiesAsUser(Intent intent, int flags, int userId) argument
832 queryIntentActivityOptions( ComponentName caller, Intent[] specifics, Intent intent, int flags) argument
872 queryBroadcastReceiversAsUser(Intent intent, int flags, int userId) argument
888 queryBroadcastReceivers(Intent intent, int flags) argument
893 resolveService(Intent intent, int flags) argument
907 queryIntentServicesAsUser(Intent intent, int flags, int userId) argument
923 queryIntentServices(Intent intent, int flags) argument
929 queryIntentContentProvidersAsUser( Intent intent, int flags, int userId) argument
946 queryIntentContentProviders(Intent intent, int flags) argument
1076 getActivityIcon(Intent intent) argument
1112 getActivityBanner(Intent intent) argument
1145 getActivityLogo(Intent intent) argument
[all...]
H A DApplicationThreadNative.java141 Intent intent = Intent.CREATOR.createFromParcel(data);
163 scheduleLaunchActivity(intent, b, ident, info, curConfig, overrideConfig, compatInfo,
211 Intent intent = Intent.CREATOR.createFromParcel(data);
220 scheduleReceiver(intent, info, compatInfo, resultCode, resultData,
238 Intent intent = Intent.CREATOR.createFromParcel(data);
241 scheduleBindService(token, intent, rebind, processState);
248 Intent intent = Intent.CREATOR.createFromParcel(data);
249 scheduleUnbindService(token, intent);
396 Intent intent = Intent.CREATOR.createFromParcel(data);
404 scheduleRegisteredReceiver(receiver, intent,
849 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, Configuration overrideConfig, CompatibilityInfo compatInfo, String referrer, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<ReferrerIntent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
937 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String resultData, Bundle map, boolean sync, int sendingUser, int processState) argument
997 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
1010 scheduleUnbindService(IBinder token, Intent intent) argument
1187 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
[all...]
H A DContextImpl.java766 public void startActivity(Intent intent) { argument
768 startActivity(intent, null);
773 public void startActivityAsUser(Intent intent, UserHandle user) { argument
774 startActivityAsUser(intent, null, user);
778 public void startActivity(Intent intent, Bundle options) { argument
784 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0
793 (Activity) null, intent, -1, options);
798 public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) { argument
801 mMainThread.getApplicationThread(), getBasePackageName(), intent,
802 intent
845 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
852 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
876 sendBroadcast(Intent intent) argument
891 sendBroadcast(Intent intent, String receiverPermission) argument
908 sendBroadcastMultiplePermissions(Intent intent, String[] receiverPermissions) argument
923 sendBroadcast(Intent intent, String receiverPermission, Bundle options) argument
940 sendBroadcast(Intent intent, String receiverPermission, int appOp) argument
957 sendOrderedBroadcast(Intent intent, String receiverPermission) argument
974 sendOrderedBroadcast(Intent intent, String receiverPermission, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
983 sendOrderedBroadcast(Intent intent, String receiverPermission, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
992 sendOrderedBroadcast(Intent intent, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1000 sendOrderedBroadcast(Intent intent, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras, Bundle options) argument
1037 sendBroadcastAsUser(Intent intent, UserHandle user) argument
1050 sendBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission) argument
1056 sendBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp) argument
1073 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1081 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1089 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1125 sendStickyBroadcast(Intent intent) argument
1141 sendStickyOrderedBroadcast(Intent intent, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1177 removeStickyBroadcast(Intent intent) argument
1194 sendStickyBroadcastAsUser(Intent intent, UserHandle user) argument
1209 sendStickyBroadcastAsUser(Intent intent, UserHandle user, Bundle options) argument
1224 sendStickyOrderedBroadcastAsUser(Intent intent, UserHandle user, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1259 removeStickyBroadcastAsUser(Intent intent, UserHandle user) argument
[all...]
H A DDownloadManager.java284 * Broadcast intent action sent by the download manager when a download completes.
287 public final static String ACTION_DOWNLOAD_COMPLETE = "android.intent.action.DOWNLOAD_COMPLETE";
290 * Broadcast intent action sent by the download manager when the user clicks on a running
295 "android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED";
301 public final static String ACTION_VIEW_DOWNLOADS = "android.intent.action.VIEW_DOWNLOADS";
1255 Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
1256 intent.setData(Uri.fromFile(after));
1257 context.sendBroadcast(intent);
H A DEphemeralResolverService.java63 public final IBinder onBind(Intent intent) { argument
H A DFragment.java1106 * @param intent The intent to start.
1108 public void startActivity(Intent intent) { argument
1109 startActivity(intent, null);
1116 * @param intent The intent to start.
1121 public void startActivity(Intent intent, Bundle options) { argument
1126 mHost.onStartActivityFromFragment(this, intent, -1, options);
1130 mHost.onStartActivityFromFragment(this, intent, -1, null /*options*/);
1138 public void startActivityForResult(Intent intent, in argument
1146 startActivityForResult(Intent intent, int requestCode, Bundle options) argument
1157 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
[all...]
H A DFragmentHostCallback.java125 public void onStartActivityFromFragment(Fragment fragment, Intent intent, int requestCode, argument
131 mContext.startActivity(intent);
138 public void onStartIntentSenderFromFragment(Fragment fragment, IntentSender intent, argument
143 "Starting intent sender with a requestCode requires a FragmentActivity host");
145 mContext.startIntentSender(intent, fillInIntent, flagsMask, flagsValues, extraFlags,
H A DIActivityContainer.aidl30 int startActivity(in Intent intent);
H A DIActivityController.aidl33 boolean activityStarting(in Intent intent, String pkg);
H A DIActivityManager.java70 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent, argument
73 public int startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, argument
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,
89 IntentSender intent, Intent fillInIntent, String resolvedType,
93 Intent intent, String resolvedType, IVoiceInteractionSession session,
97 Intent intent, Bundle options) throws RemoteException;
112 public int broadcastIntent(IApplicationThread caller, Intent intent, argument
116 public void unbroadcastIntent(IApplicationThread caller, Intent intent, in 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
92 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
96 startNextMatchingActivity(IBinder callingActivity, Intent intent, Bundle options) argument
135 addAppTask(IBinder activityToken, Intent intent, ActivityManager.TaskDescription description, Bitmap thumbnail) argument
243 publishService(IBinder token, Intent intent, IBinder service) argument
533 launchAssistIntent(Intent intent, int requestType, String hint, int userHandle, Bundle args) argument
655 startConfirmDeviceCredentialIntent(Intent intent) argument
657 sendIntentSender(IIntentSender target, int code, Intent intent, String resolvedType, IIntentReceiver finishedReceiver, String requiredPermission, Bundle options) argument
684 canBypassWorkChallenge(PendingIntent intent) argument
[all...]

Completed in 1875 milliseconds

1234567891011>>