Searched refs:xrec_size (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/tar/
H A Dtar.c633 static size_t xrec_size = 8 * PATH_MAX; /* extended rec initial size */ variable
970 if ((xrec_ptr = malloc(xrec_size)) == NULL) {
6877 if (bufneeded >= xrec_size) {
6879 xrec_size = bufneeded + 1;
6880 if ((xrec_ptr = malloc(xrec_size)) == NULL)
6894 length = xrec_size;
7071 if (xrec_offset + len > xrec_size) {
7072 if (((curr_ptr = realloc(xrec_ptr, 2 * xrec_size)) == NULL))
7076 xrec_size *= 2;
7110 if (xrec_offset + len > xrec_size) {
[all...]

Completed in 74 milliseconds