Home
last modified time | relevance | path

Searched refs:ACTION_PACKAGE_UNSTOPPED (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/controllers/
DBackgroundJobsController.java111 case Intent.ACTION_PACKAGE_UNSTOPPED: {
138 filter.addAction(Intent.ACTION_PACKAGE_UNSTOPPED); in startTrackingLocked()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/job/controllers/
DBackgroundJobsControllerTest.java145 && filter.hasAction(Intent.ACTION_PACKAGE_UNSTOPPED)), in setUp()
181 stopped ? Intent.ACTION_PACKAGE_RESTARTED : Intent.ACTION_PACKAGE_UNSTOPPED); in sendPackageStoppedBroadcast()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageMonitorCallbackHelper.java197 || TextUtils.equals(action, Intent.ACTION_PACKAGE_UNSTOPPED); in isAllowedCallbackAction()
DPackageManagerService.java4677 mBroadcastHelper.sendPackageBroadcast(Intent.ACTION_PACKAGE_UNSTOPPED,
4683 mPackageMonitorCallbackHelper.notifyPackageMonitor(Intent.ACTION_PACKAGE_UNSTOPPED,
/frameworks/base/core/java/com/android/internal/content/
DPackageMonitor.java582 } else if (Intent.ACTION_PACKAGE_UNSTOPPED.equals(action)) { in doHandlePackageEvent()
/frameworks/base/core/tests/packagemonitortests/src/com/android/internal/content/
DPackageMonitorTest.java227 Intent intent = new Intent(Intent.ACTION_PACKAGE_UNSTOPPED); in testPackageMonitorDoHandlePackageEventPackageUnstopped()
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java234 case Intent.ACTION_PACKAGE_UNSTOPPED:
407 packageFilter.addAction(Intent.ACTION_PACKAGE_UNSTOPPED); in registerBroadcastReceiver()
/frameworks/base/core/api/
Dlint-baseline.txt116 BroadcastBehavior: android.content.Intent#ACTION_PACKAGE_UNSTOPPED:
117 Field 'ACTION_PACKAGE_UNSTOPPED' is missing @BroadcastBehavior
Dmodule-lib-lint-baseline.txt136 BroadcastBehavior: android.content.Intent#ACTION_PACKAGE_UNSTOPPED:
137 Field 'ACTION_PACKAGE_UNSTOPPED' is missing @BroadcastBehavior
Dtest-lint-baseline.txt140 BroadcastBehavior: android.content.Intent#ACTION_PACKAGE_UNSTOPPED:
141 Field 'ACTION_PACKAGE_UNSTOPPED' is missing @BroadcastBehavior
Dsystem-lint-baseline.txt140 BroadcastBehavior: android.content.Intent#ACTION_PACKAGE_UNSTOPPED:
141 Field 'ACTION_PACKAGE_UNSTOPPED' is missing @BroadcastBehavior
Dcurrent.txt11235 …i("android.content.pm.stay_stopped") public static final String ACTION_PACKAGE_UNSTOPPED = "androi…
/frameworks/base/core/java/android/content/
DIntent.java2832 public static final String ACTION_PACKAGE_UNSTOPPED = "android.intent.action.PACKAGE_UNSTOPPED"; field in Intent