Home
last modified time | relevance | path

Searched refs:openedPath (Results 1 – 3 of 3) sorted by relevance

/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DWrapper.php249 public function stream_open($path, $mode, $options, &$openedPath) argument
258 $openedPath = fopen($path, $mode, $options & STREAM_USE_PATH);
260 $openedPath = fopen(
268 if (false === is_resource($openedPath)) {
272 $this->_stream = $openedPath;
/plugin/findologicxmlexport/vendor/hoa/protocol/Test/Unit/
H A DWrapper.php340 ->when($result = $wrapper->stream_open($path, $mode, $options, $openedPath))
350 ->resource($openedPath)
366 ->when($result = $wrapper->stream_open($path, $mode, $options, $openedPath))
390 ->when($result = $wrapper->stream_open($path, $mode, $options, $openedPath))
400 ->resource($openedPath)
565 … $wrapper->stream_open('hoa://Test/Vfs/Foo?type=file', 'wb+', STREAM_USE_PATH, $openedPath),
893 $wrapper->stream_open('hoa://Test/Vfs/Foo?type=file', 'wb+', STREAM_USE_PATH, $openedPath);
894 fwrite($openedPath, $content, strlen($content));
895 fseek($openedPath, 0, SEEK_SET);
/plugin/findologicxmlexport/vendor/hoa/stream/Wrapper/IWrapper/
H A DStream.php151 public function stream_open($path, $mode, $options, &$openedPath); argument