Searched refs:descriptors (Results 1 – 11 of 11) sorted by relevance
/PHP-5.4/ext/standard/ |
H A D | proc_open.c | 516 memset(descriptors, 0, sizeof(descriptors)); in PHP_FUNCTION() 609 descriptors[ndesc].parentend = dup_handle(descriptors[ndesc].parentend, FALSE, TRUE); in PHP_FUNCTION() 719 switch(descriptors[i].index) { in PHP_FUNCTION() 764 if (descriptors[i].parentend) { in PHP_FUNCTION() 813 close(descriptors[i].childend); in PHP_FUNCTION() 814 if (descriptors[i].parentend) in PHP_FUNCTION() 852 if (dup2(descriptors[i].childend, descriptors[i].index) < 0) in PHP_FUNCTION() 854 if (descriptors[i].childend != descriptors[i].index) in PHP_FUNCTION() 855 close(descriptors[i].childend); in PHP_FUNCTION() 881 close(descriptors[i].childend); in PHP_FUNCTION() [all …]
|
/PHP-5.4/ext/standard/tests/general_functions/ |
H A D | bug39322.phpt | 10 $descriptors = array( 17 $process = proc_open('/bin/sleep 120', $descriptors, $pipes);
|
/PHP-5.4/ext/standard/tests/file/ |
H A D | bug60120.phpt | 23 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w')); 28 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
|
H A D | php_fd_wrapper_03.phpt | 18 Warning: fopen(php://fd/-2): failed to open stream: The file descriptors must be non-negative numbe…
|
/PHP-5.4/ext/oci8/ |
H A D | oci8_lob.c | 95 if (!connection->descriptors) { in php_oci_lob_create() 96 ALLOC_HASHTABLE(connection->descriptors); in php_oci_lob_create() 97 zend_hash_init(connection->descriptors, 0, NULL, php_oci_descriptor_flush_hash_dtor, 0); in php_oci_lob_create() 108 …zend_hash_index_update(connection->descriptors,descriptor->index,&descriptor,sizeof(php_oci_descri… in php_oci_lob_create() 678 if (descriptor->connection->descriptors) { in php_oci_lob_free() 680 zend_hash_index_del(descriptor->connection->descriptors, descriptor->index); in php_oci_lob_free() 681 if (zend_hash_num_elements(descriptor->connection->descriptors) == 0) { in php_oci_lob_free()
|
H A D | php_oci8_int.h | 132 …HashTable *descriptors; /* descriptors hash, used to flush all the LOBs using this connectio… member
|
H A D | oci8.c | 1601 zend_hash_destroy(connection->descriptors); in php_oci_connection_descriptors_free() 1602 efree(connection->descriptors); in php_oci_connection_descriptors_free() 1603 connection->descriptors = NULL; in php_oci_connection_descriptors_free() 2354 if (connection->descriptors) { in php_oci_connection_release()
|
H A D | oci8_interface.c | 1107 if (connection->descriptors) { 1131 if (connection->descriptors) {
|
/PHP-5.4/ext/mysql/tests/ |
H A D | bug55473.phpt | 2 Bug #55473 (mysql_pconnect leaks file descriptors on reconnect)
|
/PHP-5.4/ext/fileinfo/tests/ |
H A D | magic | 1523 >>20 beshort x \b, descriptors %d 1525 # We could glean this from the partition descriptors, but they are empty!?!? 10700 # Flash descriptors for Intel SPI flash roms.
|
/PHP-5.4/ |
H A D | NEWS | 2243 . Fixed bug #55473 (mysql_pconnect leaks file descriptors on reconnect).
|
Completed in 81 milliseconds