Lines Matching refs:path

178     public function _case_metadata_touch_with_xxx_arguments($arguments, $path, $time, $atime)  argument
182 … $this->function->touch = function ($path, $time, $atime) use (&$_path, &$_time, &$_atime) {
183 $_path = $path;
191 ->when($result = $wrapper->stream_metadata($path, STREAM_META_TOUCH, $arguments))
196 ->isEqualTo($path)
222 $this->function->chown = function ($path, $user) use (&$_path, &$_user) {
223 $_path = $path;
228 $path = 'foo',
236 ->string($path)
256 $this->function->chgrp = function ($path, $group) use (&$_path, &$_group) {
257 $_path = $path;
262 $path = 'foo',
270 ->string($path)
290 $this->function->chmod = function ($path, $mode) use (&$_path, &$_mode) {
291 $_path = $path;
296 $path = 'foo',
304 ->string($path)
328 …$this->function->fopen = function ($path, $mode, $options) use (&$_path, &$_mode, &$_options, &$_o…
329 $_path = $path;
333 return fopen($path, $mode, $options);
336 $path = 'hoa://Test/Vfs/Foo?type=file',
340 ->when($result = $wrapper->stream_open($path, $mode, $options, $openedPath))
344 ->string(SUT::realPath($path, true))
362 $path = LUT::NO_RESOLUTION,
366 ->when($result = $wrapper->stream_open($path, $mode, $options, $openedPath))
376 …$this->function->fopen = function ($path, $mode, $options) use (&$_path, &$_mode, &$_options, &$_o…
377 $_path = $path;
381 return fopen($path, $mode, $options);
386 $path = 'hoa://Test/Vfs/Foo?type=file',
390 ->when($result = $wrapper->stream_open($path, $mode, $options, $openedPath))
394 ->string(SUT::realPath($path, true))
603 $this->function->opendir = function ($path) use (&$_path) {
604 $_path = $path;
606 return opendir($path);
609 $path = 'hoa://Test/Vfs/Bar?type=directory',
612 ->when($result = $wrapper->dir_opendir($path, $options))
616 ->string(SUT::realPath($path, true))
628 $this->function->opendir = function ($path) use (&$_path) {
629 $_path = $path;
634 $path = 'hoa://Test/Vfs/Bar?type=directory',
637 ->when($result = $wrapper->dir_opendir($path, $options))
641 ->string(SUT::realPath($path, true))
729 … $this->function->mkdir = function ($path, $mode, $options) use (&$_path, &$_mode, &$_options) {
730 $_path = $path;
738 $path = 'Baz',
742 ->when($result = $wrapper->mkdir($path, $mode, $options))
747 ->isEqualTo($path)
783 $this->function->rmdir = function ($path) use (&$_path) {
784 $_path = $path;
786 return rmdir($path);
840 $this->function->stat = function ($path) use (&$_path) {
841 $_path = $path;
843 return stat($path);
847 $path = 'hoa://Test/Vfs/Foo?type=file'
849 ->when($result = $wrapper->url_stat($path, 0))
873 ->isEqualTo(SUT::realPath($path));
881 $path = LUT::NO_RESOLUTION
883 ->when(function () use ($wrapper, $path) {
884 $wrapper->url_stat($path, 0);