/PHP-5.6/sapi/fpm/fpm/ |
H A D | fpm_scoreboard.c | 81 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children… in fpm_scoreboard_update() argument 97 if (active >= 0) { in fpm_scoreboard_update() 98 scoreboard->active = active; in fpm_scoreboard_update() 128 if (scoreboard->active + active > 0) { in fpm_scoreboard_update() 129 scoreboard->active += active; in fpm_scoreboard_update() 131 scoreboard->active = 0; in fpm_scoreboard_update() 153 if (scoreboard->active > scoreboard->active_max) { in fpm_scoreboard_update() 154 scoreboard->active_max = scoreboard->active; in fpm_scoreboard_update()
|
H A D | fpm_systemd.c | 19 int active=0, idle=0; in fpm_systemd() local 24 active += wp->scoreboard->active; in fpm_systemd() 40 …active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_in… in fpm_systemd()
|
H A D | fpm_status.h | 15 int active; member 25 void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int total, unsigned cu…
|
H A D | fpm_scoreboard.h | 58 int active; member 74 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children…
|
H A D | fpm_process_ctl.c | 318 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()
|
/PHP-5.6/ext/session/tests/ |
H A D | session_status.phpt | 2 Test session_status() function : active, none 10 echo "*** Testing session_status() : active, none\n"; 21 *** Testing session_status() : active, none
|
H A D | 014.phpt | 36 Warning: ini_set(): A session is active. You cannot change the session module's ini settings at thi… 39 Warning: ini_set(): A session is active. You cannot change the session module's ini settings at thi…
|
/PHP-5.6/main/ |
H A D | output.c | 179 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.6/ext/curl/tests/ |
H A D | curl_multi_segfault.phpt | 33 $active = null; 36 $mrc = curl_multi_exec($cmh, $active); 40 while ($active && $mrc == CURLM_OK) { 43 $mrc = curl_multi_exec($cmh, $active);
|
H A D | bug71523.phpt | 23 curl_multi_exec($mh, $active); 24 } while ($active);
|
H A D | bug48203_multi.phpt | 41 $active = 0; 43 curl_multi_exec($mh, $active); 44 } while ($active > 0);
|
/PHP-5.6/Zend/tests/ |
H A D | closure_017.phpt | 2 Closure 017: Trying to destroy an active lambda function 12 Fatal error: Cannot destroy active lambda function in %s on line %d
|
H A D | class_name_as_scalar_error_005.phpt | 10 Fatal error: Cannot access static::class when no class scope is active in %s on line %d
|
H A D | class_name_as_scalar_error_006.phpt | 10 Fatal error: Cannot access parent::class when no class scope is active in %s on line %d
|
/PHP-5.6/ext/standard/tests/assert/ |
H A D | assert_basic4.phpt | 4 assert.active = 0 21 echo "Initial values: ini.get(\"assert.active\") => [".ini_get("assert.active")."]\n"; 33 Initial values: ini.get("assert.active") => [0]
|
H A D | assert_basic.phpt | 2 assert() - basic - check that assert runs when assert.active is set to 1. 4 assert.active = 1
|
H A D | assert04.phpt | 4 assert.active = 1 11 /* Assert not active */
|
H A D | assert_closures.phpt | 4 assert.active = 1
|
/PHP-5.6/sapi/fpm/tests/ |
H A D | 010.phpt | 7 017+ active processes: 0 9 017- active processes: 1 76 active processes: 1 78 max active processes: 1
|
/PHP-5.6/tests/output/ |
H A D | ob_clean_basic_001.phpt | 21 echo "Ensure the buffer is still active after the clean."; 35 Ensure the buffer is still active after the clean."
|
H A D | ob_flush_basic_001.phpt | 21 echo "Ensure the buffer is still active after the flush.\n"; 37 Ensure the buffer is still active after the flush.
|
H A D | bug65593.phpt | 13 Fatal error: Cannot destroy active lambda function in %sbug65593.php on line %d
|
/PHP-5.6/ext/spl/tests/ |
H A D | bug71204.phpt | 16 Fatal error: Cannot destroy active lambda function in %sbug71204.php on line %d
|
/PHP-5.6/tests/basic/ |
H A D | req44164.phpt | 2 Req #44164 (Handle "Content-Length" HTTP header when zlib.output_compression active)
|
/PHP-5.6/ext/standard/ |
H A D | assert.c | 28 long active; 82 …STD_PHP_INI_ENTRY("assert.active", "1", PHP_INI_ALL, OnUpdateLong, active, zend_assert_globa… 148 if (! ASSERTG(active)) { in PHP_FUNCTION() 277 oldint = ASSERTG(active); in PHP_FUNCTION()
|