Lines Matching refs:lockHandles
31 private $lockHandles = []; variable in Symfony\\Component\\Process\\Pipes\\WindowsPipes
68 if (isset($this->lockHandles[$pipe])) {
69 flock($this->lockHandles[$pipe], \LOCK_UN);
70 fclose($this->lockHandles[$pipe]);
72 $this->lockHandles[$pipe] = $h;
75 flock($this->lockHandles[$pipe], \LOCK_UN);
76 fclose($this->lockHandles[$pipe]);
77 unset($this->lockHandles[$pipe]);
155 flock($this->lockHandles[$type], \LOCK_UN);
156 fclose($this->lockHandles[$type]);
157 unset($this->fileHandles[$type], $this->lockHandles[$type]);
189 flock($this->lockHandles[$type], \LOCK_UN);
190 fclose($this->lockHandles[$type]);
192 $this->fileHandles = $this->lockHandles = [];