Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 3 of 3) sorted by path

/dokuwiki/conf/
H A Dmime.conf21 tgz !application/octet-stream
23 gz !application/octet-stream
24 bz2 !application/octet-stream
32 rpm !application/octet-stream
33 deb !application/octet-stream
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php94 private $stream;
232 $this->stream = [];
233 $this->stream[self::DECRYPT] = $this->stream[self::ENCRYPT] = [
255 $stream = &$this->stream[$mode];
257 $i = &$stream[0];
258 $j = &$stream[1];
259 $keyStream = &$stream[2];
261 $i = $stream[
119 var $stream; global() variable in phpseclib\\Crypt\\RC4
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DParser.php160 if (($stream = fopen($wrapper, 'r+')) &&
161 fwrite($stream, $data) &&
162 rewind($stream)) {
165 $stream_data = fread($stream, 1048576);
166 if (!xml_parse($xml, $stream_data === false ? '' : $stream_data, feof($stream))) {
172 } while (!feof($stream));
173 fclose($stream);