Home
last modified time | relevance | path

Searched refs:active (Results 1 – 25 of 80) sorted by last modified time

1234

/PHP-5.5/win32/
H A Dinstall.txt1379 active for any script running from this directory or any subdirectory
/PHP-5.5/tests/output/
H A Dob_flush_basic_001.phpt21 echo "Ensure the buffer is still active after the flush.\n";
37 Ensure the buffer is still active after the flush.
H A Dbug65593.phpt13 Fatal error: Cannot destroy active lambda function in %sbug65593.php on line %d
H A Dob_clean_basic_001.phpt21 echo "Ensure the buffer is still active after the clean.";
35 Ensure the buffer is still active after the clean."
/PHP-5.5/tests/basic/
H A Dreq44164.phpt2 Req #44164 (Handle "Content-Length" HTTP header when zlib.output_compression active)
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_process_ctl.c318 int active = 0; in fpm_pctl_perform_idle_server_maintenance() local
335 active++; in fpm_pctl_perform_idle_server_maintenance()
356 …fpm_scoreboard_update(idle, active, cur_lq, -1, -1, -1, 0, FPM_SCOREBOARD_ACTION_SET, wp->scoreboa… in fpm_pctl_perform_idle_server_maintenance()
362 …EBUG, "[pool %s] currently %d active children, %d spare children", wp->config->name, active, idle); in fpm_pctl_perform_idle_server_maintenance()
379 …pare children, %d running children. Spawning rate %d", wp->config->name, active, idle, wp->running… in fpm_pctl_perform_idle_server_maintenance()
H A Dfpm_scoreboard.c76 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children… in fpm_scoreboard_update() argument
92 if (active >= 0) { in fpm_scoreboard_update()
93 scoreboard->active = active; in fpm_scoreboard_update()
123 if (scoreboard->active + active > 0) { in fpm_scoreboard_update()
124 scoreboard->active += active; in fpm_scoreboard_update()
126 scoreboard->active = 0; in fpm_scoreboard_update()
142 if (scoreboard->active > scoreboard->active_max) { in fpm_scoreboard_update()
143 scoreboard->active_max = scoreboard->active; in fpm_scoreboard_update()
H A Dfpm_scoreboard.h58 int active; member
74 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children…
H A Dfpm_status.c108 if (scoreboard.idle < 0 || scoreboard.active < 0) { in fpm_status_handle_request()
371 scoreboard.active, in fpm_status_handle_request()
372 scoreboard.idle + scoreboard.active, in fpm_status_handle_request()
H A Dfpm_status.h15 int active; member
25 void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int total, unsigned cu…
H A Dfpm_systemd.c19 int active=0, idle=0; in fpm_systemd() local
24 active += wp->scoreboard->active; in fpm_systemd()
40active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_in… in fpm_systemd()
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in271 ; active processes - the number of active processes;
272 ; total processes - the number of idle + active processes;
273 ; max active processes - the maximum number of active processes since FPM
289 ; active processes: 11
291 ; max active processes: 12
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c118 } active; member
905 memmove(&poller->active.rfds, &poller->rfds, sizeof(poller->rfds)); in php_cli_server_poller_poll()
906 memmove(&poller->active.wfds, &poller->wfds, sizeof(poller->wfds)); in php_cli_server_poller_poll()
907 return php_select(poller->max_fd + 1, &poller->active.rfds, &poller->active.wfds, NULL, tv); in php_cli_server_poller_poll()
922 for (i = 0; i < poller->active.rfds.fd_count; i++) { in php_cli_server_poller_iter_on_active()
924 n->fd = poller->active.rfds.fd_array[i]; in php_cli_server_poller_iter_on_active()
929 for (i = 0; i < poller->active.wfds.fd_count; i++) { in php_cli_server_poller_iter_on_active()
931 SOCKET fd = poller->active.wfds.fd_array[i]; in php_cli_server_poller_iter_on_active()
959 if (PHP_SAFE_FD_ISSET(fd, &poller->active.rfds)) { in php_cli_server_poller_iter_on_active()
964 if (PHP_SAFE_FD_ISSET(fd, &poller->active.wfds)) { in php_cli_server_poller_iter_on_active()
/PHP-5.5/
H A Dphp.ini-development1148 ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
1509 ; - User may send URL contains active session ID
1511 ; - URL that contains active session ID may be stored
1649 ; Assert(expr); active by default.
1650 ; http://php.net/assert.active
1651 ;assert.active = On
H A Dphp.ini-production1148 ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
1509 ; - User may send URL contains active session ID
1511 ; - URL that contains active session ID may be stored
1649 ; Assert(expr); active by default.
1650 ; http://php.net/assert.active
1651 ;assert.active = On
/PHP-5.5/main/streams/
H A Dstreams.c393 if (EG(active)) { in _php_stream_free()
/PHP-5.5/main/
H A Dphp_output.h149 php_output_handler *active; variable
H A Doutput.c179 OG(active) = NULL; in php_output_deactivate()
302 if (OG(active)) { in php_output_flush_all()
330 if (OG(active)) { in php_output_clean_all()
388 if (OG(active)) { in php_output_get_contents()
389 ZVAL_STRINGL(p, OG(active)->buffer.data, OG(active)->buffer.used, 1); in php_output_get_contents()
401 if (OG(active)) { in php_output_get_length()
415 return OG(active); in php_output_get_active_handler()
1349 if (!OG(active)) { in PHP_FUNCTION()
1370 if (!OG(active)) { in PHP_FUNCTION()
1391 if (!OG(active)) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/standard/
H A Durl_scanner_ex.c1018 if (! BG(url_adapt_state_ex).active) { in php_url_scanner_add_var()
1021 BG(url_adapt_state_ex).active = 1; in php_url_scanner_add_var()
1080 BG(url_adapt_state_ex).active = 0; in PHP_RINIT_FUNCTION()
1087 if (BG(url_adapt_state_ex).active) { in PHP_RSHUTDOWN_FUNCTION()
1089 BG(url_adapt_state_ex).active = 0; in PHP_RSHUTDOWN_FUNCTION()
H A Durl_scanner_ex.h49 int active; member
H A Durl_scanner_ex.re470 if (! BG(url_adapt_state_ex).active) {
473 BG(url_adapt_state_ex).active = 1;
532 BG(url_adapt_state_ex).active = 0;
539 if (BG(url_adapt_state_ex).active) {
541 BG(url_adapt_state_ex).active = 0;
/PHP-5.5/ext/standard/tests/general_functions/
H A Dset_magic_quotes_runtime_basic.phpt8 * Description: Sets the current active configuration setting of magic_quotes_runtime
H A Dset_magic_quotes_runtime_error.phpt6 * Description: Sets the current active configuration setting of magic_quotes_runtime
H A Dob_get_length_basic.phpt24 // No buffering active
/PHP-5.5/ext/standard/tests/assert/
H A Dassert_basic4.phpt4 assert.active = 0
21 echo "Initial values: ini.get(\"assert.active\") => [".ini_get("assert.active")."]\n";
33 Initial values: ini.get("assert.active") => [0]

Completed in 104 milliseconds

1234