Searched refs:inactive (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/app/usage/
H A DIUsageStatsManager.aidl33 void setAppInactive(String packageName, boolean inactive, int userId);
H A DUsageStatsManager.java224 * Returns whether the specified app is currently considered inactive. This will be true if the
228 * @return whether the app is currently considered inactive
242 public void setAppInactive(String packageName, boolean inactive) { argument
244 mService.setAppInactive(packageName, inactive, UserHandle.myUserId());
254 * even if the device is in power-save mode or the app is currently considered inactive.
/frameworks/base/core/java/android/app/
H A DLoaderManager.java465 // loader. If there is a previous loader on the inactive list,
666 LoaderInfo inactive = mInactiveLoaders.get(id);
667 if (inactive != null) {
671 // yet destroyed the last inactive loader. So just do
673 if (DEBUG) Log.v(TAG, " Removing last inactive loader: " + info);
674 inactive.mDeliveredData = false;
675 inactive.destroy();
679 // We already have an inactive loader for this ID that we are
709 if (DEBUG) Log.v(TAG, " Making last loader inactive: " + info);
H A DFragmentManager.java1258 final boolean inactive = !fragment.isInBackStack();
1259 if (!fragment.mDetached || inactive) {
1276 moveToState(fragment, inactive ? Fragment.INITIALIZING : Fragment.CREATED,
/frameworks/support/fragment/java/android/support/v4/app/
H A DLoaderManager.java452 // loader. If there is a previous loader on the inactive list,
651 LoaderInfo inactive = mInactiveLoaders.get(id);
652 if (inactive != null) {
656 // yet destroyed the last inactive loader. So just do
658 if (DEBUG) Log.v(TAG, " Removing last inactive loader: " + info);
659 inactive.mDeliveredData = false;
660 inactive.destroy();
664 // We already have an inactive loader for this ID that we are
694 if (DEBUG) Log.v(TAG, " Making last loader inactive: " + info);
H A DFragmentManager.java1382 final boolean inactive = !fragment.isInBackStack();
1383 if (!fragment.mDetached || inactive) {
1392 moveToState(fragment, inactive ? Fragment.INITIALIZING : Fragment.CREATED,

Completed in 3639 milliseconds