Searched refs:TarUtils (Results 1 – 6 of 6) sorted by relevance
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/tar/ |
D | TarUtilsTest.java | 38 int off = TarUtils.formatNameBytes(sb1, buff, 1, buff.length-1); in testName() 40 String sb2 = TarUtils.parseName(buff, 1, 10); in testName() 42 sb2 = TarUtils.parseName(buff, 1, 19); in testName() 45 off = TarUtils.formatNameBytes(sb1, buff, 1, buff.length-1); in testName() 47 sb2 = TarUtils.parseName(buff, 1, buff.length-1); in testName() 50 sb2 = TarUtils.parseName(buff, 0, 3); in testName() 62 value = TarUtils.parseOctal(buffer,0, buffer.length); in testParseOctal() 65 value = TarUtils.parseOctal(buffer,0, buffer.length); in testParseOctal() 68 value = TarUtils.parseOctal(buffer,0, buffer.length); in testParseOctal() 71 value = TarUtils.parseOctal(buffer,0, buffer.length); in testParseOctal() [all …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/ |
D | TarArchiveEntry.java | 1156 writeEntryHeader(outbuf, TarUtils.DEFAULT_ENCODING, false); in writeEntryHeader() 1159 writeEntryHeader(outbuf, TarUtils.FALLBACK_ENCODING, false); in writeEntryHeader() 1182 offset = TarUtils.formatNameBytes(name, outbuf, offset, NAMELEN, in writeEntryHeader() 1200 offset = TarUtils.formatNameBytes(linkName, outbuf, offset, NAMELEN, in writeEntryHeader() 1202 offset = TarUtils.formatNameBytes(magic, outbuf, offset, MAGICLEN); in writeEntryHeader() 1203 offset = TarUtils.formatNameBytes(version, outbuf, offset, VERSIONLEN); in writeEntryHeader() 1204 offset = TarUtils.formatNameBytes(userName, outbuf, offset, UNAMELEN, in writeEntryHeader() 1206 offset = TarUtils.formatNameBytes(groupName, outbuf, offset, GNAMELEN, in writeEntryHeader() 1217 final long chk = TarUtils.computeCheckSum(outbuf); in writeEntryHeader() 1219 TarUtils.formatCheckSumOctalBytes(chk, outbuf, csOffset, CHKSUMLEN); in writeEntryHeader() [all …]
|
D | TarArchiveSparseEntry.java | 57 isExtended = TarUtils.parseBoolean(headerBuf, offset); in TarArchiveSparseEntry()
|
D | TarUtils.java | 36 public class TarUtils { class 80 private TarUtils(){ in TarUtils() method in TarUtils
|
/external/apache-commons-compress/src/changes/ |
D | release-notes.vm | 504 o COMPRESS-179: TarUtils.formatLongOctalOrBinaryBytes() assumes the field will be 12 bytes long 639 o COMPRESS-118: TarUtils.parseName does not properly handle characters outside the range 0-127
|
/external/apache-commons-compress/ |
D | RELEASE-NOTES.txt | 904 o COMPRESS-179: TarUtils.formatLongOctalOrBinaryBytes() assumes the field will be 12 bytes long 1039 o COMPRESS-118: TarUtils.parseName does not properly handle characters outside the range 0-127
|