Home
last modified time | relevance | path

Searched refs:buffered (Results 1 – 25 of 31) sorted by relevance

12

/PHP-8.0/ext/standard/tests/filters/
H A Dfilter_errors_user.phpt92 test filtering of buffered data
96 Warning: stream_filter_append(): Filter failed to process pre-buffered data in %s
97 test filtering of non buffered data
102 test filtering of buffered data
105 test filtering of non buffered data
108 test filtering of buffered data
111 test filtering of non buffered data
114 test filtering of buffered data
119 test filtering of non buffered data
124 test filtering of buffered data
[all …]
H A Dfilter_errors_zlib_inflate.phpt11 test filtering of buffered data
15 Warning: stream_filter_append(): Filter failed to process pre-buffered data in %s
16 test filtering of non buffered data
H A Dfilter_errors_convert_base64_decode.phpt11 test filtering of buffered data
15 Warning: stream_filter_append(): Filter failed to process pre-buffered data in %s
16 test filtering of non buffered data
H A Dfilter_errors.inc16 echo "test filtering of buffered data\n";
26 echo "test filtering of non buffered data\n";
/PHP-8.0/ext/mysqli/tests/
H A Dbug79084_collision.phpt21 // buffered
29 // buffered copies
H A Dbug79084.phpt21 // buffered
29 // buffered copies
H A Dmysqli_stmt_store_result.phpt54 printf("[014] Unbuffered statement indicates more rows than buffered, [%d] %s\n",
58 printf("[015] unbuffered '%s'/%s, buffered '%s'/%s\n",
61 printf("[016] unbuffered '%s'/%s, buffered '%s'/%s\n",
H A Dmysqli_get_client_stats.phpt146 // buffered normal
147 print "Testing buffered normal...\n";
197 print "Testing buffered normal... - SELECT id, label FROM test\n";
315 print "Testing buffered Prepared Statements...\n";
441 /* buffered result set - no skipping possible! */
530 print "Checking for normal buffered side effects...\n";
1272 Testing buffered normal...
1273 Testing buffered normal... - SELECT id, label FROM test
1277 Testing buffered Prepared Statements...
1278 Testing buffered Prepared Statements... - fetching all
[all …]
H A D057.phpt51 /* this should show an error, cause results are not buffered */
H A Dmysqli_get_client_stats_ps.phpt43 printf("[003] Unbuffered rows got increased after buffered PS, expecting %d got %d.\n",
/PHP-8.0/ext/standard/tests/file/
H A Dbug27619.phpt2 Bug #27619 (filters not applied to pre-buffered data)
/PHP-8.0/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation2.phpt21 echo "\n\nRead a line of the file, causing data to be buffered:\n";
67 Read a line of the file, causing data to be buffered:
H A Dstream_get_meta_data_socket_variation1.phpt22 echo "\n\nRead a line from the client, causing data to be buffered:\n";
59 Read a line from the client, causing data to be buffered:
H A Dbug60817.phpt2 Bug #60817: stream_get_line() reads from stream even when there is already sufficient data buffered
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_prompt.c133 char *buffered = NULL; in phpdbg_call_register() local
147 spprintf(&buffered, 0, "%s::%s", next->method.class, next->method.name); in phpdbg_call_register()
148 add_next_index_string(&params, buffered); in phpdbg_call_register()
152 spprintf(&buffered, 0, "%s::%s#%ld", next->method.class, next->method.name, next->num); in phpdbg_call_register()
153 add_next_index_string(&params, buffered); in phpdbg_call_register()
157 spprintf(&buffered, 0, "%s#%ld", next->str, next->num); in phpdbg_call_register()
158 add_next_index_string(&params, buffered); in phpdbg_call_register()
162 spprintf(&buffered, 0, "%s:%ld", next->file.name, next->file.line); in phpdbg_call_register()
163 add_next_index_string(&params, buffered); in phpdbg_call_register()
167 spprintf(&buffered, 0, "%s:#%ld", next->file.name, next->file.line); in phpdbg_call_register()
[all …]
H A Dphpdbg_cmd.c740 PHPDBG_API char *phpdbg_read_input(const char *buffered) /* {{{ */ in phpdbg_read_input() argument
746 if ((PHPDBG_G(flags) & PHPDBG_IS_REMOTE) && (buffered == NULL) && !phpdbg_active_sigsafe_mem()) { in phpdbg_read_input()
750 if (buffered == NULL) { in phpdbg_read_input()
776 buffer = estrdup(buffered); in phpdbg_read_input()
H A Dphpdbg_cmd.h128 PHPDBG_API char *phpdbg_read_input(const char *buffered);
/PHP-8.0/ext/pdo_mysql/
H A Dmysql_statement.c139 if (!H->buffered) { in pdo_mysql_fill_stmt_from_result()
176 if (H->buffered) { in pdo_mysql_stmt_after_execute_prepared()
187 int calc_max_length = H->buffered && S->max_length == 1; in pdo_mysql_stmt_after_execute_prepared()
250 if (H->buffered) { in pdo_mysql_stmt_after_execute_prepared()
597 if (!S->H->buffered && mysql_errno(S->H->server)) { in pdo_mysql_stmt_fetch()
H A Dphp_pdo_mysql_int.h104 unsigned buffered:1; member
H A Dmysql_driver.c423 ((pdo_mysql_db_handle *)dbh->driver_data)->buffered = bval; in pdo_mysql_set_attribute()
502 ZVAL_LONG(return_value, H->buffered);
675 H->buffered = H->emulate_prepare = 1;
686 H->buffered = pdo_attr_lval(driver_options, PDO_MYSQL_ATTR_USE_BUFFERED_QUERY, 1);
/PHP-8.0/ext/pdo_mysql/tests/
H A Dpdo_mysql_exec_select.phpt43 // buffered or unbuffered does not matter!
H A Dpdo_mysql_stmt_closecursor.phpt12 /* TODO the results look wrong, why do we get 2014 with buffered AND unbuffered queries */
47 // check if changing the fetch mode from unbuffered to buffered will
/PHP-8.0/ext/dba/tests/
H A Ddba_handler.inc63 … dba_close($db_writer); // when the writer is open at least db3 would fail because of buffered io.
/PHP-8.0/sapi/fpm/
H A Dphp-fpm.conf.in53 ; Log buffering specifies if the log line is buffered which means that the
58 ; as it has to be always buffered.
/PHP-8.0/ext/standard/
H A Dconfig.m42 dnl Check if flush should be called explicitly after buffered io
4 AC_CACHE_CHECK([whether flush should be called explicitly after a buffered io], ac_cv_flush_io,[
51 AC_DEFINE(HAVE_FLUSHIO, 1, [Define if flush should be called explicitly after a buffered io.])

Completed in 80 milliseconds

12