Home
last modified time | relevance | path

Searched refs:readbytes (Results 1 – 2 of 2) sorted by relevance

/plugin/elwikiupgrade/
H A DVerboseTarLib.class.php78 while($read = $this->readbytes(512)) {
124 while($dat = $this->readbytes(512)) {
182 fwrite($fp, $this->readbytes(512), 512);
184 … if(($header['size'] % 512) != 0) fwrite($fp, $this->readbytes(512), $header['size'] % 512);
385 protected function readbytes($length) { function in VerboseTar
527 $filename = trim($this->readbytes(ceil($header['size'] / 512) * 512));
529 $block = $this->readbytes(512);
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DTar.php115 while ($read = $this->readbytes(512)) {
168 while ($dat = $this->readbytes(512)) {
201 fwrite($fp, $this->readbytes(512), 512);
204 fwrite($fp, $this->readbytes(512), $header['size'] % 512);
439 protected function readbytes($length) function in splitbrain\\PHPArchive\\Tar
632 $filename = trim($this->readbytes(ceil($return['size'] / 512) * 512));
634 $block = $this->readbytes(512);