Searched refs:isTtySupported (Results 1 – 3 of 3) sorted by relevance
| /plugin/combo/vendor/symfony/process/ |
| H A D | Process.php | 1063 if ($tty && !self::isTtySupported()) { 1256 public static function isTtySupported(): bool function in Symfony\\Component\\Process\\Process 1258 static $isTtySupported; 1260 if (null === $isTtySupported) { 1261 …$isTtySupported = (bool) @proc_open('echo 1 >/dev/null', [['file', '/dev/tty', 'r'], ['file', '/de… 1264 return $isTtySupported;
|
| H A D | CHANGELOG.md | 42 * added the `Process::isTtySupported()` method that allows to check for TTY support
|
| /plugin/jplayer/vendor/symfony/process/ |
| D | Process.php | 1030 static $isTtySupported; 1032 if (null === $isTtySupported) { 1033 …$isTtySupported = (bool) @proc_open('echo 1 >/dev/null', [['file', '/dev/tty', 'r'], ['file', '/de… 1036 if (!$isTtySupported) {
|