Home
last modified time | relevance | path

Searched refs:filePointer (Results 1 – 5 of 5) sorted by relevance

/plugin/combo/ComboStrap/
DMutex.php25 private $filePointer; variable in ComboStrap\\Mutex
39 $this->filePointer = fopen($this->filePath,"w");
42 for($i = 0; $i < $wait && !($lock = flock($this->filePointer,LOCK_EX|LOCK_NB)); $i++)
52 return $this->filePointer;
57 $result = flock($this->filePointer,LOCK_UN);
58 fclose($this->filePointer);
DLock.php50 private $filePointer = null; variable in ComboStrap\\Lock
152 if ($this->filePointer !== null) {
153 fclose($this->filePointer);
154 $this->filePointer = null;
190 if ($this->filePointer === null) {
192 $this->filePointer = fopen($this->lockFile, $mode);
198 return flock($this->filePointer, LOCK_EX | LOCK_NB);
DLang.php56 $filePointer = fopen($downloadUrl, 'r');
58 $filePointer = @fopen($downloadUrl, 'r');
60 if ($filePointer != false) {
62 $numberOfByte = @file_put_contents($languageDataCache->cache, $filePointer);
DIconDownloader.php475 $filePointer = fopen($downloadUrl, 'r');
494 …= file_put_contents($mediaDokuPath->toLocalPath()->toAbsolutePath()->toAbsoluteId(), $filePointer);
533 $filePointer = file_put_contents($mediaFilePath, fopen($downloadUrl, 'r'));
534 if ($filePointer == false) {
/plugin/combo/action/
Dstaticresource.php348 $filePointer = @fopen($mediaToSend->toAbsolutePath()->toAbsoluteId(), "rb");
349 if ($filePointer) {
350 http_rangeRequest($filePointer, FileSystems::getSize($mediaToSend), $mime->toString());