Searched refs:fullBackupContent (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/content/pm/
H A DApplicationInfo.java118 public int fullBackupContent = 0; field in class:ApplicationInfo
838 if (fullBackupContent > 0) {
839 pw.println(prefix + "fullBackupContent=@xml/" + fullBackupContent);
841 pw.println(prefix + "fullBackupContent="
842 + (fullBackupContent < 0 ? "false" : "true"));
933 fullBackupContent = orig.fullBackupContent;
989 dest.writeInt(fullBackupContent);
1045 fullBackupContent
[all...]
H A DPackageParser.java2770 // backupAgent, killAfterRestore, fullBackupContent, backupInForeground,
2807 if (v != null && (ai.fullBackupContent = v.resourceId) == 0) {
2809 Slog.v(TAG, "fullBackupContent specified as boolean=" +
2813 ai.fullBackupContent = (v.data == 0 ? -1 : 0);
2816 Slog.v(TAG, "fullBackupContent=" + ai.fullBackupContent + " for " + pkgName);
/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java316 mFullBackupContent = context.getApplicationInfo().fullBackupContent;
348 // android:fullBackupContent="false", bail.
350 Log.v(FullBackup.TAG_XML_PARSER, "android:fullBackupContent - \"false\"");
388 // android:fullBackupContent="true" which means that we'll do everything.
390 Log.v(FullBackup.TAG_XML_PARSER, "android:fullBackupContent - \"true\"");
393 // android:fullBackupContent="@xml/some_resource".
396 "android:fullBackupContent - found xml resource");
433 Log.v(TAG_XML_PARSER, "Found valid fullBackupContent; parsing xml resource.");

Completed in 106 milliseconds