Home
last modified time | relevance | path

Searched refs:descriptors (Results 1 – 23 of 23) sorted by relevance

/PHP-8.3/ext/standard/
H A Dproc_open.c685 switch (descriptors[i].index) { in init_startup_info()
1021 &descriptors[ndesc], (int)Z_LVAL_P(ztarget), descriptors, ndesc, nindex); in set_proc_descriptor_from_array()
1076 if (descriptors[i].childend != descriptors[i].index) { in close_parentends_of_pipes()
1077 r = posix_spawn_file_actions_adddup2(actions, descriptors[i].childend, descriptors[i].index); in close_parentends_of_pipes()
1080 "file descriptor %d: %s", descriptors[i].childend, descriptors[i].index, strerror(r)); in close_parentends_of_pipes()
1104 if (descriptors[i].childend != descriptors[i].index) { in close_parentends_of_pipes()
1105 if (dup2(descriptors[i].childend, descriptors[i].index) < 0) { in close_parentends_of_pipes()
1107 "file descriptor %d: %s", descriptors[i].childend, descriptors[i].index, strerror(errno)); in close_parentends_of_pipes()
1123 if (descriptors[i].parentend) in close_all_descriptors()
1508 if (descriptors) { in PHP_FUNCTION()
[all …]
/PHP-8.3/ext/standard/tests/file/
H A Dbug69442.phpt8 $descriptors = array(array("pty"), array("pty"), array("pty"), array("pipe", "w"));
10 $process = proc_open('echo "foo";', $descriptors, $pipes);
26 $descriptors = array(array("pty"), array("pty"), array("pty"), array("pipe", "w"));
29 $process = proc_open($cmd, $descriptors, $pipes);
H A Dbug60120.phpt18 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
22 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
H A Dphp_fd_wrapper_03.phpt19 Warning: fopen(php://fd/-2): Failed to open stream: The file descriptors must be non-negative numbe…
/PHP-8.3/ext/posix/tests/
H A Dposix_ttyname_error_wrongparams.phpt18 $descriptors = [["pty"], ["pty"], ["pty"], ["pipe", "w"]];
20 $process = proc_open('echo "foo";', $descriptors, $pipes);
H A Dposix_isatty_value_errors.phpt2 posix_isatty(): errors for invalid file descriptors
H A Dposix_ttyname_value_errors.phpt2 posix_ttyname(): errors for invalid file descriptors
/PHP-8.3/ext/standard/tests/general_functions/
H A Dbug39322.phpt10 $descriptors = array(
17 $process = proc_open('/bin/sleep 120', $descriptors, $pipes);
/PHP-8.3/ext/standard/tests/streams/
H A Dproc_open_bug51800_right.phpt20 $descriptors = array(
43 $process = proc_open($cmd, $descriptors, $pipes);
H A Dproc_open_bug51800_right2.phpt14 $descriptors = array(
43 $process = proc_open($cmd, $descriptors, $pipes);
H A Dproc_open_bug64438.phpt13 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
17 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
H A Dgh9590-001.phpt30 It is set to 1024, but you have descriptors numbered at least as high as %d.
H A Dgh9590-002.phpt32 It is set to 1024, but you have descriptors numbered at least as high as %d.
/PHP-8.3/ext/oci8/
H A Doci8_lob.c93 if (!connection->descriptors) { in php_oci_lob_create()
94 ALLOC_HASHTABLE(connection->descriptors); in php_oci_lob_create()
95 zend_hash_init(connection->descriptors, 0, NULL, php_oci_descriptor_flush_hash_dtor, 0); in php_oci_lob_create()
106 zend_hash_index_update_ptr(connection->descriptors, descriptor->index, descriptor); in php_oci_lob_create()
662 if (descriptor->connection->descriptors) { in php_oci_lob_free()
663 if (zend_hash_num_elements(descriptor->connection->descriptors) == 0) { in php_oci_lob_free()
667 zend_hash_index_del(descriptor->connection->descriptors, descriptor->index); in php_oci_lob_free()
H A Doci8.c620 zend_hash_destroy(connection->descriptors); in php_oci_connection_descriptors_free()
621 efree(connection->descriptors); in php_oci_connection_descriptors_free()
622 connection->descriptors = NULL; in php_oci_connection_descriptors_free()
1406 if (connection->descriptors) { in php_oci_connection_release()
H A Dphp_oci8_int.h155 …HashTable *descriptors; /* descriptors hash, used to flush all the LOBs using this connectio… member
H A Doci8_interface.c1007 if (connection->descriptors) { in PHP_FUNCTION()
1030 if (connection->descriptors) { in PHP_FUNCTION()
/PHP-8.3/ext/sockets/
H A Dconversions.c249 const field_descriptor *descriptors, in from_zval_write_aggregation() argument
259 for (descr = descriptors; descr->name != NULL && !ctx->err.has_error; descr++) { in from_zval_write_aggregation()
281 const field_descriptor *descriptors, in to_zval_read_aggregation() argument
1008 static const field_descriptor descriptors[] = { in to_zval_read_control() local
1016 to_zval_read_aggregation(cmsghdr_c, zv, descriptors, ctx); in to_zval_read_control()
1143 static const field_descriptor descriptors[] = { in from_zval_write_msghdr_send() local
1150 from_zval_write_aggregation(container, msghdr_c, descriptors, ctx); in from_zval_write_msghdr_send()
1168 static const field_descriptor descriptors[] = { in from_zval_write_msghdr_recv() local
1183 from_zval_write_aggregation(container, msghdr_c, descriptors, ctx); in from_zval_write_msghdr_recv()
1233 static const field_descriptor descriptors[] = { in to_zval_read_msghdr() local
[all …]
/PHP-8.3/ext/mysqli/tests/
H A Dgh9590.phpt58 It is set to 1024, but you have descriptors numbered at least as high as %d.
/PHP-8.3/sapi/fpm/tests/
H A Dlogreader.inc22 * Log descriptors.
H A Dtester.inc1146 * Close all open descriptors and process resources
/PHP-8.3/ext/fileinfo/tests/
H A Dmagic2460 # number of driver descriptors sbDrvrCount <= 61
22624 # Flash descriptors for Intel SPI flash roms.
H A Dmagic私はガラスを食べられます2460 # number of driver descriptors sbDrvrCount <= 61
22624 # Flash descriptors for Intel SPI flash roms.

Completed in 200 milliseconds