Home
last modified time | relevance | path

Searched refs:fread (Results 26 – 50 of 229) sorted by last modified time

12345678910

/plugin/openid/Auth/OpenID/
H A DFileStore.php338 $assoc_s = fread($assoc_file, $filesize);
450 $assoc_s = fread($association_file,
H A DCryptUtil.php63 $bytes = fread($f, $num_bytes);
/plugin/fastwiki/
H A Daction.php331 $response .= fread($remote, 8192);
/plugin/pubmed2020/
H A Dsyntax.php725 $s = fread($myfile, filesize(DOKU_PLUGIN.'pubmed/tests/PM15924077.nbib'));
/plugin/captcha/
H A Dhelper.php577 $header = fread($fp, 36);
582 $header .= fread($fp, ($info['Subchunk1Size'] - 16));
586 $header .= fread($fp, 4);
589 $size = unpack('vsize', fread($fp, 4));
593 $data .= fread($fp, $size);
/plugin/statdisplay/pchart/
H A DpChart.php2926 $MapContent = fread ( $Handle, filesize ( $FileName ) );
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStream.php236 return $this->readable ? fread($this->stream, $length) : false;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DGuzzleStreamWrapperTest.php18 $this->assertSame('foo', fread($handle, 3));
22 $this->assertSame('foobar', fread($handle, 6));
23 $this->assertEmpty(fread($handle, 1));
/plugin/ckgedit/fckeditor/editor/filemanager/connectors/php/
H A Dutil.php126 $chunk = fread( $fp, 1024 ) ;
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DSapiTest.php153 fread($body, 13);
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php181 $consumed += strlen(fread($body, min($start - $consumed, $consumeBlock)));
489 $firstByte = fread($body, 1);
/plugin/indexmenu/inc/
H A Dpclzip.lib.php2063 $v_buffer = fread($this->zip_fd, $v_read_size);
2097 $v_buffer = @fread($v_zip_temp_fd, $v_read_size);
2492 $v_content_compressed = @fread($v_file, $p_header['size']);
2503 $v_content = @fread($v_file, $p_header['size']);
3646 $v_buffer = @fread($this->zip_fd, $v_read_size);
3669 $v_encryption_header = @fread($this->zip_fd, 12);
3673 $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']-12);
3683 $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']);
3834 $v_buffer = @fread($this->zip_fd, $p_entry['compressed_size']);
3844 $v_buffer = @fread(
[all...]
H A Drepo.class.php50 $ct = @fread($fp, $len);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DStream.php228 $string = fread($this->stream, $length);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSlackHandler.php178 @fread($res, 2048);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSFTP.php2223 … $temp = isset($fp) ? fread($fp, $sftp_packet_size) : substr($data, $sent, $sftp_packet_size);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/
H A DReadBytes.php36 $temp = fread($this->fsock, $length);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DCHANGELOG.md243 streams, which can sometimes return fewer bytes than requested with `fread`.
H A DREADME.md302 echo fread($resource, 6); // outputs hello!
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php1191 $temp = fread($fsock, 1024);
/plugin/a2s/
H A DASCIIToSVG.php152 $data = fread($this->yy_reader, 8192);
159 $data = fread($this->yy_reader, 8192);
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/
H A DSocket.php126 while (\strlen((string) ($buffer = \fread($this->socket, $this->options['buffer_size']))) > 0) {
/plugin/passpolicy/
H A Dhelper.php453 $rbytes = fread($fp, $bytes);
/plugin/quickstats/GEOIP/
H A Dgeoip.inc1391 shmop_write($shmid, fread($fp, $size), 0);
1465 $delim = fread($gi->filehandle, 3);
1467 $gi->databaseType = ord(fread($gi->filehandle, 1));
1497 $buf = fread($gi->filehandle, SEGMENT_RECORD_LENGTH);
1538 $gi->memory_buffer = fread($gi->filehandle, $s_array['size']);
1697 $buf = fread($gi->filehandle, 2 * $gi->record_length);
1744 $buf = fread($gi->filehandle, 2 * $gi->record_length);
1775 $org_buf = fread($gi->filehandle, MAX_ORG_RECORD_LENGTH);
H A Dgeoipcity.inc71 $record_buf = fread($gi->filehandle, FULL_RECORD_LENGTH);

12345678910