Searched refs:backup (Results 1 - 25 of 117) sorted by relevance

12345

/macosx-10.9.5/postfix-252/postfix/src/master/
H A Dmaster_watch.c88 if (wp->backup[0] != 0
89 && strcmp(wp->backup[0], wp->value[0]) != 0) {
93 wp->backup[0], wp->value[0]);
96 myfree(wp->backup[0]);
97 wp->backup[0] = 0;
106 if (wp->backup[0] == 0) {
109 wp->backup[0] = mystrdup(wp->value[0]);
128 && wp->backup != wp->value[0]) {
132 wp->backup, wp->value[0]);
148 wp->backup
[all...]
H A Dmaster.h203 char **backup; /* actual value that is being used */ member in struct:__anon11792
211 int backup; /* actual value that is being used */ member in struct:__anon11793
217 #define MASTER_WATCH_FLAG_ISSET (1<<1) /* backup is initialized */
/macosx-10.9.5/gnutar-452/gnutar/scripts/
H A Ddump-remind.in3 # not used by default unless the proper line is uncommented in backup-specs.
5 # backup-specs for their site.
8 # interested parties that a tape for the next volume of the backup needs to
18 . ${LIBPATH-@libexecdir@}/backup.sh
66 From: `basename $0` (backup tape-changing reminder)
72 This is an automated report from the backup script running on
75 Volume ${TAR_VOLUME} of the backup needs to be put in the tape drive.
76 Usually whoever prepared the backup leaves labeled tapes on top of the
80 more up-to-date) can also be found in ~friedman/etc/fsf/backup.how.
89 From: `basename $0` (backup tap
[all...]
H A Dbackup.in22 . ${LIBDIR-@libexecdir@}/backup.sh
33 -l, --level=LEVEL Do backup level LEVEL (default $DUMP_LEVEL).
34 -f, --force Force backup even if today's log file already
37 -t, --time=TIME Wait till TIME, then do backup.
47 now -- do backup immediately.
48 HH -- do backup at HH hours.
49 HH:MM -- do backup at HH:MM.
55 # For compatibility with previous versions, deduce the backup level
94 echo "backup (@PACKAGE_NAME@) @VERSION@"
112 bailout "No backup tim
[all...]
H A Dbackup.sh.in21 CONFIGPATH="$SYSCONFDIR/backup"
22 REMOTEBACKUPDIR="$SYSCONFDIR/tar-backup"
23 CONFIGFILE=${CONFIGPATH}/backup-specs
56 # in the next volume of the tape in adequate time), the backup date won't
105 bailout "The backup must be run as root or else some files will fail to be dumped."
116 The following directories and files are needed for the backup to function:
120 2. Directory for backup log files
209 # Only use --info-script if DUMP_REMIND_SCRIPT was defined in backup-specs
232 # Only use --info-script if DUMP_REMIND_SCRIPT was defined in backup-specs
291 # Return the timestamp of the last backup
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/Security/Tool/
H A Dkeychain_backup.c43 CFDataRef backup=NULL; local
52 require(backup=copyFileContents(backupPath), out);
54 ok=_SecKeychainRestoreBackup(backup, keybag, password);
57 CFReleaseSafe(backup);
67 CFDataRef backup=NULL; local
76 require(backup=_SecKeychainCopyBackup(keybag, password), out);
78 ok=writeFileContents(backupPath, backup);
81 CFReleaseSafe(backup);
124 sec_error("<backup> is required\n");
166 sec_error("<backup> i
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddict_memcache.c93 DICT *backup; /* persistent backup */ member in struct:__anon11734
112 #define DICT_MC_NAME_BACKUP "backup"
334 DICT *backup = dict_mc->backup; local
351 * Update the backup database last.
353 if (backup) {
354 upd_res = backup->update(backup, name, value);
355 dict->error = backup
372 DICT *backup = dict_mc->backup; local
417 DICT *backup = dict_mc->backup; local
457 DICT *backup = dict_mc->backup; local
502 char *backup; local
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/SecureObjectSync/Imported/
H A DSecItemServer.h48 bool _SecServerKeychainRestore(CFDataRef backup, CFDataRef keybag, CFDataRef passcode, CFErrorRef *error);
50 CFDictionaryRef _SecServerBackupSyncable(CFDictionaryRef backup, CFDataRef keybag, CFDataRef password, CFErrorRef *error);
51 bool _SecServerRestoreSyncable(CFDictionaryRef backup, CFDataRef keybag, CFDataRef password, CFErrorRef *error);
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A DSecItemServer.h48 bool _SecServerKeychainRestore(CFDataRef backup, CFDataRef keybag, CFDataRef passcode, CFErrorRef *error);
50 CFDictionaryRef _SecServerBackupSyncable(CFDictionaryRef backup, CFDataRef keybag, CFDataRef password, CFErrorRef *error);
51 bool _SecServerRestoreSyncable(CFDictionaryRef backup, CFDataRef keybag, CFDataRef password, CFErrorRef *error);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/regressions/
H A Dsi-33-keychain-backup.c2 // si-33-keychain-backup.c
65 CFDictionaryRef backup = NULL; local
67 ok_status(_SecKeychainBackupSyncable(keybag, password, NULL, &backup), "export items");
73 ok_status(_SecKeychainRestoreSyncable(keybag, password, backup), "import items");
80 if (backup) { CFRelease(backup); }
/macosx-10.9.5/xar-202/xar/lib/
H A Dappledouble.h83 uint32_t backup; member in struct:MacTimes
/macosx-10.9.5/gpatch-3/patch/
H A Dbackupfile.c1 /* backupfile.c -- make Emacs style backup file names
114 to numbered) backup file name. */
120 /* Return the name of the new backup file for file FILE,
171 /* Return the number of the highest-numbered backup file for file
206 /* If BACKUP is a numbered backup of BASE, return its version number;
211 version_number (const char *base, const char *backup, size_t base_length) argument
217 if (strncmp (base, backup, base_length) == 0
218 && backup[base_length] == '.'
219 && backup[base_length + 1] == '~')
221 for (p = &backup[base_lengt
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Dbackup.tcl5 # $Id: backup.tcl,v 1.5 2008/01/08 20:58:53 bostic Exp $
7 # TEST backup
16 # TEST (3) Test updating an existing hot backup (-u).
21 # TEST (7) Repeat hot backup (non-update) with DB_CONFIG and
24 proc backup { {nentries 1000} } { procedure
30 set backupdir "backup"
56 # Backup directory is empty before hot backup.
60 puts "\tBackuptest.a: Hot backup to directory $backupdir."
74 puts "\tBackuptest.b: Hot backup with data_dir."
111 puts "\tBackuptest.c: Update existing hot backup
[all...]
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Drailroad.c54 static char *backup; variable
81 tputs(backup != 0 ? backup : "\b", 1, outc);
212 backup = tgetstr("le", &ap);
/macosx-10.9.5/patch_cmds-17/patch/
H A Dbackupfile.c4 * backupfile.c -- make Emacs style backup file names Copyright (C) 1990 Free
32 /* Which type of backup file names are generated. */
37 * numbered) backup file name.
49 * Return the name of the new backup file for file FILE, allocated with
77 * Return the number of the highest-numbered backup file for file FILE in
124 * If BACKUP is a numbered backup of BASE, return its version number;
129 version_number(const char *base, const char *backup, size_t base_length) argument
135 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length])) {
136 for (p = &backup[base_lengt
[all...]
/macosx-10.9.5/vim-53/runtime/syntax/
H A Darch.vim25 syn keyword archKeyword contained exclude junk backup precious unrecognized
28 syn keyword archTMethod contained source precious backup junk unrecognized
/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dccformat31 1) ERROR="-b option requires backup argument"; break;;
48 echo "usage: $0 [-b backup] [-t] [-T typename] [file(s)]" 1>&2
63 test -z "$BCK" || cp $i $i"$BCK" || { echo backup FAILED; exit 1; }
87 # ccformat [-b backup] [-t] [-T typename] [file(s)]
99 # a way to create backup copies of the original files.
108 # -b backup
109 # Requests that a copy of the original files be saved. The backup
/macosx-10.9.5/rsync-42/rsync/
H A Dmatch.c124 OFF_T offset, end, backup; local
257 backup = offset - last_match;
259 if (backup < 0)
260 backup = 0;
264 map = (schar *)map_ptr(buf, offset - backup, k + more + backup)
265 + backup;
282 if (backup >= s->blength+CHUNK_SIZE && end-offset > CHUNK_SIZE)
/macosx-10.9.5/vim-53/runtime/
H A Devim.vim32 set nobackup " do not keep a backup file, use versions instead
34 set backup " keep a backup file
/macosx-10.9.5/file_cmds-230/install/
H A Dxinstall.c283 char backup[MAXPATHLEN], *p, pathbuf[MAXPATHLEN], tempfile[MAXPATHLEN]; local
415 if (snprintf(backup, MAXPATHLEN, "%s%s", to_name,
418 errx(EX_OSERR, "%s: backup filename too long",
422 (void)printf("install: %s -> %s\n", to_name, backup);
423 if (rename(to_name, backup) < 0) {
428 backup);
633 char backup[MAXPATHLEN]; local
645 if (snprintf(backup, MAXPATHLEN, "%s%s",
647 errx(EX_OSERR, "%s: backup filename too long",
649 (void)snprintf(backup, MAXPATHLE
[all...]
/macosx-10.9.5/Libc-997.90.3/gen/FreeBSD/
H A Derr.c108 va_list backup; local
110 va_copy(backup, ap);
141 vfprintf(stream, format, backup);
142 va_end(backup);
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecItemPriv.h320 The password argument is optional, passing NULL implies no backup password
321 was set. We're assuming there will always be a backup keybag, except in
322 the OTA case where the loaded OTA backup bag will be used.
326 OSStatus _SecKeychainRestoreBackup(CFDataRef backup, CFDataRef backupKeybag,
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dftp.h90 } backup; member in struct:ftp_wc_tmpdata
/macosx-10.9.5/remote_cmds-41.90.1/timed.tproj/SMM.doc/
H A DMakefile87 backup::
/macosx-10.9.5/Security-55471.14.18/sec/Security/Regressions/secitem/
H A Dsi-33-keychain-backup.c2 * si-33-keychain-backup.c
371 CFDataRef backup = NULL, keybag = NULL, password = NULL; local
381 ok(backup = _SecKeychainCopyBackup(keybag, password),
387 ok_status(_SecKeychainRestoreBackup(backup, keybag, password),
389 CFReleaseSafe(backup);
404 ok(backup = _SecKeychainCopyBackup(keybag, password),
406 ok_status(_SecKeychainRestoreBackup(backup, keybag, password),
410 CFReleaseNull(backup);
450 // Do another backup after some changes
461 // syncable item should have not been restored, because the tombstone was newer than the item in the backup
[all...]

Completed in 466 milliseconds

12345