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

1234567891011>>

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.cpp1902 camera_metadata_entry_t intent =
1905 if (intent.count == 0) return BAD_VALUE;
1907 if (intent.data.u8[0] == ANDROID_CONTROL_CAPTURE_INTENT_STILL_CAPTURE) {
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java129 " am to-intent-uri [INTENT]\n" +
230 "am to-intent-uri: print the given Intent specification as an intent: URI.\n" +
341 } else if (op.equals("to-intent-uri")) {
373 Intent intent = new Intent();
374 Intent baseIntent = intent;
391 intent.setAction(nextArgRequired());
392 if (intent == baseIntent) {
397 if (intent == baseIntent) {
402 if (intent
1208 activityStarting(Intent intent, String pkg) argument
1546 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.java1685 public int send(int code, Intent intent, String resolvedType,
1688 mResult.offer(intent, 5, TimeUnit.SECONDS);
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java65 * {@link android.content.Intent}. Failure to declare this intent will cause the system to
69 * can bind to it. Failure to declare this intent will cause the system to ignore the
74 * <intent-filter>
76 * </intent-filter>
93 * <intent-filter>
95 * </intent-filter>
619 public final IBinder onBind(Intent intent) { argument
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java184 public static final String KEY_INTENT = "intent";
1603 // the STORAGE_OK intent will re-trigger the update.
1706 Intent intent = bundle.getParcelable(KEY_INTENT);
1707 if (intent != null && mActivity != null) {
1710 mActivity.startActivity(intent);
1983 Intent intent = new Intent();
1987 intent.setClassName(componentName.getPackageName(),
1989 intent.putExtra(KEY_ACCOUNTS, accounts);
1990 intent.putExtra(KEY_ACCOUNT_MANAGER_RESPONSE,
1992 mActivity.startActivity(intent);
[all...]
H A DChooseTypeAndAccountActivity.java160 final Intent intent = getIntent();
177 // If the selected account as specified in the intent matches one in the list we will
179 Account selectedAccount = (Account) intent.getParcelableExtra(EXTRA_SELECTED_ACCOUNT);
190 mSetOfAllowableAccounts = getAllowableAccountSet(intent);
191 mSetOfRelevantAccountTypes = getReleventAccountTypes(intent);
192 mAlwaysPromptForAccount = intent.getBooleanExtra(EXTRA_ALWAYS_PROMPT_FOR_ACCOUNT, false);
193 mDescriptionOverride = intent.getStringExtra(EXTRA_DESCRIPTION_TEXT_OVERRIDE);
389 final Intent intent = (Intent)accountManagerResult.getParcelable(
391 if (intent != null) {
395 intent
509 getReleventAccountTypes(final Intent intent) argument
531 getAllowableAccountSet(final Intent intent) argument
[all...]
H A DGrantCredentialsPermissionActivity.java184 Intent intent = getIntent();
185 AccountAuthenticatorResponse response = intent.getParcelableExtra(EXTRAS_RESPONSE);
/frameworks/base/core/java/android/app/
H A DActivity.java237 * intent is delivered -- so the code in these methods should be fairly
799 /** Return the intent that started this activity. */
805 * Change the intent returned by {@link #getIntent}. This holds a
806 * reference to the given intent; it does not copy it. Often used in
1273 * <p>An activity will always be paused before receiving a new intent, so
1279 * @param intent The new intent that was started for the activity.
1285 protected void onNewIntent(Intent intent) { argument
2402 Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + str));
2403 intent
3696 startActivityForResult(Intent intent, int requestCode) argument
3734 startActivityForResult(Intent intent, int requestCode, @Nullable Bundle options) argument
3778 startActivityForResultAsUser(Intent intent, int requestCode, UserHandle user) argument
3785 startActivityForResultAsUser(Intent intent, int requestCode, @Nullable Bundle options, UserHandle user) argument
3820 startActivityAsUser(Intent intent, UserHandle user) argument
3827 startActivityAsUser(Intent intent, Bundle options, UserHandle user) argument
3850 startActivityAsCaller(Intent intent, @Nullable Bundle options, int userId) argument
3880 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
3912 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
3929 startIntentSenderForResultInner(IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, Activity activity, Bundle options) argument
3974 startActivity(Intent intent) argument
4001 startActivity(Intent intent, @Nullable Bundle options) argument
4068 startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4095 startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
4124 startActivityIfNeeded(@onNull Intent intent, int requestCode) argument
4158 startActivityIfNeeded(@onNull Intent intent, int requestCode, @Nullable Bundle options) argument
4207 startNextMatchingActivity(@onNull Intent intent) argument
4230 startNextMatchingActivity(@onNull Intent intent, @Nullable Bundle options) argument
4260 startActivityFromChild(@onNull Activity child, Intent intent, int requestCode) argument
4284 startActivityFromChild(@onNull Activity child, Intent intent, int requestCode, @Nullable Bundle options) argument
4310 startActivityFromFragment(@onNull Fragment fragment, Intent intent, int requestCode) argument
4335 startActivityFromFragment(@onNull Fragment fragment, Intent intent, int requestCode, @Nullable Bundle options) argument
4355 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4369 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) argument
5866 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, IVoiceInteractor voiceInteractor) argument
[all...]
H A DActivityManager.java210 * a sticky intent without appropriate permission.
1143 * @param intent The Intent that describes the recents entry. This is the same Intent that
1159 public int addAppTask(@NonNull Activity activity, @NonNull Intent intent, argument
1196 intent, description, thumbnail);
2756 * this task be brought to the foreground and a new intent delivered to the top
2763 * @param intent The Intent describing the new activity to be launched on the task.
2768 public void startActivity(Context context, Intent intent, Bundle options) { argument
2771 thread.getApplicationThread(), mAppTaskImpl, intent, options);
H A DActivityManagerNative.java100 static public void broadcastStickyIntent(Intent intent, String permission, int userId) { argument
103 null, intent, null, null, Activity.RESULT_OK, null, null,
130 Intent intent = Intent.CREATOR.createFromParcel(data);
140 int result = startActivity(app, callingPackage, intent, resolvedType,
153 Intent intent = Intent.CREATOR.createFromParcel(data);
164 int result = startActivityAsUser(app, callingPackage, intent, resolvedType,
177 Intent intent = Intent.CREATOR.createFromParcel(data);
188 int result = startActivityAsCaller(app, callingPackage, intent, resolvedType,
201 Intent intent = Intent.CREATOR.createFromParcel(data);
212 WaitResult result = startActivityAndWait(app, callingPackage, intent, resolvedTyp
2368 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options) argument
2402 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2437 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2471 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2506 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle options, int userId) argument
2536 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
2570 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2605 startNextMatchingActivity(IBinder callingActivity, Intent intent, Bundle options) argument
2768 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, int appOp, boolean serialized, boolean sticky, int userId) argument
2796 unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) argument
2961 addAppTask(IBinder activityToken, Intent intent, ActivityManager.TaskDescription description, Bitmap thumbnail) argument
3490 publishService(IBinder token, Intent intent, IBinder service) argument
3504 unbindFinished(IBinder token, Intent intent, boolean doRebind) argument
5056 launchAssistIntent(Intent intent, int requestType, String hint, int userHandle) argument
[all...]
H A DActivityThread.java270 Intent intent; field in class:ActivityThread.ActivityClientRecord
325 ComponentName componentName = intent != null ? intent.getComponent() : null;
359 public ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, argument
363 this.intent = intent;
366 Intent intent; field in class:ActivityThread.ReceiverData
370 return "ReceiverData{intent=" + intent + " packageName=" +
392 Intent intent; field in class:ActivityThread.CreateServiceData
402 Intent intent; field in class:ActivityThread.BindServiceData
606 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
660 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
701 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
715 scheduleUnbindService(IBinder token, Intent intent) argument
859 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
2087 resolveActivityInfo(Intent intent) argument
2098 startActivityNow(Activity parent, String id, Intent intent, ActivityInfo activityInfo, IBinder token, Bundle state, Activity.NonConfigurationInstances lastNonConfigurationInstances) argument
3682 safeToComponentShortString(Intent intent) argument
[all...]
H A DActivityView.java166 public void startActivity(Intent intent) { argument
170 if (DEBUG) Log.v(TAG, "startActivity(): intent=" + intent + " " +
173 mActivityContainer.startActivity(intent);
175 mActivityContainer.checkEmbeddedAllowed(intent);
176 mQueuedIntent = intent;
248 mQueuedPendingIntent != null ? "" : "no") + " queued intent");
377 int startActivity(Intent intent) { argument
379 return mIActivityContainer.startActivity(intent);
394 void checkEmbeddedAllowed(Intent intent) { argument
[all...]
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.java212 Intent intent = new Intent(Intent.ACTION_APP_ERROR);
213 intent.setPackage(receiverPackage);
214 ResolveInfo info = pm.resolveActivity(intent, 0);
H A DApplicationPackageManager.java147 // reuse the intent instance
156 Intent intent = new Intent(intentToResolve);
157 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
158 intent.setClassName(ris.get(0).activityInfo.packageName,
160 return intent;
174 Intent intent = new Intent(intentToResolve);
175 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
176 intent.setClassName(ris.get(0).activityInfo.packageName,
178 return intent;
537 public ResolveInfo resolveActivity(Intent intent, in argument
542 resolveActivityAsUser(Intent intent, int flags, int userId) argument
555 queryIntentActivities(Intent intent, int flags) argument
562 queryIntentActivitiesAsUser(Intent intent, int flags, int userId) argument
576 queryIntentActivityOptions( ComponentName caller, Intent[] specifics, Intent intent, int flags) argument
611 queryBroadcastReceivers(Intent intent, int flags, int userId) argument
624 queryBroadcastReceivers(Intent intent, int flags) argument
629 resolveService(Intent intent, int flags) argument
642 queryIntentServicesAsUser(Intent intent, int flags, int userId) argument
655 queryIntentServices(Intent intent, int flags) argument
660 queryIntentContentProvidersAsUser( Intent intent, int flags, int userId) argument
671 queryIntentContentProviders(Intent intent, int flags) argument
779 getActivityIcon(Intent intent) argument
815 getActivityBanner(Intent intent) argument
848 getActivityLogo(Intent intent) argument
[all...]
H A DApplicationThreadNative.java137 Intent intent = Intent.CREATOR.createFromParcel(data);
154 scheduleLaunchActivity(intent, b, ident, info, curConfig, compatInfo, voiceInteractor,
197 Intent intent = Intent.CREATOR.createFromParcel(data);
206 scheduleReceiver(intent, info, compatInfo, resultCode, resultData,
224 Intent intent = Intent.CREATOR.createFromParcel(data);
227 scheduleBindService(token, intent, rebind, processState);
234 Intent intent = Intent.CREATOR.createFromParcel(data);
235 scheduleUnbindService(token, intent);
380 Intent intent = Intent.CREATOR.createFromParcel(data);
388 scheduleRegisteredReceiver(receiver, intent,
765 scheduleLaunchActivity(Intent intent, IBinder token, int ident, ActivityInfo info, Configuration curConfig, CompatibilityInfo compatInfo, IVoiceInteractor voiceInteractor, int procState, Bundle state, PersistableBundle persistentState, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, boolean notResumed, boolean isForward, ProfilerInfo profilerInfo) argument
843 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String resultData, Bundle map, boolean sync, int sendingUser, int processState) argument
898 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
911 scheduleUnbindService(IBinder token, Intent intent) argument
1075 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
[all...]
H A DContextImpl.java1217 public void startActivity(Intent intent) { argument
1219 startActivity(intent, null);
1224 public void startActivityAsUser(Intent intent, UserHandle user) { argument
1225 startActivityAsUser(intent, null, user);
1229 public void startActivity(Intent intent, Bundle options) { argument
1231 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
1239 (Activity)null, intent, -1, options);
1244 public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) { argument
1247 mMainThread.getApplicationThread(), getBasePackageName(), intent,
1248 intent
1290 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
1297 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
1320 sendBroadcast(Intent intent) argument
1334 sendBroadcast(Intent intent, String receiverPermission) argument
1348 sendBroadcast(Intent intent, String receiverPermission, int appOp) argument
1362 sendOrderedBroadcast(Intent intent, String receiverPermission) argument
1377 sendOrderedBroadcast(Intent intent, String receiverPermission, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1386 sendOrderedBroadcast(Intent intent, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1420 sendBroadcastAsUser(Intent intent, UserHandle user) argument
1432 sendBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission) argument
1446 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1454 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1487 sendStickyBroadcast(Intent intent) argument
1501 sendStickyOrderedBroadcast(Intent intent, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1535 removeStickyBroadcast(Intent intent) argument
1550 sendStickyBroadcastAsUser(Intent intent, UserHandle user) argument
1562 sendStickyOrderedBroadcastAsUser(Intent intent, UserHandle user, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1595 removeStickyBroadcastAsUser(Intent intent, UserHandle user) argument
[all...]
H A DFragment.java1051 * @param intent The intent to start.
1053 public void startActivity(Intent intent) { argument
1054 startActivity(intent, null);
1061 * @param intent The intent to start.
1066 public void startActivity(Intent intent, Bundle options) { argument
1071 mActivity.startActivityFromFragment(this, intent, -1, options);
1075 mActivity.startActivityFromFragment(this, intent, -1);
1083 public void startActivityForResult(Intent intent, in argument
1091 startActivityForResult(Intent intent, int requestCode, Bundle options) argument
[all...]
H A DIActivityContainer.aidl30 int startActivity(in Intent intent);
32 void checkEmbeddedAllowed(in Intent intent);
H A DIActivityController.aidl33 boolean activityStarting(in Intent intent, String pkg);
H A DIActivityManager.java64 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent, argument
67 public int startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, argument
71 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
74 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
78 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
82 IntentSender intent, Intent fillInIntent, String resolvedType,
86 Intent intent, String resolvedType, IVoiceInteractionSession session,
90 Intent intent, Bundle options) throws RemoteException;
104 public int broadcastIntent(IApplicationThread caller, Intent intent, argument
108 public void unbroadcastIntent(IApplicationThread caller, Intent intent, in argument
70 startActivityAsCaller(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
73 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
77 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration newConfig, Bundle options, int userId) argument
81 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
85 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
89 startNextMatchingActivity(IBinder callingActivity, Intent intent, Bundle options) argument
122 addAppTask(IBinder activityToken, Intent intent, ActivityManager.TaskDescription description, Bitmap thumbnail) argument
169 publishService(IBinder token, Intent intent, IBinder service) argument
420 launchAssistIntent(Intent intent, int requestType, String hint, int userHandle) argument
[all...]
H A DIAppTask.aidl29 in Intent intent, String resolvedType, in Bundle options);
H A DIApplicationThread.java60 void scheduleLaunchActivity(Intent intent, IBinder token, int ident, argument
69 void scheduleNewIntent(List<Intent> intent, IBinder token) throws RemoteException; argument
72 void scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, argument
86 Intent intent, boolean rebind, int processState) throws RemoteException;
88 Intent intent) throws RemoteException;
113 void scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, argument
85 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
87 scheduleUnbindService(IBinder token, Intent intent) argument
H A DInstrumentation.java370 * @param intent Description of the activity to start.
374 public Activity startActivitySync(Intent intent) { argument
378 intent = new Intent(intent);
380 ActivityInfo ai = intent.resolveActivityInfo(
383 throw new RuntimeException("Unable to resolve activity for: " + intent);
387 // todo: if this intent is ambiguous, look here to see if
391 + ai.processName + ": " + intent);
394 intent.setComponent(new ComponentName(
396 final ActivityWaiter aw = new ActivityWaiter(intent);
568 match(Context who, Activity activity, Intent intent) argument
1035 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
1061 newActivity(ClassLoader cl, String className, Intent intent) argument
1209 callActivityOnNewIntent(Activity activity, Intent intent) argument
1458 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options) argument
1575 execStartActivity( Context who, IBinder contextThread, IBinder token, Fragment target, Intent intent, int requestCode, Bundle options) argument
1635 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, UserHandle user) argument
1672 execStartActivityAsCaller( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, int userId) argument
1709 execStartActivityFromAppTask( Context who, IBinder contextThread, IAppTask appTask, Intent intent, Bundle options) argument
1752 checkStartActivityResult(int res, Object intent) argument
1875 public final Intent intent; field in class:Instrumentation.ActivityWaiter
[all...]
H A DIntentService.java81 * Sets intent redelivery preferences. Usually called from the constructor
88 * and the intent redelivered. If multiple Intents have been sent, only
115 public void onStart(Intent intent, int startId) { argument
118 msg.obj = intent;
129 public int onStartCommand(Intent intent, int flags, int startId) { argument
130 onStart(intent, startId);
145 public IBinder onBind(Intent intent) { argument
158 * @param intent The value passed to {@link
161 protected abstract void onHandleIntent(Intent intent); argument

Completed in 388 milliseconds

1234567891011>>