Home
last modified time | relevance | path

Searched refs:fread (Results 1 – 25 of 229) sorted by last modified time

12345678910

/plugin/siteexport/inc/
H A DpatchCSSmgr.php25 $contents = fread($fp, filesize($path));
/plugin/linkback/
H A Dhttp.php144 $r_headers .= fread($socket, 1); #FIXME read full lines here?
219 $byte = fread($socket, 1);
223 $byte = fread($socket, 1); // readtrailing \n
225 $this_chunk = fread($socket, $chunk_size);
228 $byte = fread($socket, 2); // read trailing \r\n
249 $r_body .= fread($socket, 4096);
/plugin/shell/
H A DP0wnyShell.php75 $output .= fread($handle, 4096);
/plugin/geophp/vendor/funiq/geophp/src/
H A DgeoPHP.php347 $bin = fread($mem, 11);
423 $string = trim(fread($mem, 8));
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DBinaryReader.php79 $char = fread($this->buffer, 1);
89 $char = fread($this->buffer, 1);
99 $int32 = fread($this->buffer, 4);
110 $bin = fread($this->buffer, $length);
/plugin/photogallery/phpThumb/docs/
H A Dphpthumb.changelog.txt527 * Bugfix: [#1439110] Limit fread() calls to 8kB
/plugin/photogallery/phpThumb/
H A Dphpthumb.bmp.php34 $BMPdata = fread($fp, filesize($filename));
H A Dphpthumb.class.php2949 $buffer = fread($fp_mask, 8192);
3017 $buffer = fread($fp_watermark, 8192);
3834 $rawimagedata .= fread($fp, $blocksize);
4049 $this->rawImageData .= fread($fp, 32768);
4081 $HeaderFourBytes = fread($fp, 4);
H A Dphpthumb.functions.php595 $buffer = fread($fp, 8192);
827 $buffer = fread($fp, 8192);
1056 $buffer = fread($fp, 8192);
H A Dphpthumb.gif.php827 $this->m_lpData = @fread($fh, @filesize($lpszFileName));
855 $data = @fread($fh, @filesize($lpszFileName));
/plugin/authwordpress/
H A Dclass-phpass.php70 $output = fread($fh, $count);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php19433 $s = fread($fh, 2);
H A DOtlDump.php339 return fread($this->fh, 4);
345 $s = fread($this->fh, 2);
367 $s = fread($this->fh, 2);
375 $s = fread($this->fh, 4);
384 $s = fread($this->fh, 2);
392 $s = fread($this->fh, 4);
440 return (fread($this->fh, $length));
451 return (fread($this->fh, $length));
647 $panose = fread($this->fh, 10);
4153 $hm = fread(
[all...]
H A DTTFontFile.php420 return fread($this->fh, 4);
426 $s = fread($this->fh, 2);
448 $s = fread($this->fh, 2);
456 $s = fread($this->fh, 4);
465 $s = fread($this->fh, 2);
473 $s = fread($this->fh, 4);
521 $data = (fread($this->fh, $length));
524 // if fread is used to read from a compressed / buffered stream (e.g. phar://...)
525 // the $length parameter will be ignored - fread is limited in size (usually 8192 bytes)
530 $data .= fread(
[all...]
H A DTTFontFileAnalysis.php228 $panose = fread($this->fh, 10);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DStreamReader.php413 $this->buffer = $length > 0 ? \fread($this->stream, $length) : '';
462 $this->buffer .= \fread($this->stream, $newLength - $this->bufferLength);
/plugin/dw2pdf/vendor/mpdf/qrcode/src/
H A DQrCode.php502 $this->matrixXArray = unpack('C*', fread($fp1, $this->byteCount));
503 $this->matrixYArray = unpack('C*', fread($fp1, $this->byteCount));
504 $this->maskArray = unpack('C*', fread($fp1, $this->byteCount));
505 $this->formatInformationX2 = unpack('C*', fread($fp1, 15));
506 $this->formatInformationY2 = unpack('C*', fread($fp1, 15));
507 $this->rsEccCodewords = ord(fread($fp1, 1));
508 $this->rsBlockOrder = unpack('C*', fread($fp1, 128));
525 $rsTable[$i] = fread($fp0, $this->rsEccCodewords);
/plugin/combo/vendor/symfony/process/Pipes/
H A DUnixPipes.php131 $data = @fread($pipe, self::CHUNK_SIZE);
H A DAbstractPipes.php139 $data = fread($input, self::CHUNK_SIZE);
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DTar.php293 $data = fread($fp, 512);
446 return @fread($this->fh, $length);
698 $magic = fread($fh, 5);
H A DZip.php212 $buffer = fread($this->fh, $read_size);
342 $block = fread($fp, 512);
556 $byte = @fread($this->fh, 1);
566 fread($this->fh, 18)
570 $centd['comment'] = fread($this->fh, $data['comment_size']);
592 $binary_data = fread($this->fh, 46);
599 $header['filename'] = fread($this->fh, $header['filename_len']);
605 $header['extra'] = fread($this->fh, $header['extra_len']);
613 $header['comment'] = fread($this->fh, $header['comment_len']);
640 $binary_data = fread(
[all...]
/plugin/upgrade/HTTP/
H A DHTTPClient.php653 $bytes = fread($socket, $to_read);
/plugin/statistics/inc/pchart/
H A DpChart.php3142 $MapContent = fread($Handle, filesize($FileName));
/plugin/odt/ODT/css/
H A Dcssimportnew.php1028 $contents = fread($handle, filesize($filename));
/plugin/odt/helper/
H A Dcssimport.php1240 $contents = fread($handle, filesize($filename));
1265 $contents = fread($handle, $filesize);

12345678910