Home
last modified time | relevance | path

Searched refs:data (Results 1401 – 1425 of 1800) sorted by relevance

1...<<51525354555657585960>>...72

/PHP-7.4/ext/phar/tests/
H A Dphar_stub_write_file.phpt30 $stub = fopen('data://,'.$stub, 'r');
/PHP-7.4/ext/oci8/tests/
H A Dconnect_scope2.phpt53 // Verify data was committed
H A Dconnect_scope1.phpt53 // Verify data was committed
/PHP-7.4/ext/pdo_dblib/tests/
H A Dtypes.phpt2 PDO_DBLIB: Column data types, with or without stringifying
/PHP-7.4/ext/standard/tests/streams/
H A Dbug61019.phpt44 //read outstanding data
/PHP-7.4/ext/date/tests/
H A Ddate_sunrise_variation7.phpt13 //Timezones with required data for date_sunrise
/PHP-7.4/ext/exif/tests/
H A Dexif014.phpt2 Check for exif_read_data, JPEG with IFD, EXIF and GPS data in Intel byte-order.
H A Dexif015.phpt2 Check for exif_read_data, JPEG with IFD, EXIF and GPS data in Motorola byte-order.
/PHP-7.4/ext/standard/tests/file/
H A Ddisk_total_space_error-win32.phpt29 fwrite( $fh, " Garbage data for the temporary file" );
H A Dfgetc_variation3.phpt30 $data = "fgetc_variation test";
31 fwrite($file_handle, $data);
H A Dfgets_variation1.phpt29 $data = "fgets_variation test";
30 fwrite($file_handle, $data);
H A Dfseek_ftell_rewind_variation2-win32.phpt39 echo "\n-- File having data of type ". $file_content_type ." --\n";
49 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
74 -- File having data of type text_with_new_line --
256 -- File having data of type alphanumeric --
H A Dfseek_ftell_rewind_variation2.phpt39 echo "\n-- File having data of type ". $file_content_type ." --\n";
49 fill_buffer($data_to_be_written, $file_content_type, 512); //get the data of size 512
74 -- File having data of type text_with_new_line --
256 -- File having data of type alphanumeric --
H A Dfread_variation1.phpt21 Description : Read data from file of size $read_size and verifies that $expected_size no. of
25 $expect_size : Expected data length
26 Returns: returns the data read
33 // read the data of size $read_size
37 // check if data read is of expected size
85 // calculate the hash and dump it, if data read, expecting here no data was read
93 // calculate the hash and dump it, if data read, expecting here no data was read
/PHP-7.4/ext/standard/tests/http/
H A Dbug65634.phpt24 $responses = ["data://text/plain,HTTP/$version 204 No Content\r\n\r\n"];
/PHP-7.4/ext/curl/tests/
H A Dcurl_ftp_pasv.phpt33 * Skips 10.5.80.146 for data connection, uses 10.5.80.146 instead
/PHP-7.4/ext/hash/tests/
H A Dhash_pbkdf2_basic.phpt6 /* Prototype : string hash_hmac(string $algo, string $data, string $key [, int $length = 0 [, bool…
/PHP-7.4/ext/mysqli/tests/
H A Dbug32405.phpt2 Bug #32405 (mysqli->fetch() is returning bad data)
H A Dmysqli_stmt_get_result_metadata.phpt2 mysqli_stmt_get_result() - meta data
145 … printf("[026 - %d] fetch_fields() seems to have returned different data, dumping\n", $k);
165 printf("[029] Field info differs, dumping data\n");
171 printf("[030] Field info differs, dumping data\n");
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.c110 static void php_phpdbg_destroy_bp_condition(zval *data) /* {{{ */ in php_phpdbg_destroy_bp_condition() argument
112 phpdbg_breakcond_t *brake = (phpdbg_breakcond_t *) Z_PTR_P(data); in php_phpdbg_destroy_bp_condition()
122 static void php_phpdbg_destroy_registered(zval *data) /* {{{ */ in php_phpdbg_destroy_registered() argument
124 zend_function_dtor(data); in php_phpdbg_destroy_registered()
127 static void php_phpdbg_destroy_file_source(zval *data) /* {{{ */ in php_phpdbg_destroy_file_source() argument
129 phpdbg_file_source *source = (phpdbg_file_source *) Z_PTR_P(data); in php_phpdbg_destroy_file_source()
959 php_stdio_stream_data *data = (php_stdio_stream_data*)stream->abstract; in phpdbg_stdiop_write() local
961 while (data->fd >= 0) { in phpdbg_stdiop_write()
2105 …phpdbg_file_source *data = zend_hash_str_find_ptr(&PHPDBG_G(file_sources), PHPDBG_G(exec), PHPDBG_… in main() local
2106 backup_phpdbg_compile = zend_string_alloc(data->len + 2, 1); in main()
[all …]
/PHP-7.4/ext/oci8/
H A Doci8_interface.c294 char *data; in PHP_FUNCTION() local
300 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &data, &data_len, &offset) == FAILURE) { in PHP_FUNCTION()
305 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|l", &z_descriptor, oci_lob_class_entry_ptr, &data, … in PHP_FUNCTION()
322 if (php_oci_lob_write(descriptor, (ub4) offset, data, (ub4) data_len, &bytes_written)) { in PHP_FUNCTION()
620 char *data; in PHP_FUNCTION() local
623 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &data, &data_len, &write_len) == FAILURE) { in PHP_FUNCTION()
652 …if (php_oci_lob_write(descriptor, descriptor->lob_current_position, data, (ub4) data_len, &bytes_w… in PHP_FUNCTION()
1085 char *data; in PHP_FUNCTION() local
1090 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|l", &data, &data_len, &type) == FAILURE) { in PHP_FUNCTION()
1095 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os|l", &z_descriptor, oci_lob_class_entry_ptr, &data, … in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/sockets/tests/
H A Dsocket_sentto_recvfrom_ipv4_udp.phpt2 Test if socket_recvfrom() receives data sent by socket_sendto() via IPv4 UDP
H A Dsocket_shutdown-win32.phpt53 Warning: socket_shutdown(): unable to shutdown socket [%d]: A request to send or receive data was d…
/PHP-7.4/ext/session/tests/
H A Dsession_set_save_handler_error4.phpt43 Warning: session_start(): Failed to read session data: user (%s) in %s on line %d
/PHP-7.4/ext/sysvmsg/tests/
H A D006.phpt2 msg_send() data types when not serializing

Completed in 35 milliseconds

1...<<51525354555657585960>>...72