Home
last modified time | relevance | path

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

/plugin/elwikiupgrade/
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/
DTar.php120 while ($read = $this->readbytes(512)) {
156 return $this->readbytes($length);
198 while ($dat = $this->readbytes(512)) {
231 fwrite($fp, $this->readbytes(512), 512);
234 fwrite($fp, $this->readbytes(512), $header['size'] % 512);
483 protected function readbytes($length) function in splitbrain\\PHPArchive\\Tar
679 $filename = trim($this->readbytes(ceil($return['size'] / 512) * 512));
681 $block = $this->readbytes(512);