Lines Matching refs:intent

31  * class provides a convenience for interpreting the raw intent actions
106 * its intent filter.
210 * specified in the original intent or NFC bump that started the provisioning process
213 * <p>A device admin application which listens to this intent can find out if the device was
266 * <p> If the admin is activated by a device owner, then the intent
272 * @param intent The received intent as per {@link #onReceive}.
274 public void onEnabled(Context context, Intent intent) {
284 * @param intent The received intent as per {@link #onReceive}.
288 public CharSequence onDisableRequested(Context context, Intent intent) {
298 * @param intent The received intent as per {@link #onReceive}.
300 public void onDisabled(Context context, Intent intent) {
310 * @param intent The received intent as per {@link #onReceive}.
312 public void onPasswordChanged(Context context, Intent intent) {
321 * @param intent The received intent as per {@link #onReceive}.
323 public void onPasswordFailed(Context context, Intent intent) {
332 * @param intent The received intent as per {@link #onReceive}.
334 public void onPasswordSucceeded(Context context, Intent intent) {
353 * @param intent The received intent as per {@link #onReceive}.
355 public void onPasswordExpiring(Context context, Intent intent) {
362 * to declare an intent filter for {@link #ACTION_PROFILE_PROVISIONING_COMPLETE}.
364 * of the {@link DevicePolicyManager#ACTION_PROVISION_MANAGED_PROFILE} intent that started the
378 * @param intent The received intent as per {@link #onReceive}.
380 public void onProfileProvisioningComplete(Context context, Intent intent) {
388 * @param intent The received intent as per {@link #onReceive}.
391 public void onLockTaskModeEntering(Context context, Intent intent, String pkg) {
399 * @param intent The received intent as per {@link #onReceive}.
401 public void onLockTaskModeExiting(Context context, Intent intent) {
410 public void onReceive(Context context, Intent intent) {
411 String action = intent.getAction();
414 onPasswordChanged(context, intent);
416 onPasswordFailed(context, intent);
418 onPasswordSucceeded(context, intent);
420 onEnabled(context, intent);
422 CharSequence res = onDisableRequested(context, intent);
428 onDisabled(context, intent);
430 onPasswordExpiring(context, intent);
432 onProfileProvisioningComplete(context, intent);
434 String pkg = intent.getStringExtra(EXTRA_LOCK_TASK_PACKAGE);
435 onLockTaskModeEntering(context, intent, pkg);
437 onLockTaskModeExiting(context, intent);