Searched refs:headBuf (Results 1 – 1 of 1) sorted by relevance
/third_party/node/deps/npm/node_modules/tar/lib/ |
D | replace.js | 57 const headBuf = Buffer.alloc(512) constant 62 fd, headBuf, bufPos, headBuf.length - bufPos, position + bufPos 65 if (position === 0 && headBuf[0] === 0x1f && headBuf[1] === 0x8b) 72 let h = new Header(headBuf) 119 const headBuf = Buffer.alloc(512) constant 126 fd, headBuf, bufPos, headBuf.length - bufPos, 130 if (position === 0 && headBuf[0] === 0x1f && headBuf[1] === 0x8b) 137 const h = new Header(headBuf) 152 fs.read(fd, headBuf, 0, 512, position, onread) 154 fs.read(fd, headBuf, 0, 512, position, onread)
|