Lines Matching refs:dev_ptmx
444 php_file_descriptor_t dev_ptmx = -1; /* master */ in PHP_FUNCTION() local
638 if (dev_ptmx == -1) { in PHP_FUNCTION()
640 dev_ptmx = open("/dev/ptmx", O_RDWR); in PHP_FUNCTION()
641 if (dev_ptmx == -1) { in PHP_FUNCTION()
645 grantpt(dev_ptmx); in PHP_FUNCTION()
646 unlockpt(dev_ptmx); in PHP_FUNCTION()
647 slave_pty = open(ptsname(dev_ptmx), O_RDWR); in PHP_FUNCTION()
656 descriptors[ndesc].parentend = dup(dev_ptmx); in PHP_FUNCTION()
799 if (dev_ptmx >= 0) { in PHP_FUNCTION()
815 if (dev_ptmx >= 0) { in PHP_FUNCTION()
816 close(dev_ptmx); in PHP_FUNCTION()
881 if (dev_ptmx >= 0) { in PHP_FUNCTION()
882 close(dev_ptmx); in PHP_FUNCTION()
959 if (dev_ptmx >= 0) { in PHP_FUNCTION()
960 close(dev_ptmx); in PHP_FUNCTION()