Home
last modified time | relevance | path

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

12345

/php-src/ext/standard/tests/network/
H A Dsocket_get_status_basic.phpt25 ["eof"]=>
/php-src/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
H A Dstream_cast_loses_data.phpt22 // cast $stream and read fd until eof. Print each line that was read, prefixed with "proc open stdi…
/php-src/ext/zip/
H A Dzip_stream.c55 stream->eof = 1; in php_zip_ops_read()
60 stream->eof = 1; in php_zip_ops_read()
69 stream->eof = 1; in php_zip_ops_read()
/php-src/main/streams/
H A Dstreams.c546 bool old_eof = stream->eof; in _php_stream_fill_read_buffer()
638 stream->eof = 1; in _php_stream_fill_read_buffer()
699 if (old_eof != stream->eof) { in _php_stream_fill_read_buffer()
821 stream->eof = 1; in _php_stream_eof()
824 return stream->eof; in _php_stream_eof()
997 } else if (stream->eof) { in _php_stream_get_line()
1165 bool old_eof = stream->eof; in _php_stream_write_buffer()
1359 stream->eof = 0; in _php_stream_seek()
1368 stream->eof = 0; in _php_stream_seek()
1398 stream->eof = 0; in _php_stream_seek()
[all …]
H A Dxp_socket.c198 stream->eof = 1; in php_sockop_read()
201 stream->eof = 1; in php_sockop_read()
408 add_assoc_bool((zval *)ptrparam, "eof", stream->eof); in php_sockop_set_option()
/php-src/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 Dfscanf_variation53.phpt52 // set the file pointer to eof
H A Dfgetcsv_variation21.phpt52 // check the file pointer position and if eof
H A Dfgets_basic.phpt29 var_dump( feof($file_handle) ); // ensure if eof set
35 var_dump( feof($file_handle) ); // ensure if eof set
/php-src/ext/dom/lexbor/lexbor/css/syntax/
H A Dtokenizer.h72 bool eof; member
H A Dtokenizer.c126 tkz->eof = false; in lxb_css_syntax_tokenizer_init()
147 tkz->eof = false; in lxb_css_syntax_tokenizer_clean()
397 if (tkz->eof == false) { in lxb_css_syntax_tokenizer_next_chunk()
412 tkz->eof = true; in lxb_css_syntax_tokenizer_next_chunk()
/php-src/main/
H A Dphp_variables.c342 static bool add_post_var(zval *arr, post_var_data_t *var, bool eof) in add_post_var() argument
355 if (!eof) { in add_post_var()
393 static inline int add_post_vars(zval *arr, post_var_data_t *vars, bool eof) in add_post_vars() argument
399 while (add_post_var(arr, vars, eof)) { in add_post_vars()
409 if (!eof && ZSTR_VAL(vars->str.s) != vars->ptr) { in add_post_vars()
/php-src/ext/zlib/
H A Dzlib_fopen_wrapper.c42 stream->eof = 1; in php_gziop_read()
/php-src/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-src/ext/spl/tests/SplFileObject/
H A DSplFileObject_fputcsv_variation10.phpt46 // check the file pointer position and eof
48 var_dump( $fo->eof() );
/php-src/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.h210 bool eof; member
H A Dmysqlnd_result.c439 if (PASS == (ret = PACKET_READ(conn, row_packet)) && !row_packet->eof) { in MYSQLND_METHOD()
482 } else if (row_packet->eof) { in MYSQLND_METHOD()
648 while (FAIL != (ret = PACKET_READ(conn, &row_packet)) && !row_packet.eof) { in MYSQLND_METHOD()
693 if (row_packet.eof) { in MYSQLND_METHOD()
/php-src/ext/spl/
H A Dspl_directory.stub.php241 public function eof(): bool {} function in SplFileObject

Completed in 48 milliseconds

12345