Searched defs:backup (Results 1 - 11 of 11) sorted by relevance

/external/fsck_msdos/
H A Dboot.c57 u_char backup[DOSBOOTBLOCKSIZE]; local
158 || read(dosfs, backup, sizeof backup) != sizeof backup) {
159 perror("could not read backup bootblock");
162 backup[65] = block[65]; /* XXX */
163 if (memcmp(block + 11, backup + 11, 79)) {
170 * the backup either empty or containing garbage.
188 snprintf(tmp2, sizeof(tmp2), "%.2x ", backup[11 + i]);
193 /* Check backup FSInf
[all...]
/external/e2fsprogs/lib/blkid/
H A Dsave.c139 char *backup; local
141 backup = malloc(strlen(filename) + 5);
142 if (backup) {
143 sprintf(backup, "%s.old", filename);
144 unlink(backup);
145 link(filename, backup);
146 free(backup);
/external/icu4c/common/
H A Duniset_props.cpp472 RuleCharacterIterator::Pos backup; local
511 // Prepare to backup if necessary
512 chars.getPos(backup);
518 chars.setPos(backup); // backup
524 chars.getPos(backup); // prepare to backup
530 chars.getPos(backup); // prepare to backup
540 chars.setPos(backup); // backu
[all...]
/external/icu4c/io/
H A Duprntf_p.c1223 const UChar *backup; local
1275 backup = alias;
1290 alias = backup;
1356 backup = alias;
1371 alias = backup;
1403 backup = alias;
1417 alias = backup;
H A Duscanf_p.c117 const UChar *backup; local
141 backup = s;
156 s = backup;
/external/icu4c/test/perf/collperf/
H A Dcollperf.cpp340 void * backup; //copy source of base member in struct:CmdQsort
343 :backup(theBase),num(num),width(width),fn(fn){
354 memcpy(base, backup, num * width);
369 memcpy(base, backup, num * width);
/external/e2fsprogs/misc/
H A Dmke2fs.c249 * See if any of the bad blocks are showing up in the backup
263 _("Warning: the backup superblock/group descriptors at block %u contain\n"
294 char backup[80]; member in struct:progress_struct
313 memset(progress->backup, '\b', sizeof(progress->backup)-1);
314 progress->backup[sizeof(progress->backup)-1] = 0;
315 if ((2*i)+1 < (int) sizeof(progress->backup))
316 progress->backup[(2*i)+1] = 0;
332 fputs(progress->backup, stdou
[all...]
/external/kernel-headers/original/linux/
H A Dwanrouter.h228 char backup; /* Backup Mode */ member in struct:wandev_conf
/external/skia/src/core/
H A DSkDraw.cpp582 const size_t backup = (SkCanvas::kPolygon_PointMode == mode); local
591 pts += n - backup;
595 count += backup;
/external/icu4c/i18n/
H A Ddecimfmt.cpp1723 int32_t backup; local
1724 int32_t i = backup = parsePosition.getIndex();
1751 i = backup;
1769 parsePosition.setIndex(backup);
2049 int32_t backup = -1; local
2082 // Cancel out backup setting (see grouping handler below)
2083 backup = -1;
2093 // Cancel out backup setting (see grouping handler below)
2094 backup = -1;
2117 // that they be followed by a digit. Otherwise we backup an
[all...]
H A Ducol.cpp128 * @param data collIterate to backup
129 * @param backup storage
132 inline void backupState(const collIterate *data, collIterateState *backup) argument
134 backup->fcdPosition = data->fcdPosition;
135 backup->flags = data->flags;
136 backup->origFlags = data->origFlags;
137 backup->pos = data->pos;
138 backup->bufferaddress = data->writableBuffer;
139 backup->buffersize = data->writableBufSize;
140 backup
164 loadState(collIterate *data, const collIterateState *backup, UBool forwards) argument
[all...]

Completed in 162 milliseconds