Searched refs:filePointer (Results  1 – 5 of 5) sorted by relevance
| /plugin/combo/ComboStrap/ | 
| H A D | Mutex.php | 25     private $filePointer;  variable in ComboStrap\\Mutex39         $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);
 
 | 
| H A D | Lock.php | 50     private $filePointer = null;  variable in ComboStrap\\Lock152         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);
 
 | 
| H A D | Lang.php | 56                     $filePointer = fopen($downloadUrl, 'r');58                     $filePointer = @fopen($downloadUrl, 'r');
 60                 if ($filePointer != false) {
 62                     $numberOfByte = @file_put_contents($languageDataCache->cache, $filePointer);
 
 | 
| H A D | IconDownloader.php | 475             $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/ | 
| H A D | staticresource.php | 348         $filePointer = @fopen($mediaToSend->toAbsolutePath()->toAbsoluteId(), "rb");349         if ($filePointer) {
 350             http_rangeRequest($filePointer, FileSystems::getSize($mediaToSend), $mime->toString());
 
 |