Searched refs:tty (Results 1 – 5 of 5) sorted by relevance
/php-uv/tests/ |
H A D | 800-uv_tty.phpt | 6 die("skip test requiring a tty\n"); 11 uv_fs_open(uv_default_loop(), "/dev/tty", UV::O_RDONLY, 0, function($r) { 12 $tty = uv_tty_init(uv_default_loop(), $r, 1); 13 uv_tty_get_winsize($tty, $width, $height);
|
/php-uv/examples/ |
H A D | tty.php | 4 $tty = uv_tty_init(uv_default_loop(), $fd, 1); variable 5 var_dump(uv_tty_get_winsize($tty, $width, $height));
|
/php-uv/ |
H A D | php_uv.h | 174 uv_tty_t tty; member
|
H A D | README.md | 2770 initialize tty resource. you have to open tty your hand. 2788 ### long uv_tty_get_winsize(resource $tty, long &$width, long &$height) 2791 ### long uv_tty_set_mode(resource $tty, long $mode)
|
H A D | php_uv.c | 3160 ZEND_ARG_INFO(0, tty) 6007 error = uv_tty_get_winsize(&uv->uv.tty, &width, &height); 6032 error = uv_tty_set_mode(&uv->uv.tty, mode);
|
Completed in 25 milliseconds