HomeSort by: relevance | last modified time | path
    Searched refs:EXTRACT (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/dev/raidframe/
rf_pq.c 654 #define EXTRACT(a,i) ((a >> (5L*i)) & 0x1f)
662 a1 = EXTRACT(a, 0) ^ r;
663 a2 = EXTRACT(a, 1) ^ r;
665 a1 = EXTRACT(a, 2) ^ r;
666 a2 = EXTRACT(a, 3) ^ r;
670 a1 = EXTRACT(a, 4) ^ r;
671 a2 = EXTRACT(a, 5) ^ r;
675 a1 = EXTRACT(a, 5) ^ r;
676 a2 = EXTRACT(a, 6) ^ r;
681 a1 = EXTRACT(a, 7) ^ r
    [all...]
  /src/sbin/restore/
restore.h 106 #define EXTRACT 0x0001 /* entry is to be replaced from the tape */
111 #define EXISTED 0x0040 /* directory already existed during extract */
restore.c 203 * EXTRACT - files that must be updated with new contents.
351 * a request is made to extract it.
355 ip->e_flags |= EXTRACT;
397 np->e_flags |= EXTRACT;
405 * Normally an extract can simply do an "unlink" followed
589 * This is the routine used to extract files for the 'r' command.
590 * Extract new leaves.
602 vprintf(stdout, "Extract new leaves.\n");
622 ep->e_flags &= ~(NEW|EXTRACT);
642 if ((ep->e_flags & (NEW|EXTRACT)) == 0
    [all...]
utilities.c 277 if (ep->e_flags & (NEW|EXTRACT))
295 if (ep->e_flags & (NEW|EXTRACT))
340 if (ep->e_flags & EXTRACT)
341 (void) strcat(flagbuf, "|EXTRACT");
tape.c 680 if (ep == NULL || ep->e_flags & EXTRACT)
685 vprintf(stdout, "extract file %s\n", name);
719 vprintf(stdout, "extract special file %s\n", name);
755 vprintf(stdout, "extract fifo %s\n", name);
788 vprintf(stdout, "extract file %s\n", name);
989 * Extract a bitmap from the tape.
1036 * Extract a file from the tape.
1146 * Allocate a buffer into which to extract extended attributes.
1163 fprintf(stderr, "Cannot extract %zu bytes %s for inode %ju, name %s\n",
1170 * Extract the next block of extended attributes
    [all...]
  /src/bin/pax/
pax.h 62 #define EXTRACT 1 /* extract the files in an archive */
181 (ARCHD *, char *); /* ARCHD. It must extract the info */
options.c 323 * match only dir on extract, not the subtree at dir
683 * figure out the operation mode of pax read,write,extract,copy,append
692 act = EXTRACT;
723 case EXTRACT:
781 { "extract", no_argument, 0, 'x' }, /* F */
966 * this is a create or extract operation.
1032 * extract an archive, preserving mode,
1035 tar_set_action(EXTRACT);
1193 if (act == EXTRACT)
1207 case EXTRACT
    [all...]
pax.c 107 int to_stdout; /* extract to stdout */
118 int secure = 1; /* don't extract names that contain .. */
266 * For EXTRACT (pax -r) without --insecure, also save the path
276 if (act == EXTRACT && secure) {
308 case EXTRACT:
309 rval = extract();
ar_io.c 79 #define EXT_MODE O_RDONLY /* open mode for list/extract */
166 case EXTRACT:
247 case EXTRACT:
407 * for a quick extract/list, pax frequently exits before the child
410 if ((act == LIST || act == EXTRACT) && nflag && zpid > 0)

Completed in 109 milliseconds