/external/python/google-api-python-client/docs/dyn/ |
D | sqladmin_v1beta3.backupRuns.html | 79 <p class="firstline">Retrieves information about a specified backup run for a Cloud SQL instance.</… 82 <p class="firstline">Lists all backup runs associated with a Cloud SQL instance.</p> 89 <pre>Retrieves information about a specified backup run for a Cloud SQL instance. 94 …Configuration: string, Identifier for the backup configuration. This gets generated automatically … 95 …dueTime: string, The start time of the four-hour backup window. The backup can occur any time in t… 100 { # A database instance backup run resource. 103 "backupConfiguration": "A String", # Backup Configuration identifier. 105 …"startTime": "A String", # The time the backup operation actually started in UTC timezone in RFC 3… 106 …"error": { # Database instance operation error. # Information about why the backup operation faile… 110 …"endTime": "A String", # The time the backup operation completed in UTC timezone in RFC 3339 forma… [all …]
|
D | sqladmin_v1beta4.backupRuns.html | 79 <p class="firstline">Deletes the backup taken by a backup run.</p> 82 <p class="firstline">Retrieves a resource containing information about a backup run.</p> 85 <p class="firstline">Creates a new backup run on demand. This method is applicable only to Second G… 88 <p class="firstline">Lists all backup runs associated with a given instance and configuration in th… 95 <pre>Deletes the backup taken by a backup run. 100 …id: string, The ID of the Backup Run to delete. To find a Backup Run ID, use the list method. (req… 167 <pre>Retrieves a resource containing information about a backup run. 172 id: string, The ID of this Backup Run. (required) 177 { # A database instance backup run resource. 181 …"windowStartTime": "A String", # The start time of the backup window during which this the backup … [all …]
|
/external/python/cpython3/Lib/sqlite3/test/ |
D | backup.py | 5 @unittest.skipIf(sqlite.sqlite_version_info < (3, 6, 11), "Backup API not supported") 23 self.cx.backup(None) 27 self.cx.backup('some_file_name.db') 31 self.cx.backup(self.cx) 37 self.cx.backup(bck) 44 self.cx.backup(bck) 51 self.cx.backup(bck, 1) 55 self.cx.backup(bck) 65 self.cx.backup(bck, pages=1, progress=progress) 79 self.cx.backup(bck, progress=progress) [all …]
|
/external/javasqlite/src/main/java/SQLite/ |
D | Backup.java | 4 * Class wrapping an SQLite backup object. 7 public class Backup { class 16 * Finish a backup. 41 * Perform a backup step. 43 * @param n number of pages to backup 44 * @return true when backup completed 56 * Perform the backup in one step. 59 public void backup() throws SQLite.Exception { in backup() method in Backup 78 * Return the total number of pages in the backup source database.
|
/external/libbackup/src/com/google/android/libraries/backup/shadow/ |
D | BackupAgentHelperShadow.java | 1 package com.google.android.libraries.backup.shadow; 6 import android.app.backup.BackupAgent; 7 import android.app.backup.BackupAgentHelper; 8 import android.app.backup.BackupDataInput; 9 import android.app.backup.BackupDataOutput; 10 import android.app.backup.BackupHelper; 11 import android.app.backup.FileBackupHelper; 12 import android.app.backup.SharedPreferencesBackupHelper; 36 * with regards to backup/restore of {@link SharedPreferences}: 44 * xml file for given shared preferences would have been empty or missing upon backup. The latter [all …]
|
D | BackupHelperSimulator.java | 1 package com.google.android.libraries.backup.shadow; 3 import android.app.backup.BackupHelper; 4 import android.app.backup.FileBackupHelper; 9 * Class which simulates backup & restore functionality of a {@link BackupHelper}. 20 /** Perform backup into an {@link Object}, which is then returned by the method. */ 21 public abstract Object backup(Context context); in backup() method in BackupHelperSimulator 25 * returned by {@link #backup}.
|
/external/e2fsprogs/debian/ |
D | comerr-dev.postrm | 19 if [ "$1" = "purge" ] && [ -h "${SYMLINK}.dpkg-backup" ] 21 rm -f "${SYMLINK}.dpkg-backup" 24 [ -n "$2" ] && [ ! -e "$SYMLINK" ] && [ -h "${SYMLINK}.dpkg-backup" ] 26 if symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET" || 27 symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET2" 29 echo "Restoring backup of $SYMLINK ..." 30 mv "${SYMLINK}.dpkg-backup" "$SYMLINK"
|
D | ss-dev.postrm | 18 if [ "$1" = "purge" ] && [ -h "${SYMLINK}.dpkg-backup" ] 20 rm -f "${SYMLINK}.dpkg-backup" 23 [ -n "$2" ] && [ ! -e "$SYMLINK" ] && [ -h "${SYMLINK}.dpkg-backup" ] && 24 symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET" 26 echo "Restoring backup of $SYMLINK ..." 27 mv "${SYMLINK}.dpkg-backup" "$SYMLINK"
|
D | e2fslibs-dev.postrm | 18 if [ "$1" = "purge" ] && [ -h "${SYMLINK}.dpkg-backup" ] 20 rm -f "${SYMLINK}.dpkg-backup" 23 [ -n "$2" ] && [ ! -e "$SYMLINK" ] && [ -h "${SYMLINK}.dpkg-backup" ] && 24 symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET" 26 echo "Restoring backup of $SYMLINK ..." 27 mv "${SYMLINK}.dpkg-backup" "$SYMLINK"
|
D | comerr-dev.postinst | 19 if [ "$1" = "configure" ] && [ -h "${SYMLINK}.dpkg-backup" ] 21 if symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET" || 22 symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET2" 24 rm -f "${SYMLINK}.dpkg-backup"
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
D | rx-switch_if_empty.hpp | 7 … the source Observable terminates without emitting any items, emits items from a backup Observable. 9 \tparam BackupSource the type of the backup observable. 11 \param t a backup observable that is used if the source observable is empty. 13 \return Observable that emits items from a backup observable if the source observable is empty. 47 backup_source_type backup; member 50 : backup(std::move(b)) in switch_if_empty() 64 backup_source_type backup; member 70 , backup(std::move(b)) in switch_if_empty_observer() 86 backup.subscribe(dest); in on_completed() 98 … -> decltype(switch_if_empty_observer<Subscriber>::make(std::move(dest), std::move(backup))) { in operator ()() [all …]
|
/external/autotest/client/cros/ |
D | p2p_utils.py | 18 P2P_SHARE_BACKUP_PATH = '/var/cache/p2p-backup' 22 """Backup the P2P shared files and create an empty shared directory. 24 p2p-server shall not be running during backup or restore. 35 raise error.TestError("Error on P2P files backup: %s" % (e.message)) 39 """Restore the P2P shared files from a backup and *delete* the backup. 41 p2p-server shall not be running during backup or restore. 92 # Backup p2p files. 132 logging.exception('Failed to restore the P2P backup.')
|
/external/autotest/contrib/ |
D | manage_powerunit_info.py | 11 as host attributes. This tool allows you to add/modify/view/backup 31 * Backup existing attributes for all hosts to a csv file: 32 ./manage_powerunit_info.py backup --csv backup.csv 136 'backup: dump existing rpm attributes to a csv file (for backup).') 138 'action', choices=('upload', 'list', 'backup'), help=action_help) 153 if options.action == 'upload' or options.action =='backup': 161 if options.action == 'backup' and file_exists: 176 if options.action =='backup':
|
/external/python/cpython3/Tools/freeze/ |
D | bkfile.py | 7 backup = file + '~' 9 os.unlink(backup) 13 os.rename(file, backup) 21 if filecmp.cmp(backup, file, shallow=False): 24 os.rename(backup, file)
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowBackupManager.java | 5 import android.app.backup.BackupManager; 6 import android.app.backup.IBackupManagerMonitor; 7 import android.app.backup.IRestoreObserver; 8 import android.app.backup.IRestoreSession; 9 import android.app.backup.RestoreSession; 10 import android.app.backup.RestoreSet; 34 * A stub implementation of {@link BackupManager} that instead of connecting to a real backup 35 * transport and performing restores, stores which packages are restored from which backup set, and 97 android.Manifest.permission.BACKUP, message); in enforceBackupPermission()
|
/external/e2fsprogs/tests/m_no_opt/ |
D | expect.1 | 55 Backup superblock at 8193, Group descriptors at 8194-8194 62 Backup superblock at 16385, Group descriptors at 16386-16386 69 Backup superblock at 24577, Group descriptors at 24578-24578 76 Backup superblock at 32769, Group descriptors at 32770-32770 83 Backup superblock at 40961, Group descriptors at 40962-40962 90 Backup superblock at 49153, Group descriptors at 49154-49154 97 Backup superblock at 57345, Group descriptors at 57346-57346
|
/external/protobuf/src/google/protobuf/io/ |
D | zero_copy_stream_impl.cc | 94 void FileInputStream::BackUp(int count) { in BackUp() function in google::protobuf::io::FileInputStream 95 impl_.BackUp(count); in BackUp() 197 void FileOutputStream::BackUp(int count) { in BackUp() function in google::protobuf::io::FileOutputStream 198 impl_.BackUp(count); in BackUp() 284 void IstreamInputStream::BackUp(int count) { in BackUp() function in google::protobuf::io::IstreamInputStream 285 impl_.BackUp(count); in BackUp() 328 void OstreamOutputStream::BackUp(int count) { in BackUp() function in google::protobuf::io::OstreamOutputStream 329 impl_.BackUp(count); in BackUp() 374 void ConcatenatingInputStream::BackUp(int count) { in BackUp() function in google::protobuf::io::ConcatenatingInputStream 376 streams_[0]->BackUp(count); in BackUp() [all …]
|
/external/python/cpython3/Lib/ |
D | fileinput.py | 58 to a backup file and standard output is directed to the input file. 60 in place. If the keyword argument backup=".<some extension>" is also 61 given, it specifies the extension for the backup file, and the backup 83 def input(files=None, inplace=False, backup="", bufsize=0, argument 94 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 176 """FileInput([files[, inplace[, backup[, bufsize, [, mode[, openhook]]]]]]) 188 def __init__(self, files=None, inplace=False, backup="", bufsize=0, argument 203 self._backup = backup 414 backup = False 418 if o == '-b': backup = a [all …]
|
/external/python/cpython2/Lib/ |
D | fileinput.py | 58 to a backup file and standard output is directed to the input file. 60 in place. If the keyword argument backup=".<some extension>" is also 61 given, it specifies the extension for the backup file, and the backup 85 def input(files=None, inplace=0, backup="", bufsize=0, argument 96 _state = FileInput(files, inplace, backup, bufsize, mode, openhook) 178 """FileInput([files[, inplace[, backup[, bufsize[, mode[, openhook]]]]]]) 190 def __init__(self, files=None, inplace=0, backup="", bufsize=0, argument 203 self._backup = backup 392 backup = 0 396 if o == '-b': backup = a [all …]
|
/external/gptfdisk/ |
D | gdisk.8 | 27 main and backup data, as well as between the GPT headers and the partition 141 Save partition data to a backup file. You can back up your current 144 header, the backup GPT header, and one copy of the partition table, in that 145 order. Note that the backup is of the current in\-memory data structures, so 147 backup will reflect your changes. Note also that the restore option is on 148 the recovery & transformation menu; the backup option is on the main menu 254 incorrect CRCs and mismatched main and backup data. This option does not 284 Rebuild GPT header from backup. You can use the backup GPT header to 291 Load backup partition table. Ordinarily, \fBgdisk\fR 292 uses only the main partition table (although the backup's integrity is [all …]
|
/external/python/cpython3/Lib/lib2to3/ |
D | main.py | 43 nobackups: If true no backup '.bak' files will be created for those 88 # Make backup 89 backup = filename + ".bak" 90 if os.path.lexists(backup): 92 os.remove(backup) 94 self.log_message("Can't remove backup %s", backup) 96 os.rename(filename, backup) 98 self.log_message("Can't rename %s to %s", filename, backup) 103 shutil.copymode(backup, filename) 185 # If we allowed these, the original files would be renamed to backup names
|
/external/python/cpython2/Lib/lib2to3/ |
D | main.py | 43 nobackups: If true no backup '.bak' files will be created for those 88 # Make backup 89 backup = filename + ".bak" 90 if os.path.lexists(backup): 92 os.remove(backup) 94 self.log_message("Can't remove backup %s", backup) 96 os.rename(filename, backup) 98 self.log_message("Can't rename %s to %s", filename, backup) 103 shutil.copymode(backup, filename) 186 # If we allowed these, the original files would be renamed to backup names
|
/external/grpc-grpc/include/grpcpp/impl/codegen/ |
D | proto_buffer_writer.h | 49 /// option to "backup" if more buffer is given than required at the last buffer. 84 // 1. Use the remaining backup slice if we have one in Next() 91 /// If we have a backup slice, we should use it first in Next() 115 /// Backup by \a count bytes because Next returned more bytes than needed 118 void BackUp(int count) override { in BackUp() function 132 // It's dangerous to keep an inlined grpc_slice as the backup slice, since in BackUp() 159 bool have_backup_; ///< if we are holding a backup slice or not 161 ///< caller has called BackUp
|
/external/autotest/site_utils/ |
D | backup_mysql_db.py | 38 _GS_BUCKET = 'gs://chromeos-lab/backup/database' 73 # a host dump is the cheapest form of backup possible. We dump the output of a 82 """Raised for error occurred during backup.""" 109 """Get the db name to backup. 113 @returns: The name of the db to backup. 114 Or None for backup all dbs. 334 'chromeos/autotest/afe_db/backup/durations', 337 logging.debug('Start db backup: %s', options.type) 341 logging.debug('Uploading backup: %s', options.type) 344 logging.debug('Db backup completed: %s', options.type)
|
/external/e2fsprogs/lib/blkid/ |
D | save.c | 151 char *backup; in blkid_flush_cache() local 153 backup = malloc(strlen(filename) + 5); in blkid_flush_cache() 154 if (backup) { in blkid_flush_cache() 155 sprintf(backup, "%s.old", filename); in blkid_flush_cache() 156 unlink(backup); in blkid_flush_cache() 157 (void) link(filename, backup); in blkid_flush_cache() 158 free(backup); in blkid_flush_cache()
|