OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PAX
(Results
1 - 17
of
17
) sorted by null
/prebuilts/go/darwin-x86/src/archive/tar/
format.go
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 targe
[
all
...]
common.go
72
// Type 'x' is used by the
PAX
format to store key-value records that
77
// Type 'g' is used by the
PAX
format to store key-value records that
93
// Keywords for
PAX
extended header records.
95
paxNone = "" // Indicates that no
PAX
key is suitable
105
paxCtime = "ctime" // Removed from later revision of
PAX
spec, but was valid
111
// Keywords for GNU sparse files in a
PAX
extended header.
124
// basicKeys is a set of the
PAX
keys for which we have built-in support.
125
// This does not contain "charset" or "comment", which are both
PAX
-specific,
156
// To use AccessTime or ChangeTime, specify the Format as
PAX
or GNU.
157
// To use sub-second resolution, specify the Format as
PAX
[
all
...]
strconv.go
74
// recorded elsewhere (e.g., via
PAX
record) contains no trailing slash.
197
// parsePAXTime takes a string of the form %d.%d as described in the
PAX
199
// which is allowed for by the
PAX
specification, but not always portable.
235
//
PAX
specification. This function is capable of negative timestamps.
252
// parsePAXRecord parses the input
PAX
record string into a key-value pair.
287
// formatPAXRecord formats a single
PAX
record, prefixing it with the
314
// for the
PAX
version of the USTAR string fields.
writer_test.go
151
// This file is in
PAX
format.
236
file: "testdata/
pax
-records.tar",
252
// Craft a theoretically valid
PAX
archive with global headers.
258
// $ bsdtar -tvf
pax
-global-records.tar
269
// $ gnutar -tvf
pax
-global-records.tar
277
// According to the
PAX
specification, this should have been the result:
282
file: "testdata/
pax
-global-records.tar",
370
file: "testdata/
pax
-nil-sparse-data.tar",
382
file: "testdata/
pax
-nil-sparse-hole.tar",
426
file: "testdata/
pax
-sparse-big.tar"
[
all
...]
reader.go
87
// Check for
PAX
/GNU special headers and files.
139
// Thus, setup the regFileReader again after merging
PAX
headers.
200
// readGNUSparsePAXHeaders checks the
PAX
headers for GNU sparse headers.
203
// by the the
PAX
header parsing logic.
214
return nil, nil // Unknown GNU sparse
PAX
version
218
return nil, nil // Not a
PAX
format GNU sparse file.
222
// Update hdr from GNU sparse
PAX
headers.
291
// parsePAX parses
PAX
headers.
300
// For GNU
PAX
sparse format 0.0 support.
302
// headers since 0.0 headers were not
PAX
compliant
[
all
...]
writer.go
77
// does not always result in the
PAX
format being chosen, which
145
// Add and modify appropriate
PAX
records.
158
// Write
PAX
records to the output.
310
// shared in the USTAR,
PAX
, and GNU formats using the provided formatters.
reader_test.go
203
file: "testdata/
pax
.tar",
245
file: "testdata/
pax
-bad-hdr-file.tar",
248
file: "testdata/
pax
-bad-mtime-file.tar",
251
file: "testdata/
pax
-pos-size-file.tar",
271
file: "testdata/
pax
-records.tar",
285
file: "testdata/
pax
-global-records.tar",
445
file: "testdata/
pax
-multi-hdrs.tar",
508
// BSD tar v3.1.2 and GNU tar v1.27.1 both rejects
PAX
records
510
file: "testdata/
pax
-nul-xattrs.tar",
513
// BSD tar v3.1.2 rejects a
PAX
path with NUL in the value, whil
[
all
...]
tar_test.go
524
paxHdrs map[string]string // Expected
PAX
headers that may be needed
791
"
PAX
",
/prebuilts/go/linux-x86/src/archive/tar/
format.go
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 targe
[
all
...]
common.go
72
// Type 'x' is used by the
PAX
format to store key-value records that
77
// Type 'g' is used by the
PAX
format to store key-value records that
93
// Keywords for
PAX
extended header records.
95
paxNone = "" // Indicates that no
PAX
key is suitable
105
paxCtime = "ctime" // Removed from later revision of
PAX
spec, but was valid
111
// Keywords for GNU sparse files in a
PAX
extended header.
124
// basicKeys is a set of the
PAX
keys for which we have built-in support.
125
// This does not contain "charset" or "comment", which are both
PAX
-specific,
156
// To use AccessTime or ChangeTime, specify the Format as
PAX
or GNU.
157
// To use sub-second resolution, specify the Format as
PAX
[
all
...]
strconv.go
74
// recorded elsewhere (e.g., via
PAX
record) contains no trailing slash.
197
// parsePAXTime takes a string of the form %d.%d as described in the
PAX
199
// which is allowed for by the
PAX
specification, but not always portable.
235
//
PAX
specification. This function is capable of negative timestamps.
252
// parsePAXRecord parses the input
PAX
record string into a key-value pair.
287
// formatPAXRecord formats a single
PAX
record, prefixing it with the
314
// for the
PAX
version of the USTAR string fields.
writer_test.go
151
// This file is in
PAX
format.
236
file: "testdata/
pax
-records.tar",
252
// Craft a theoretically valid
PAX
archive with global headers.
258
// $ bsdtar -tvf
pax
-global-records.tar
269
// $ gnutar -tvf
pax
-global-records.tar
277
// According to the
PAX
specification, this should have been the result:
282
file: "testdata/
pax
-global-records.tar",
370
file: "testdata/
pax
-nil-sparse-data.tar",
382
file: "testdata/
pax
-nil-sparse-hole.tar",
426
file: "testdata/
pax
-sparse-big.tar"
[
all
...]
reader.go
87
// Check for
PAX
/GNU special headers and files.
139
// Thus, setup the regFileReader again after merging
PAX
headers.
200
// readGNUSparsePAXHeaders checks the
PAX
headers for GNU sparse headers.
203
// by the the
PAX
header parsing logic.
214
return nil, nil // Unknown GNU sparse
PAX
version
218
return nil, nil // Not a
PAX
format GNU sparse file.
222
// Update hdr from GNU sparse
PAX
headers.
291
// parsePAX parses
PAX
headers.
300
// For GNU
PAX
sparse format 0.0 support.
302
// headers since 0.0 headers were not
PAX
compliant
[
all
...]
writer.go
77
// does not always result in the
PAX
format being chosen, which
145
// Add and modify appropriate
PAX
records.
158
// Write
PAX
records to the output.
310
// shared in the USTAR,
PAX
, and GNU formats using the provided formatters.
reader_test.go
203
file: "testdata/
pax
.tar",
245
file: "testdata/
pax
-bad-hdr-file.tar",
248
file: "testdata/
pax
-bad-mtime-file.tar",
251
file: "testdata/
pax
-pos-size-file.tar",
271
file: "testdata/
pax
-records.tar",
285
file: "testdata/
pax
-global-records.tar",
445
file: "testdata/
pax
-multi-hdrs.tar",
508
// BSD tar v3.1.2 and GNU tar v1.27.1 both rejects
PAX
records
510
file: "testdata/
pax
-nul-xattrs.tar",
513
// BSD tar v3.1.2 rejects a
PAX
path with NUL in the value, whil
[
all
...]
tar_test.go
524
paxHdrs map[string]string // Expected
PAX
headers that may be needed
791
"
PAX
",
/external/swiftshader/third_party/LLVM/utils/buildit/
GNUmakefile
101
$(
PAX
) -rw . $(SRCROOT); \
Completed in 511 milliseconds