Lines Matching refs:dev_ptmx
492 php_file_descriptor_t dev_ptmx = -1; /* master */ in PHP_FUNCTION() local
677 if (dev_ptmx == -1) { in PHP_FUNCTION()
679 dev_ptmx = open("/dev/ptmx", O_RDWR); in PHP_FUNCTION()
680 if (dev_ptmx == -1) { in PHP_FUNCTION()
684 grantpt(dev_ptmx); in PHP_FUNCTION()
685 unlockpt(dev_ptmx); in PHP_FUNCTION()
686 slave_pty = open(ptsname(dev_ptmx), O_RDWR); in PHP_FUNCTION()
695 descriptors[ndesc].parentend = dup(dev_ptmx); in PHP_FUNCTION()
842 if (dev_ptmx >= 0) { in PHP_FUNCTION()
873 if (dev_ptmx >= 0) { in PHP_FUNCTION()
874 close(dev_ptmx); in PHP_FUNCTION()
926 if (dev_ptmx >= 0) { in PHP_FUNCTION()
927 close(dev_ptmx); in PHP_FUNCTION()
996 if (dev_ptmx >= 0) { in PHP_FUNCTION()
997 close(dev_ptmx); in PHP_FUNCTION()