Lines Matching refs:this

71         return basename($this->getStreamName());
81 return dirname($this->getStreamName());
91 if (false === $this->getStatistic()) {
95 return filesize($this->getStreamName());
105 return fstat($this->getStream());
115 return fileatime($this->getStreamName());
125 return filectime($this->getStreamName());
135 return filemtime($this->getStreamName());
145 return filegroup($this->getStreamName());
155 return fileowner($this->getStreamName());
165 return fileperms($this->getStreamName());
184 $p = $this->getPermissions();
231 return is_readable($this->getStreamName());
241 return is_writable($this->getStreamName());
251 return is_executable($this->getStreamName());
261 clearstatcache(true, $this->getStreamName());
296 return touch($this->getStreamName(), $time, $atime);
311 $from = $this->getStreamName();
318 if (null === $this->getStreamContext()) {
322 return @copy($from, $to, $this->getStreamContext()->getContext());
343 $from = $this->getStreamName();
357 if (null === $this->getStreamContext()) {
361 return @rename($from, $name, $this->getStreamContext()->getContext());
371 if (null === $this->getStreamContext()) {
372 return @unlink($this->getStreamName());
376 $this->getStreamName(),
377 $this->getStreamContext()->getContext()
389 return chgrp($this->getStreamName(), $group);
400 return chmod($this->getStreamName(), $mode);
411 return chown($this->getStreamName(), $user);
437 return is_file($this->getStreamName());
447 return is_link($this->getStreamName());
457 return is_dir($this->getStreamName());
467 return filetype($this->getStreamName()) == 'socket';
477 return filetype($this->getStreamName()) == 'fifo';
487 return filetype($this->getStreamName()) == 'char';
497 return filetype($this->getStreamName()) == 'block';
507 return filetype($this->getStreamName()) == 'unknown';
519 $old = $this->_mode;
520 $this->_mode = $mode;
532 return $this->_mode;
542 return fileinode($this->getStreamName());
565 if (false === $out = realpath($this->getStreamName())) {
566 return $this->getStreamName();
580 $this->getStreamName(),
592 $file = basename($this->getStreamName());