Home
last modified time | relevance | path

Searched refs:bufferSize (Results 26 – 27 of 27) sorted by last modified time

12

/plugin/zip/pear/File/Archive/Reader/
H A DCache.php61 $bufferSize = File_Archive::getOption('blockSize');
62 while (($data = $this->source->getData($bufferSize))!=null) {
/plugin/zip/pear/File/Archive/
H A DReader.php239 function sendData(&$writer, $bufferSize = 0) argument
244 if ($bufferSize <= 0) {
245 $bufferSize = File_Archive::getOption('blockSize');
255 while (($data = $this->getData($bufferSize)) !== null) {
273 * @param int $bufferSize Size of the chunks that will be sent to the writer
276 function extract(&$writer, $autoClose = true, $bufferSize = 0) argument
297 $error = $this->sendData($writer, $bufferSize);
318 * @param int $bufferSize Size of the chunks that will be sent to the writer
322 $autoClose = true, $bufferSize = 0) argument
329 $result = $this->sendData($writer, $bufferSize);

12