Searched defs:appState (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Settings/src/com/android/settings/applications/
H A DAppStateNotificationBridge.java44 public AppStateNotificationBridge(Context context, ApplicationsState appState, argument
46 super(appState, callback);
H A DAppStatePowerBridge.java33 public AppStatePowerBridge(ApplicationsState appState, Callback callback) { argument
34 super(appState, callback);
H A DAppStateUsageBridge.java41 public AppStateUsageBridge(Context context, ApplicationsState appState, Callback callback) { argument
42 super(context, appState, callback, APP_OPS_OP_CODE, PM_PERMISSION);
H A DAppStateOverlayBridge.java43 public AppStateOverlayBridge(Context context, ApplicationsState appState, Callback callback) { argument
44 super(context, appState, callback, APP_OPS_OP_CODE, PM_PERMISSION);
H A DAppStateSmsPremBridge.java35 public AppStateSmsPremBridge(Context context, ApplicationsState appState, Callback callback) { argument
36 super(appState, callback);
H A DAppStateWriteSettingsBridge.java41 public AppStateWriteSettingsBridge(Context context, ApplicationsState appState, Callback argument
43 super(context, appState, callback, APP_OPS_OP_CODE, PM_PERMISSIONS);
H A DAppStateInstallAppsBridge.java47 public AppStateInstallAppsBridge(Context context, ApplicationsState appState, argument
49 super(appState, callback);
94 final InstallAppsState appState = new InstallAppsState();
95 appState.permissionRequested = hasRequestedAppOpPermission(
97 appState.permissionGranted = hasPermission(Manifest.permission.REQUEST_INSTALL_PACKAGES,
99 appState.appOpMode = getAppOpMode(AppOpsManager.OP_REQUEST_INSTALL_PACKAGES, uid,
101 return appState;
H A DAppStateAppOpsBridge.java57 public AppStateAppOpsBridge(Context context, ApplicationsState appState, Callback callback, argument
59 this(context, appState, callback, appOpsOpCode, permissions,
64 AppStateAppOpsBridge(Context context, ApplicationsState appState, Callback callback, argument
66 super(appState, callback);
H A DAppStateBaseBridge.java39 public AppStateBaseBridge(ApplicationsState appState, Callback callback) { argument
40 mAppState = appState;
H A DRecentAppsPreferenceController.java102 RecentAppsPreferenceController(Context context, ApplicationsState appState, Fragment host) { argument
110 mApplicationsState = appState;
/packages/apps/Settings/src/com/android/settings/datausage/
H A DAppStateDataUsageBridge.java28 public AppStateDataUsageBridge(ApplicationsState appState, Callback callback, argument
30 super(appState, callback);
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
H A DBaseModelUpdateTaskTestCase.java57 public LauncherAppState appState; field in class:BaseModelUpdateTaskTestCase
75 appState = mock(LauncherAppState.class);
79 when(appState.getModel()).thenReturn(model);
92 when(appState.getIconCache()).thenReturn(iconCache);
93 when(appState.getInvariantDeviceProfile()).thenReturn(idp);
104 task.init(appState, model, bgDataModel, allAppsList, mockExecutor);
/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
H A DAppStateBaseBridge.java39 public AppStateBaseBridge(ApplicationsState appState, Callback callback) { argument
40 mAppState = appState;
H A DAppStateUsageStatsBridge.java59 public AppStateUsageStatsBridge(Context context, ApplicationsState appState, argument
61 super(appState, callback);
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
H A DDragView.java209 LauncherAppState appState = LauncherAppState.getInstance(mLauncher);
211 final Drawable dr = getFullDrawable(info, appState, outObj);
224 mBadge = getBadge(info, appState, outObj[0]);
316 private Drawable getFullDrawable(ItemInfo info, LauncherAppState appState, Object[] outObj) { argument
321 return (activityInfo != null) ? appState.getIconCache()
328 return activityInfo.getFullResIcon(appState.getIconCache());
339 appState.getInvariantDeviceProfile().fillResIconDpi);
362 private Drawable getBadge(ItemInfo info, LauncherAppState appState, Object obj) { argument
363 int iconSize = appState.getInvariantDeviceProfile().iconBitmapSize;
370 Bitmap badge = LauncherIcons.getShortcutInfoBadge(si, appState
[all...]

Completed in 856 milliseconds