Home
last modified time | relevance | path

Searched refs:flush (Results 51 – 75 of 77) sorted by relevance

1234

/php-src/ext/fileinfo/libmagic/
H A Dsoftmagic.c238 int flush = 0; in match() local
247 flush: in match()
257 goto flush; in match()
282 flush++; in match()
285 flush = 0; in match()
290 if (flush) { in match()
295 goto flush; in match()
328 goto flush; in match()
352 goto flush; in match()
382 flush = 1; in match()
[all …]
/php-src/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.])
H A Dbasic_functions.c1105 PHP_FUNCTION(flush) argument
H A Dbasic_functions.stub.php1967 function flush(): void {} function
/php-src/ext/mbstring/tests/
H A Dmb_decode_numericentity_large_ints.phpt49 // because some text encodings did not properly invoke the next flush function in the chain
/php-src/main/
H A Dphp_output.h198 PHPAPI void php_output_set_implicit_flush(int flush);
H A DSAPI.h248 void (*flush)(void *server_context); member
H A DSAPI.c1002 if (sapi_module.flush) { in sapi_flush()
1003 sapi_module.flush(SG(server_context)); in sapi_flush()
H A Doutput.c727 PHPAPI void php_output_set_implicit_flush(int flush) in php_output_set_implicit_flush() argument
729 if (flush) { in php_output_set_implicit_flush()
H A Dphp_streams.h124 int (*flush)(php_stream *stream); member
/php-src/ext/xmlwriter/
H A Dphp_xmlwriter_arginfo.h170 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flush, _IS_BOOL, 0, "true")
323 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flush, _IS_BOOL, 0, "true")
/php-src/sapi/fpm/tests/
H A Dfcgi.inc84 public function flush(): bool;
203 public function flush(): bool
343 public function flush(): bool
807 if ($this->transport->write($request) === false || $this->transport->flush() === false) {
/php-src/
H A DNEWS54 . Implement GH-12385 (flush headers without body when calling flush()).
H A Dphp.ini-development291 ; Implicit flush tells PHP to tell the output layer to flush itself
293 ; PHP function flush() after each and every call to print() or echo() and each
296 ; https://php.net/implicit-flush
H A Dphp.ini-production291 ; Implicit flush tells PHP to tell the output layer to flush itself
293 ; PHP function flush() after each and every call to print() or echo() and each
296 ; https://php.net/implicit-flush
/php-src/docs-old/
H A Dstreams.md252 read, write, close, flush, seek, gets and cast operations. Of these, an
253 implementation need only implement write, read, close and flush. The gets method
384 Implement the other operations - remember that write, read, close and flush are
/php-src/Zend/
H A Dbench.php79 flush();
/php-src/win32/build/
H A Dmkdist.php547 flush();
/php-src/ext/mysqlnd/
H A Dmysqlnd_ps.c649 s->m->flush(s); in MYSQLND_METHOD()
930 s->m->flush(s); in MYSQLND_METHOD()
956 MYSQLND_METHOD(mysqlnd_stmt, flush)(MYSQLND_STMT * const s) in MYSQLND_METHOD() argument
1978 MYSQLND_METHOD(mysqlnd_stmt, flush),
H A Dmysqlnd.h238 #define mysqlnd_stmt_flush(stmt) (stmt)->m->flush((stmt))
H A Dmysqlnd_structs.h835 func_mysqlnd_stmt__flush flush; in MYSQLND_CLASS_METHODS_TYPE() local
/php-src/main/streams/
H A Dstreams.c1281 if (stream->ops->flush) { in _php_stream_flush()
1282 ret = stream->ops->flush(stream); in _php_stream_flush()
/php-src/ext/opcache/
H A DZendAccelerator.c4586 void (*orig_flush)(void *server_context) = sapi_module.flush;
4599 sapi_module.flush = preload_flush;
4665 sapi_module.flush = orig_flush;
/php-src/ext/fileinfo/
H A Dlibmagic.patch3025 int flush = 0;
3056 - switch (flush ? 1 : magiccheck(ms, m, m_rxcomp)) {
3057 + switch (flush ? 1 : magiccheck(ms, m)) {
/php-src/sapi/cgi/
H A Dcgi_main.c1851 cgi_sapi_module.flush = sapi_fcgi_flush;

Completed in 147 milliseconds

1234