Home
last modified time | relevance | path

Searched refs:getData (Results 526 – 531 of 531) sorted by path

1...<<2122

/plugin/zip/pear/File/Archive/Reader/
H A DGzip.php124 function getData($length = -1) function in File_Archive_Reader_Gzip
230 ($data = $this->getData(min($expectedPos - $this->filePos, 8192))) !== null) {
239 … ($data = $this->getData(min($expectedPos - $this->filePos, 8192))) !== null) {
249 while(($data = $this->getData(8192)) !== null) {
H A DMemory.php122 function getData($length = -1) function in File_Archive_Reader_Memory
H A DRelay.php76 function getData($length = -1) { return $this->source->getData($length); } function in File_Archive_Reader_Relay
H A DTar.php151 $rawHeader = $this->source->getData(512);
215 function getData($length = -1) function in File_Archive_Reader_Tar
226 $data = $this->source->getData($actualLength);
304 $data = $this->getData($blockPos);
307 $data .= $this->getData($length);
314 $data .= $this->getData();
H A DZip.php101 $header = $this->source->getData(4);
107 $header = $this->source->getData(26);
204 function getData($length = -1) function in File_Archive_Reader_Zip
263 $this->data = $this->source->getData($this->header['CLen']);
426 if ($this->source->getData(4) == "\x50\x4b\x05\x06") {
434 if ($nbRewind-- && $this->source->getData(1) == "\x50" &&
435 $nbRewind-- && $this->source->getData(1) == "\x4b" &&
436 $nbRewind-- && $this->source->getData(1) == "\x05" &&
460 $offset = $this->source->getData(4);
474 while ($this->source->getData(4) == "\x50\x4b\x01\x02") {
[all …]
/plugin/zip/pear/File/Archive/Writer/
H A DMemory.php94 function &getData() { return $this->data; } function in File_Archive_Writer_Memory

1...<<2122