Home | History | Annotate | Download | only in tar

Lines Matching refs:PAX

14 // The most common formats are the USTAR, PAX, and GNU formats,
19 // | USTAR | PAX | GNU
67 // http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
70 // FormatPAX represents the PAX header format defined in POSIX.1-2001.
72 // PAX extends USTAR by writing a special file with Typeflag TypeXHeader
77 // Some newer formats add their own extensions to PAX by defining their
79 // For example, sparse file support in PAX is implemented using keys
83 // http://pubs.opengroup.org/onlinepubs/009695399/utilities/pax.html
88 // The GNU header format is older than the USTAR and PAX standards and
93 // It is recommended that PAX be chosen over GNU unless the target
101 // This does not cover STAR extensions to the PAX format; these fall under
102 // the PAX format.
114 formatV7: "V7", FormatUSTAR: "USTAR", FormatPAX: "PAX", FormatGNU: "GNU", formatSTAR: "STAR",