HomeSort by relevance Sort by last modified time
    Searched refs:systemAppsFile (Results 1 - 2 of 2) sorted by null

  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/nonrequiredapps/
SystemAppsSnapshot.java 95 final File systemAppsFile = getSystemAppsFile(mContext, userId);
96 systemAppsFile.getParentFile().mkdirs(); // Creating the folder if it does not exist
97 writeSystemApps(mUtils.getCurrentSystemApps(mIPackageManager, userId), systemAppsFile);
100 private void writeSystemApps(Set<String> packageNames, File systemAppsFile) {
102 FileOutputStream stream = new FileOutputStream(systemAppsFile, false);
120 private Set<String> readSystemApps(File systemAppsFile) {
122 if (!systemAppsFile.exists()) {
126 FileInputStream stream = new FileInputStream(systemAppsFile);
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/nonrequiredapps/
SystemAppsSnapshotTest.java 71 File systemAppsFile = SystemAppsSnapshot.getSystemAppsFile(
73 if (systemAppsFile.exists()) {
74 systemAppsFile.delete();

Completed in 72 milliseconds