Home
last modified time | relevance | path

Searched refs:eof (Results 26 – 50 of 128) sorted by relevance

123456

/PHP-8.1/ext/standard/tests/network/
H A Dsocket_get_status_basic.phpt25 ["eof"]=>
/PHP-8.1/ext/standard/tests/streams/
H A Dstream_get_meta_data_process_basic.phpt25 ["eof"]=>
H A Dbug60817.phpt5 class TestStream { //data, empty data, empty data + eof
/PHP-8.1/ext/zip/
H A Dzip_stream.c57 stream->eof = 1; in php_zip_ops_read()
62 stream->eof = 1; in php_zip_ops_read()
71 stream->eof = 1; in php_zip_ops_read()
/PHP-8.1/ext/oci8/tests/
H A Dbug70700.phpt52 while (! $lob->eof()) {
83 while (! $lob->eof()) {
114 while (! $lob->eof()) {
145 while (! $lob->eof()) {
H A Dlob_010.phpt38 while (!$row[0]->eof()) {
H A Dlob_009.phpt39 while (!$row[0]->eof()) {
H A Dlob_023.phpt42 while (!$row[0]->eof()) {
/PHP-8.1/ext/standard/tests/file/
H A Dbug27508.phpt2 Bug #27508 (userspace wrappers have bogus eof indicator)
H A Dfgetcsv_variation14.phpt50 // check the file pointer position and if eof
55 // check the file pointer position and if eof
H A Dfwrite_variation1-win32-mb.phpt45 /* Write the data into the file, verify it by checking the file pointer position, eof position,
57 var_dump( ftell($file_handle) ); //check that file pointer points at eof, expected: 1024
58 var_dump( feof($file_handle) ); // ensure that feof() points to eof, expected: true
H A Dfwrite_variation1.phpt38 /* Write the data into the file, verify it by checking the file pointer position, eof position,
50 var_dump( ftell($file_handle) ); //check that file pointer points at eof, expected: 1024
51 var_dump( feof($file_handle) ); // ensure that feof() points to eof, expected: true
H A Dfgets_variation6-win32.phpt41 var_dump( fseek($file_handle, 0, SEEK_END) ); // set file pointer to eof
42 var_dump( ftell($file_handle) ); // ensure that file pointer is at eof
47 var_dump( feof($file_handle) ); // ensure that file pointer is at eof
H A Dfgets_variation6.phpt41 var_dump( fseek($file_handle, 0, SEEK_END) ); // set file pointer to eof
42 var_dump( ftell($file_handle) ); // ensure that file pointer is at eof
47 var_dump( feof($file_handle) ); // ensure that file pointer is at eof
H A Dfgetcsv_variation21.phpt52 // check the file pointer position and if eof
/PHP-8.1/main/streams/
H A Dstreams.c569 flags = stream->eof ? PSFS_FLAG_FLUSH_CLOSE : PSFS_FLAG_NORMAL; in _php_stream_fill_read_buffer()
631 stream->eof = 1; in _php_stream_fill_read_buffer()
787 if (!stream->eof && PHP_STREAM_OPTION_RETURN_ERR == in _php_stream_eof()
790 stream->eof = 1; in _php_stream_eof()
793 return stream->eof; in _php_stream_eof()
966 } else if (stream->eof) { in _php_stream_get_line()
1095 if (STREAM_BUFFERED_AMOUNT(stream) < maxlen && !stream->eof) { in php_stream_get_record()
1310 stream->eof = 0; in _php_stream_seek()
1319 stream->eof = 0; in _php_stream_seek()
1344 stream->eof = 0; in _php_stream_seek()
[all …]
H A Dxp_socket.c176 stream->eof = 1; in php_sockop_read()
179 stream->eof = 1; in php_sockop_read()
374 add_assoc_bool((zval *)ptrparam, "eof", stream->eof); in php_sockop_set_option()
/PHP-8.1/ext/mysqli/
H A Dmysqli_result_iterator.c125 if (result->eof) {
/PHP-8.1/main/
H A Dphp_variables.c306 static bool add_post_var(zval *arr, post_var_data_t *var, bool eof) in add_post_var() argument
319 if (!eof) { in add_post_var()
357 static inline int add_post_vars(zval *arr, post_var_data_t *vars, bool eof) in add_post_vars() argument
363 while (add_post_var(arr, vars, eof)) { in add_post_vars()
373 if (!eof && ZSTR_VAL(vars->str.s) != vars->ptr) { in add_post_vars()
/PHP-8.1/ext/zlib/
H A Dzlib_fopen_wrapper.c40 stream->eof = 1; in php_gziop_read()
/PHP-8.1/ext/standard/
H A Dphp_fopen_wrapper.c41 stream->eof = 1; in php_stream_output_read()
99 stream->eof = 1; in php_stream_input_read()
/PHP-8.1/ext/spl/tests/
H A DSplFileObject_fputcsv_variation10.phpt44 // check the file pointer position and eof
46 var_dump( $fo->eof() );
/PHP-8.1/ext/spl/
H A Dspl_directory.stub.php204 public function eof(): bool {} function in SplFileObject
/PHP-8.1/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.h210 bool eof; member
H A Dmysqlnd_result.c441 if (PASS == (ret = PACKET_READ(conn, row_packet)) && !row_packet->eof) { in MYSQLND_METHOD()
484 } else if (row_packet->eof) { in MYSQLND_METHOD()
650 while (FAIL != (ret = PACKET_READ(conn, &row_packet)) && !row_packet.eof) { in MYSQLND_METHOD()
695 if (row_packet.eof) { in MYSQLND_METHOD()

Completed in 55 milliseconds

123456