Searched defs:intent (Results 1 - 25 of 405) sorted by path

1234567891011>>

/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java133 " am to-intent-uri [INTENT]\n" +
249 "am to-intent-uri: print the given Intent specification as an intent: URI.\n" +
402 } else if (op.equals("to-intent-uri")) {
442 Intent intent = new Intent();
443 Intent baseIntent = intent;
460 intent.setAction(nextArgRequired());
461 if (intent == baseIntent) {
466 if (intent == baseIntent) {
471 if (intent
1404 activityStarting(Intent intent, String pkg) argument
1752 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
[all...]
/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.java69 * {@link android.content.Intent}. Failure to declare this intent will cause the system to
73 * can bind to it. Failure to declare this intent will cause the system to ignore the
78 * <intent-filter>
80 * </intent-filter>
97 * <intent-filter>
99 * </intent-filter>
644 public final IBinder onBind(Intent intent) { argument
/frameworks/base/core/java/android/accounts/
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...]
/frameworks/base/core/java/android/app/
H A DActivity.java247 * intent is delivered -- so the code in these methods should be fairly
800 /** Return the intent that started this activity. */
806 * Change the intent returned by {@link #getIntent}. This holds a
807 * reference to the given intent; it does not copy it. Often used in
1274 * <p>An activity will always be paused before receiving a new intent, so
1280 * @param intent The new intent that was started for the activity.
1286 protected void onNewIntent(Intent intent) { argument
1560 * <p>Custom implementation may adjust the content intent to better reflect the top-level
1564 * modify the intent t
3876 startActivityForResult(Intent intent, int requestCode) argument
3914 startActivityForResult(Intent intent, int requestCode, @Nullable Bundle options) argument
3967 startActivityForResultAsUser(Intent intent, int requestCode, UserHandle user) argument
3974 startActivityForResultAsUser(Intent intent, int requestCode, @Nullable Bundle options, UserHandle user) argument
4003 startActivityAsUser(Intent intent, UserHandle user) argument
4010 startActivityAsUser(Intent intent, Bundle options, UserHandle user) argument
4041 startActivityAsCaller(Intent intent, @Nullable Bundle options, boolean ignoreTargetSecurity, int userId) argument
4073 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4105 startIntentSenderForResult(IntentSender intent, int requestCode, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
4122 startIntentSenderForResultInner(IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, Activity activity, Bundle options) argument
4167 startActivity(Intent intent) argument
4194 startActivity(Intent intent, @Nullable Bundle options) argument
4261 startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4288 startIntentSender(IntentSender intent, @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
4317 startActivityIfNeeded(@onNull Intent intent, int requestCode) argument
4351 startActivityIfNeeded(@onNull Intent intent, int requestCode, @Nullable Bundle options) argument
4404 startNextMatchingActivity(@onNull Intent intent) argument
4427 startNextMatchingActivity(@onNull Intent intent, @Nullable Bundle options) argument
4457 startActivityFromChild(@onNull Activity child, Intent intent, int requestCode) argument
4481 startActivityFromChild(@onNull Activity child, Intent intent, int requestCode, @Nullable Bundle options) argument
4508 startActivityFromFragment(@onNull Fragment fragment, Intent intent, int requestCode) argument
4533 startActivityFromFragment(@onNull Fragment fragment, Intent intent, int requestCode, @Nullable Bundle options) argument
4542 startActivityForResult( String who, Intent intent, int requestCode, @Nullable Bundle options) argument
4572 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
4586 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, @Nullable Bundle options) argument
6169 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) argument
6607 onStartActivityFromFragment(Fragment fragment, Intent intent, int requestCode, Bundle options) argument
[all...]
H A DActivityManager.java220 * a sticky intent without appropriate permission.
1216 * @param intent The Intent that describes the recents entry. This is the same Intent that
1232 public int addAppTask(@NonNull Activity activity, @NonNull Intent intent, argument
1269 intent, description, thumbnail);
2958 * this task be brought to the foreground and a new intent delivered to the top
2965 * @param intent The Intent describing the new activity to be launched on the task.
2970 public void startActivity(Context context, Intent intent, Bundle options) { argument
2973 thread.getApplicationThread(), mAppTaskImpl, intent, options);
H A DActivityManagerNative.java98 static public void broadcastStickyIntent(Intent intent, String permission, int userId) { argument
99 broadcastStickyIntent(intent, permission, AppOpsManager.OP_NONE, userId);
106 static public void broadcastStickyIntent(Intent intent, String permission, int appOp, argument
110 null, intent, null, null, Activity.RESULT_OK, null, null,
152 Intent intent = Intent.CREATOR.createFromParcel(data);
162 int result = startActivity(app, callingPackage, intent, resolvedType,
175 Intent intent = Intent.CREATOR.createFromParcel(data);
186 int result = startActivityAsUser(app, callingPackage, intent, resolvedType,
199 Intent intent = Intent.CREATOR.createFromParcel(data);
211 int result = startActivityAsCaller(app, callingPackage, intent, resolvedTyp
2631 startActivity(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options) argument
2665 startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2700 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
2736 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2771 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration config, Bundle options, int userId) argument
2801 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
2835 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
2870 startNextMatchingActivity(IBinder callingActivity, Intent intent, Bundle options) argument
3033 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
3062 unbroadcastIntent(IApplicationThread caller, Intent intent, int userId) argument
3229 addAppTask(IBinder activityToken, Intent intent, ActivityManager.TaskDescription description, Bitmap thumbnail) argument
3775 publishService(IBinder token, Intent intent, IBinder service) argument
3789 unbindFinished(IBinder token, Intent intent, boolean doRebind) argument
5439 launchAssistIntent(Intent intent, int requestType, String hint, int userHandle, Bundle args) argument
[all...]
H A DActivityThread.java282 Intent intent; field in class:ActivityThread.ActivityClientRecord
341 ComponentName componentName = intent != null ? intent.getComponent() : null;
375 public ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, argument
378 token, sendingUser, intent.getFlags());
379 this.intent = intent;
382 Intent intent; field in class:ActivityThread.ReceiverData
386 return "ReceiverData{intent=" + intent
408 Intent intent; field in class:ActivityThread.CreateServiceData
418 Intent intent; field in class:ActivityThread.BindServiceData
630 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
688 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String data, Bundle extras, boolean sync, int sendingUser, int processState) argument
729 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
743 scheduleUnbindService(IBinder token, Intent intent) argument
893 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
2205 resolveActivityInfo(Intent intent) argument
2216 startActivityNow(Activity parent, String id, Intent intent, ActivityInfo activityInfo, IBinder token, Bundle state, Activity.NonConfigurationInstances lastNonConfigurationInstances) argument
3842 safeToComponentShortString(Intent intent) argument
[all...]
H A DActivityView.java182 public void startActivity(Intent intent) { argument
189 if (DEBUG) Log.v(TAG, "startActivity(): intent=" + intent + " " +
191 if (mActivityContainer.startActivity(intent) == START_CANCELED) {
409 int startActivity(Intent intent) { argument
411 return mIActivityContainer.startActivity(intent);
H A DApplicationPackageManager.java170 // reuse the intent instance
179 Intent intent = new Intent(intentToResolve);
180 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
181 intent.setClassName(ris.get(0).activityInfo.packageName,
183 return intent;
197 Intent intent = new Intent(intentToResolve);
198 intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
199 intent.setClassName(ris.get(0).activityInfo.packageName,
201 return intent;
623 public ResolveInfo resolveActivity(Intent intent, in argument
628 resolveActivityAsUser(Intent intent, int flags, int userId) argument
641 queryIntentActivities(Intent intent, int flags) argument
648 queryIntentActivitiesAsUser(Intent intent, int flags, int userId) argument
662 queryIntentActivityOptions( ComponentName caller, Intent[] specifics, Intent intent, int flags) argument
697 queryBroadcastReceivers(Intent intent, int flags, int userId) argument
710 queryBroadcastReceivers(Intent intent, int flags) argument
715 resolveService(Intent intent, int flags) argument
728 queryIntentServicesAsUser(Intent intent, int flags, int userId) argument
741 queryIntentServices(Intent intent, int flags) argument
746 queryIntentContentProvidersAsUser( Intent intent, int flags, int userId) argument
757 queryIntentContentProviders(Intent intent, int flags) argument
880 getActivityIcon(Intent intent) argument
916 getActivityBanner(Intent intent) argument
949 getActivityLogo(Intent intent) argument
[all...]
H A DApplicationThreadNative.java141 Intent intent = Intent.CREATOR.createFromParcel(data);
163 scheduleLaunchActivity(intent, b, ident, info, curConfig, overrideConfig, compatInfo,
208 Intent intent = Intent.CREATOR.createFromParcel(data);
217 scheduleReceiver(intent, info, compatInfo, resultCode, resultData,
235 Intent intent = Intent.CREATOR.createFromParcel(data);
238 scheduleBindService(token, intent, rebind, processState);
245 Intent intent = Intent.CREATOR.createFromParcel(data);
246 scheduleUnbindService(token, intent);
391 Intent intent = Intent.CREATOR.createFromParcel(data);
399 scheduleRegisteredReceiver(receiver, intent,
791 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
877 scheduleReceiver(Intent intent, ActivityInfo info, CompatibilityInfo compatInfo, int resultCode, String resultData, Bundle map, boolean sync, int sendingUser, int processState) argument
937 scheduleBindService(IBinder token, Intent intent, boolean rebind, int processState) argument
950 scheduleUnbindService(IBinder token, Intent intent) argument
1114 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
[all...]
H A DContextImpl.java657 public void startActivity(Intent intent) { argument
659 startActivity(intent, null);
664 public void startActivityAsUser(Intent intent, UserHandle user) { argument
665 startActivityAsUser(intent, null, user);
669 public void startActivity(Intent intent, Bundle options) { argument
671 if ((intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) == 0) {
679 (Activity) null, intent, -1, options);
684 public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) { argument
687 mMainThread.getApplicationThread(), getBasePackageName(), intent,
688 intent
731 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
738 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
762 sendBroadcast(Intent intent) argument
777 sendBroadcast(Intent intent, String receiverPermission) argument
794 sendBroadcastMultiplePermissions(Intent intent, String[] receiverPermissions) argument
809 sendBroadcast(Intent intent, String receiverPermission, Bundle options) argument
826 sendBroadcast(Intent intent, String receiverPermission, int appOp) argument
843 sendOrderedBroadcast(Intent intent, String receiverPermission) argument
860 sendOrderedBroadcast(Intent intent, String receiverPermission, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
869 sendOrderedBroadcast(Intent intent, String receiverPermission, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
878 sendOrderedBroadcast(Intent intent, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
886 sendOrderedBroadcast(Intent intent, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras, Bundle options) argument
923 sendBroadcastAsUser(Intent intent, UserHandle user) argument
936 sendBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission) argument
942 sendBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp) argument
959 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
967 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
975 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1011 sendStickyBroadcast(Intent intent) argument
1027 sendStickyOrderedBroadcast(Intent intent, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1063 removeStickyBroadcast(Intent intent) argument
1080 sendStickyBroadcastAsUser(Intent intent, UserHandle user) argument
1094 sendStickyOrderedBroadcastAsUser(Intent intent, UserHandle user, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
1129 removeStickyBroadcastAsUser(Intent intent, UserHandle user) argument
[all...]
H A DFragment.java1068 * @param intent The intent to start.
1070 public void startActivity(Intent intent) { argument
1071 startActivity(intent, null);
1078 * @param intent The intent to start.
1083 public void startActivity(Intent intent, Bundle options) { argument
1088 mHost.onStartActivityFromFragment(this, intent, -1, options);
1092 mHost.onStartActivityFromFragment(this, intent, -1, null /*options*/);
1100 public void startActivityForResult(Intent intent, in argument
1108 startActivityForResult(Intent intent, int requestCode, Bundle options) argument
[all...]
H A DFragmentHostCallback.java119 public void onStartActivityFromFragment(Fragment fragment, Intent intent, int requestCode, argument
125 mContext.startActivity(intent);
H A DIActivityManager.java67 public int startActivity(IApplicationThread caller, String callingPackage, Intent intent, argument
70 public int startActivityAsUser(IApplicationThread caller, String callingPackage, Intent intent, argument
74 Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode,
78 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
82 Intent intent, String resolvedType, IBinder resultTo, String resultWho,
86 IntentSender intent, Intent fillInIntent, String resolvedType,
90 Intent intent, String resolvedType, IVoiceInteractionSession session,
94 Intent intent, Bundle options) throws RemoteException;
108 public int broadcastIntent(IApplicationThread caller, Intent intent, argument
112 public void unbroadcastIntent(IApplicationThread caller, Intent intent, in argument
73 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
77 startActivityAndWait(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
81 startActivityWithConfig(IApplicationThread caller, String callingPackage, Intent intent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int startFlags, Configuration newConfig, Bundle options, int userId) argument
85 startActivityIntentSender(IApplicationThread caller, IntentSender intent, Intent fillInIntent, String resolvedType, IBinder resultTo, String resultWho, int requestCode, int flagsMask, int flagsValues, Bundle options) argument
89 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
93 startNextMatchingActivity(IBinder callingActivity, Intent intent, Bundle options) argument
127 addAppTask(IBinder activityToken, Intent intent, ActivityManager.TaskDescription description, Bitmap thumbnail) argument
175 publishService(IBinder token, Intent intent, IBinder service) argument
443 launchAssistIntent(Intent intent, int requestType, String hint, int userHandle, Bundle args) argument
[all...]
H A DIApplicationThread.java60 void scheduleLaunchActivity(Intent intent, IBinder token, int ident, argument
69 void scheduleNewIntent(List<ReferrerIntent> 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.java372 * @param intent Description of the activity to start.
376 public Activity startActivitySync(Intent intent) { argument
380 intent = new Intent(intent);
382 ActivityInfo ai = intent.resolveActivityInfo(
385 throw new RuntimeException("Unable to resolve activity for: " + intent);
389 // todo: if this intent is ambiguous, look here to see if
393 + ai.processName + ": " + intent);
396 intent.setComponent(new ComponentName(
398 final ActivityWaiter aw = new ActivityWaiter(intent);
570 match(Context who, Activity activity, Intent intent) argument
1037 newActivity(Class<?> clazz, Context context, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance) argument
1063 newActivity(ClassLoader cl, String className, Intent intent) argument
1211 callActivityOnNewIntent(Activity activity, Intent intent) argument
1218 callActivityOnNewIntent(Activity activity, ReferrerIntent intent) argument
1481 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options) argument
1604 execStartActivity( Context who, IBinder contextThread, IBinder token, String target, Intent intent, int requestCode, Bundle options) argument
1664 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, UserHandle user) argument
1702 execStartActivityAsCaller( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, boolean ignoreTargetSecurity, int userId) argument
1741 execStartActivityFromAppTask( Context who, IBinder contextThread, IAppTask appTask, Intent intent, Bundle options) argument
1785 checkStartActivityResult(int res, Object intent) argument
1917 public final Intent intent; field in class:Instrumentation.ActivityWaiter
[all...]
H A DIntentService.java82 * Sets intent redelivery preferences. Usually called from the constructor
89 * and the intent redelivered. If multiple Intents have been sent, only
116 public void onStart(Intent intent, int startId) { argument
119 msg.obj = intent;
130 public int onStartCommand(Intent intent, int flags, int startId) { argument
131 onStart(intent, startId);
146 public IBinder onBind(Intent intent) { argument
159 * @param intent The value passed to {@link
163 protected abstract void onHandleIntent(Intent intent); argument
H A DLoadedApk.java796 public void performReceive(Intent intent, int resultCode, String data, argument
800 int seq = intent.getIntExtra("seq", -1);
801 Slog.i(ActivityThread.TAG, "Receiving broadcast " + intent.getAction() + " seq=" + seq
805 rd.performReceive(intent, resultCode, data, extras,
819 mgr.finishReceiver(this, resultCode, data, extras, false, intent.getFlags());
841 public Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, argument
845 sticky, mIIntentReceiver.asBinder(), sendingUser, intent.getFlags());
846 mCurIntent = intent;
863 final Intent intent = mCurIntent;
878 intent
956 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
[all...]
H A DLocalActivityManager.java51 intent = _intent;
55 Intent intent; // Which activity to run here. field in class:LocalActivityManager.LocalActivityRecord
132 if (localLOGV) Log.v(TAG, r.id + ": starting " + r.intent);
134 r.activityInfo = mActivityThread.resolveActivityInfo(r.intent);
137 mParent, r.id, r.intent, r.activityInfo, r, r.instanceState, instance);
253 * @param intent The Intent describing the activity to be started
261 public Window startActivity(String id, Intent intent) { argument
276 r = new LocalActivityRecord(id, intent);
278 } else if (r.intent != null) {
279 sameIntent = r.intent
[all...]
H A DNotification.java91 = "android.intent.category.NOTIFICATION_PREFERENCES";
200 * The intent to execute when the expanded status entry is clicked. If
213 * The intent to execute when the notification is explicitly dismissed by the user, either with
222 * An intent to launch instead of posting the notification to the status bar.
226 * launching this intent, while the user is using the device.
874 * full-screen intent when posted.
949 public Action(int icon, CharSequence title, PendingIntent intent) { argument
950 this(Icon.createWithResource("", icon), title, intent, new Bundle(), null);
953 private Action(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, argument
957 this.actionIntent = intent;
1005 Builder(int icon, CharSequence title, PendingIntent intent) argument
1015 Builder(Icon icon, CharSequence title, PendingIntent intent) argument
1029 Builder(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs) argument
2373 setContentIntent(PendingIntent intent) argument
2383 setDeleteIntent(PendingIntent intent) argument
2408 setFullScreenIntent(PendingIntent intent, boolean highPriority) argument
2778 addAction(int icon, CharSequence title, PendingIntent intent) argument
4900 setDisplayIntent(PendingIntent intent) argument
[all...]
H A DPackageDeleteObserver.java26 public void onUserActionRequired(Intent intent) {
27 PackageDeleteObserver.this.onUserActionRequired(intent);
41 public void onUserActionRequired(Intent intent) { argument
H A DPackageInstallObserver.java27 public void onUserActionRequired(Intent intent) {
28 PackageInstallObserver.this.onUserActionRequired(intent);
44 public void onUserActionRequired(Intent intent) { argument
H A DPendingIntent.java138 * extra data in the Intent; by canceling the previous pending intent,
157 * This means that the additional intent argument passed to the send
158 * methods to fill in unpopulated properties of this intent will be
193 * @param intent The original Intent that was sent.
198 void onSendFinished(PendingIntent pendingIntent, Intent intent, argument
226 public void performReceive(Intent intent, int resultCode, String data, argument
228 mIntent = intent;
252 * you supply here should almost always be an <em>explicit intent</em>,
259 * @param intent Intent of the activity to be launched.
264 * of the intent tha
270 getActivity(Context context, int requestCode, Intent intent, @Flags int flags) argument
303 getActivity(Context context, int requestCode, @NonNull Intent intent, @Flags int flags, @Nullable Bundle options) argument
328 getActivityAsUser(Context context, int requestCode, @NonNull Intent intent, int flags, Bundle options, UserHandle user) argument
513 getBroadcast(Context context, int requestCode, Intent intent, @Flags int flags) argument
524 getBroadcastAsUser(Context context, int requestCode, Intent intent, int flags, UserHandle userHandle) argument
567 getService(Context context, int requestCode, @NonNull Intent intent, @Flags int flags) argument
649 send(Context context, int code, @Nullable Intent intent) argument
708 send(Context context, int code, @Nullable Intent intent, @Nullable OnFinished onFinished, @Nullable Handler handler) argument
751 send(Context context, int code, @Nullable Intent intent, @Nullable OnFinished onFinished, @Nullable Handler handler, @Nullable String requiredPermission) argument
798 send(Context context, int code, @Nullable Intent intent, @Nullable OnFinished onFinished, @Nullable Handler handler, @Nullable String requiredPermission, @Nullable Bundle options) argument
[all...]
H A DRemoteInput.java28 * an intent inside a {@link android.app.PendingIntent} that is sent.
37 * with the intent and can be retrieved with the result key (provided to the {@link Builder}
48 * <p>When the {@link android.app.PendingIntent} is fired, the intent inside will contain the
55 * Bundle results = RemoteInput.getResultsFromIntent(intent);
64 /** Extra added to a clip data intent object to hold the results bundle. */
240 * Get the remote input results bundle from an intent. The returned Bundle will
243 * @param intent The intent object that fired in response to an action or content intent
246 public static Bundle getResultsFromIntent(Intent intent) { argument
272 addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) argument
[all...]

Completed in 341 milliseconds

1234567891011>>