Lines Matching refs:data
2 Bug #77069 (stream filter loses final block of data)
6 private $data = '';
11 // While input data is available, continue to read it.
13 $this->data .= $bucket_in->data;
17 while (preg_match('/(.*?)[\r\n]+(.*)/s', $this->data, $match) === 1) {
18 list(, $data, $this->data) = $match;
20 $data = strrev($data) . PHP_EOL;
21 $bucket_out = stream_bucket_new($this->stream, $data);
28 if ($closing && $this->data !== '') {
29 $data = strrev($this->data) . PHP_EOL;
30 $bucket_out = stream_bucket_new($this->stream, $data);
43 $stream = fopen('data://text/plain,' . $input, 'r');