Lines Matching refs:parentend
405 php_file_descriptor_t parentend, childend; /* fds for pipes in parent/child */ member
583 descriptors[ndesc].parentend = newpipe[1]; in PHP_FUNCTION()
587 descriptors[ndesc].parentend = newpipe[0]; in PHP_FUNCTION()
592 descriptors[ndesc].parentend = dup_handle(descriptors[ndesc].parentend, FALSE, TRUE); in PHP_FUNCTION()
664 descriptors[ndesc].parentend = dup(dev_ptmx); in PHP_FUNCTION()
744 if (descriptors[i].parentend) { in PHP_FUNCTION()
745 CloseHandle(descriptors[i].parentend); in PHP_FUNCTION()
794 if (descriptors[i].parentend) in PHP_FUNCTION()
795 close(descriptors[i].parentend); in PHP_FUNCTION()
835 close(descriptors[i].parentend); in PHP_FUNCTION()
861 if (descriptors[i].parentend) in PHP_FUNCTION()
862 close(descriptors[i].parentend); in PHP_FUNCTION()
929 stream = php_stream_fopen_from_fd(_open_osfhandle((zend_intptr_t)descriptors[i].parentend, in PHP_FUNCTION()
933 stream = php_stream_fopen_from_fd(descriptors[i].parentend, mode_string, NULL); in PHP_FUNCTION()
936 fcntl(descriptors[i].parentend, F_SETFD, FD_CLOEXEC); in PHP_FUNCTION()