HomeSort by: relevance | last modified time | path
    Searched refs:backup (Results 1 - 25 of 116) sorted by relevancy

1 2 3 4 5

  /src/external/ibm-public/postfix/dist/src/master/
master_watch.c 90 if (wp->backup[0] != 0
91 && strcmp(wp->backup[0], wp->value[0]) != 0) {
95 wp->backup[0], wp->value[0]);
98 myfree(wp->backup[0]);
99 wp->backup[0] = 0;
108 if (wp->backup[0] == 0) {
111 wp->backup[0] = mystrdup(wp->value[0]);
130 && wp->backup != wp->value[0]) {
134 wp->backup, wp->value[0]);
150 wp->backup = wp->value[0]
    [all...]
  /src/external/ibm-public/postfix/dist/src/smtpd/
smtpd_check_backup.in 9 # MX backup
15 rcpt wietse@backup.porcupine.org
18 rcpt wietse@backup.porcupine.org
20 rcpt wietse@backup.porcupine.org
  /src/external/ibm-public/postfix/dist/src/util/
dict_utf8.c 140 DICT_UTF8_BACKUP *backup; local
161 backup = dict->utf8_backup;
162 value = backup->lookup(dict, fold_res);
182 DICT_UTF8_BACKUP *backup; local
214 backup = dict->utf8_backup;
215 status = backup->update(dict, fold_res, value);
225 DICT_UTF8_BACKUP *backup; local
247 backup = dict->utf8_backup;
248 status = backup->delete(dict, fold_res);
259 DICT_UTF8_BACKUP *backup; local
    [all...]
  /src/external/bsd/mdocml/dist/
compat_mkstemps.c 34 char backup; local
46 backup = *end;
50 *end = backup;
  /src/external/ibm-public/postfix/dist/src/global/
dict_memcache.c 94 DICT *backup; /* persistent backup */ member in struct:__anon23072
113 #define DICT_MC_NAME_BACKUP "backup"
336 DICT *backup = dict_mc->backup; local
353 * Update the backup database last.
355 if (backup) {
356 upd_res = backup->update(backup, name, value);
357 dict->error = backup->error
374 DICT *backup = dict_mc->backup; local
419 DICT *backup = dict_mc->backup; local
459 DICT *backup = dict_mc->backup; local
504 char *backup; local
    [all...]
  /src/external/gpl2/lvm2/dist/doc/
example.conf 183 # talk about a 'backup' we mean making a copy of the metadata for the
186 backup {
188 # Should we maintain a backup of the current metadata configuration ?
191 backup = 1
195 backup_dir = "/etc/lvm/backup"
  /src/sbin/gpt/
uuid.c 74 change_ent(struct gpt_ent *ent, void *v, int backup)
79 if (!backup) {
89 change_hdr(struct gpt_hdr *hdr, void *v, int backup)
94 if (!backup)
Makefile 17 SRCS+= backup.c restore.c
remove.c 69 change(struct gpt_ent *ent, void *v __unused, int backup __unused)
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_resource.c 47 struct vmw_buffer_object *backup = res->backup; local
48 struct rb_node **new = &backup->res_tree.rb_node, *parent = NULL;
50 dma_resv_assert_held(res->backup->base.base.resv);
67 rb_insert_color(&res->mob_node, &backup->res_tree);
71 vmw_bo_prio_add(backup, res->used_prio);
80 struct vmw_buffer_object *backup = res->backup; local
82 dma_resv_assert_held(backup->base.base.resv);
85 rb_erase(&res->mob_node, &backup->res_tree)
370 struct vmw_buffer_object *backup; local
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
backupfile.c 1 /* backupfile.c -- make Emacs style backup file names
73 to numbered) backup file name. */
81 /* Return the name of the new backup file for file FILE,
130 /* Return the number of the highest-numbered backup file for file
165 /* If BACKUP is a numbered backup of BASE, return its version number;
170 version_number (const char *base, const char *backup, size_t base_length)
176 if (strncmp (base, backup, base_length) == 0
177 && backup[base_length] == '.'
178 && backup[base_length + 1] == '~'
    [all...]
  /src/external/gpl2/gettext/dist/gnulib-local/lib/
backupfile.c 1 /* backupfile.c -- make Emacs style backup file names
73 to numbered) backup file name. */
81 /* Return the name of the new backup file for file FILE,
130 /* Return the number of the highest-numbered backup file for file
165 /* If BACKUP is a numbered backup of BASE, return its version number;
170 version_number (const char *base, const char *backup, size_t base_length)
176 if (strncmp (base, backup, base_length) == 0
177 && backup[base_length] == '.'
178 && backup[base_length + 1] == '~'
    [all...]
  /src/external/ibm-public/postfix/dist/examples/smtpd-policy/
greylist.pl 227 my $backup = $database_name . "." . time();
229 rename $database_name, $backup ||
230 fatal_exit "Can't save %s as %s: $!", $database_name, $backup;
231 fatal_exit "Caught signal 11; the corrupted database is saved as $backup";
  /src/tests/net/
net_common.sh 112 local backup=$RUMP_SERVER
120 export RUMP_SERVER=$backup
143 local backup=$RUMP_SERVER
164 export RUMP_SERVER=$backup
201 local backup=$RUMP_SERVER
215 export RUMP_SERVER=$backup
224 export RUMP_SERVER=$backup
344 local backup=$RUMP_SERVER
362 export RUMP_SERVER=$backup
408 local backup=$RUMP_SERVE
    [all...]
  /src/sbin/fsck_msdos/
boot.c 50 u_char *backup; local
109 backup = calloc(1, secsize);
110 if (backup == NULL)
131 boot->Backup = block[50] + (block[51] << 8);
166 free(backup);
183 if (lseek(dosfs, boot->Backup * boot->BytesPerSec, SEEK_SET)
184 != boot->Backup * boot->BytesPerSec
185 || (size_t)read(dosfs, backup, secsize) != secsize) {
186 perr("could not read backup bootblock");
188 free(backup);
    [all...]
  /src/external/gpl2/lvm2/dist/test/
test-utils.sh 156 dd if=$dev of=$dev.backup bs=1024
162 test -e $dev.backup || {
166 dd of=$dev if=$dev.backup bs=1024
197 backup {
198 backup = 0
  /src/external/gpl2/xcvs/dist/src/
update.c 28 * of rcsmerge, and a backup file is written for the user in .#file.version.
1227 char *backup; local
1233 backup = NULL;
1236 /* Don't screw with backup files if we're going to stdout, or if
1240 backup = Xasprintf ("%s/%s%s", CVSADM, CVSPREFIX, finfo->file);
1242 rename_file (finfo->file, backup);
1246 then backup might be a directory instead of just a file. */
1247 if (unlink_file_dir (backup) < 0)
1252 error (0, errno, "error removing %s", backup);
1254 free (backup);
1553 char *backup; local
1941 char *backup; local
2099 char *backup; local
    [all...]
  /src/sys/arch/shark/shark/
profile.c 94 * A backup table is created for every table malloced, this
195 int real, backup; local
217 backup = 1;
224 backup = 0;
231 /* now initialise the backup copy before switching over.
233 memset(phashTables[backup]->entries, 0,
238 phashTables[backup]->hdr.tableSize = phashTables[real]->hdr.tableSize;
239 phashTables[backup]->hdr.entries = phashTables[backup]->hdr.last
241 phashTables[backup]->hdr.samples = 0
    [all...]
  /src/usr.bin/patch/
backupfile.c 8 * backupfile.c -- make Emacs style backup file names
40 /* Which type of backup file names are generated. */
45 * numbered) backup file name.
57 * Return the name of the new backup file for file FILE, allocated with
96 * Return the number of the highest-numbered backup file for file FILE in
143 * If BACKUP is a numbered backup of BASE, return its version number;
148 version_number(const char *base, const char *backup, size_t base_length)
154 if (!strncmp(base, backup, base_length) && ISDIGIT(backup[base_length]))
    [all...]
  /src/external/gpl2/lvm2/dist/include/
archiver.h 30 * A 'backup' is a redundant copy of the *current* volume group
32 * volume group is changed. Only 1 backup file will exist.
50 int backup(struct volume_group *vg);
  /src/external/gpl2/lvm2/dist/lib/format_text/
archiver.h 30 * A 'backup' is a redundant copy of the *current* volume group
32 * volume group is changed. Only 1 backup file will exist.
50 int backup(struct volume_group *vg);
  /src/external/gpl2/lvm2/dist/tools/
vgexport.c 47 backup(vg);
vgimport.c 51 backup(vg);
  /src/external/gpl3/gcc/dist/contrib/
check_makefile_deps.sh 15 # To continue an interrupted check, make sure there are no *.o.backup
52 mv -f $obj $obj.backup
54 mv -f $obj.backup $obj
  /src/external/gpl3/gcc.old/dist/contrib/
check_makefile_deps.sh 15 # To continue an interrupted check, make sure there are no *.o.backup
52 mv -f $obj $obj.backup
54 mv -f $obj.backup $obj

Completed in 61 milliseconds

1 2 3 4 5