HomeSort by relevance Sort by last modified time
    Searched refs:backup (Results 151 - 175 of 216) sorted by null

1 2 3 4 5 67 8 9

  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 19 import android.app.backup.BackupAgentHelper;
20 import android.app.backup.BackupDataInput;
21 import android.app.backup.BackupDataOutput;
22 import android.app.backup.FullBackupDataOutput;
59 * Performs backup and restore of the System and Secure settings.
94 // Versioning of the 'full backup' format
122 // Name of the temporary file we use during full backup/restore. This is
123 // stored in the full-backup tarfile as well, so should not be changed.
555 // With the default 0 checksum we'll wind up forcing a backup of
791 Log.w(TAG, "Couldn't backup " + filename)
    [all...]
SettingsHelper.java 21 import android.app.backup.IBackupManager;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupNames.java 232 * Trigger account backup
262 // Update the backup (side copy) of the accounts
263 AccountBackupRestore.backup(AccountSetupNames.this);
AccountSettingsUtils.java 58 // Update the backup (side copy) of the accounts
59 AccountBackupRestore.backup(context);
AccountSetupExchangeFragment.java 393 // Update the backup (side copy) of the accounts
394 AccountBackupRestore.backup(mContext);
AccountSetupOutgoingFragment.java 333 // Update the backup (side copy) of the accounts
334 AccountBackupRestore.backup(mContext);
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 22 import android.app.backup.BackupManager;
  /external/icu4c/i18n/
ucol.cpp 187 * Backup the state of the collIterate struct data
188 * @param data collIterate to backup
189 * @param backup storage
192 inline void backupState(const collIterate *data, collIterateState *backup)
194 backup->fcdPosition = data->fcdPosition;
195 backup->flags = data->flags;
196 backup->origFlags = data->origFlags;
197 backup->pos = data->pos;
198 backup->bufferaddress = data->writableBuffer.getBuffer();
199 backup->buffersize = data->writableBuffer.length()
    [all...]
decimfmt.cpp 1894 int32_t startIdx, backup; local
2355 int32_t backup = -1; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.frameworkadmin.equinox_1.0.200.v20100505.jar 
  /packages/apps/Camera/src/com/android/camera/
ComboPreferences.java 19 import android.app.backup.BackupManager;
53 // shared preferences file so we can backup them solely.
  /packages/apps/Gallery2/src/com/android/camera/
ComboPreferences.java 19 import android.app.backup.BackupManager;
56 // shared preferences file so we can backup them solely.
  /external/icu4c/io/
uscanf_p.c 117 const UChar *backup; local
141 backup = s;
156 s = backup;
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
rebaseline_chromium_webkit_tests.py 220 def remove_rebaselining_expectations(self, tests, backup):
221 """if backup is True, we backup the original test expectations file."""
224 if backup:
    [all...]
rebaseline_chromium_webkit_tests_unittest.py 64 backup=False,
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 256 public int onSetPath(final HeaderSet request, final HeaderSet reply, final boolean backup,
269 if (D) Log.d(TAG, "backup=" + backup + " create=" + create + " name=" + tmp_path);
271 if (backup) {
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 1615 CommandLineFlag* backup = new CommandLineFlag( local
    [all...]
  /external/open-vcdiff/gflags/src/
gflags.cc 1606 CommandLineFlag* backup = new CommandLineFlag( local
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 26 import android.app.backup.BackupAgent;
27 import android.app.backup.BackupDataOutput;
28 import android.app.backup.FullBackup;
29 import android.app.backup.RestoreSet;
30 import android.app.backup.IBackupManager;
31 import android.app.backup.IFullBackupRestoreObserver;
32 import android.app.backup.IRestoreObserver;
33 import android.app.backup.IRestoreSession;
80 import com.android.internal.backup.BackupConstants;
81 import com.android.internal.backup.IBackupTransport
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 664 /* Compute the name of the backup file for in-place editing */
670 char *old_asterisk, *asterisk, *backup, *p;
673 /* Compute the length of the backup file */
679 p = backup = xmalloc(backup_length + 1);
694 return backup;
665 char *old_asterisk, *asterisk, *backup, *p; local
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Database.java 597 * Initiate a database backup, SQLite 3.x only.
602 * @return Backup object to perform the backup operation
605 public Backup backup(Database dest, String destName, String srcName) method in class:Database
608 Backup b = new Backup();
614 private static native void _backup(Backup b, Database dest,
  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 21 import android.app.backup.BackupManager;
171 // Set the ringToneUri to the backup-able shared pref only so that
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SettingsFragment.java 20 import android.app.backup.BackupManager;
  /external/harfbuzz_ng/
git.mk 32 # Note that for files like editor backup, etc, there are better places to
  /system/core/adb/
commandline.c 147 " adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]\n"
150 " to \"backup.ab\" in the current directory.\n"
151 " (-apk|-noapk enable/disable backup of the .apks themselves\n"
153 " (-obb|-noobb enable/disable backup of any installed apk expansion\n"
156 " (-shared|-noshared enable/disable backup of the device's\n"
167 " adb restore <file> - restore device contents from the <file> backup archive\n"
699 static int backup(int argc, char** argv) { function
702 const char* filename = strcpy(default_name, "./backup.ab");
722 /* bare "adb backup" or "adb backup -f filename" are not valid invocations *
    [all...]

Completed in 2523 milliseconds

1 2 3 4 5 67 8 9