| /PHP_5_4/Zend/ |
| H A D | zend_signal.h | 60 int active; /* internal signal handling is enabled */ member in struct:_zend_signal_globals_t
|
| H A D | zend_globals.h | 256 zend_bool active; member in struct:_zend_executor_globals
|
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_process_ctl.c | 318 int active = 0; local 335 active++; 356 fpm_scoreboard_update(idle, active, cur_lq, -1, -1, -1, 0, FPM_SCOREBOARD_ACTION_SET, wp->scoreboard); 362 zlog(ZLOG_DEBUG, "[pool %s] currently %d active children, %d spare children", wp->config->name, active, idle); 379 zlog(ZLOG_DEBUG, "[pool %s] currently %d active children, %d spare children, %d running children. Spawning rate %d", wp->config->name, active, idle, wp->running_children, wp->idle_spawn_rate);
|
| H A D | fpm_scoreboard.c | 76 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children_reached, int slow_rq, int action, struct fpm_scoreboard_s *scoreboard) /* {{{ */ argument 92 if (active >= 0) { 93 scoreboard->active = active; 123 if (scoreboard->active + active > 0) { 124 scoreboard->active += active; 126 scoreboard->active = 0; 142 if (scoreboard->active > scoreboar [all...] |
| H A D | fpm_scoreboard.h | 58 int active; member in struct:fpm_scoreboard_s 74 void fpm_scoreboard_update(int idle, int active, int lq, int lq_len, int requests, int max_children_reached, int slow_rq, int action, struct fpm_scoreboard_s *scoreboard);
|
| H A D | fpm_status.h | 15 int active; member in struct:fpm_status_s 25 void fpm_status_update_activity(struct fpm_shm_s *shm, int idle, int active, int total, unsigned cur_lq, int max_lq, int clear_last_update);
|
| H A D | fpm_systemd.c | 19 int active=0, idle=0; local 24 active += wp->scoreboard->active; 32 zlog(ZLOG_DEBUG, "systemd %s (Processes active:%d, idle:%d, Requests:%lu, slow:%lu, Traffic:%.3greq/sec)", 34 active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval); 38 "STATUS=Processes active: %d, idle: %d, Requests: %lu, slow: %lu, Traffic: %.3greq/sec", 40 active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_interval)) {
|
| /PHP_5_4/ext/standard/ |
| H A D | url_scanner_ex.h | 49 int active; member in struct:__anon249
|
| /PHP_5_4/main/ |
| H A D | output.c | 178 OG(active) = NULL; 227 | (OG(active) ? PHP_OUTPUT_ACTIVE : 0) 268 if (OG(active) && (OG(active)->flags & PHP_OUTPUT_HANDLER_FLUSHABLE)) { 270 php_output_handler_op(OG(active), &context); 274 zend_stack_push(&OG(handlers), &OG(active), sizeof(php_output_handler *)); 287 if (OG(active)) { 299 if (OG(active) && (OG(active)->flags & PHP_OUTPUT_HANDLER_CLEANABLE)) { 301 php_output_handler_op(OG(active), 1042 php_output_handler **active; local [all...] |
| H A D | php_output.h | 149 php_output_handler *active; variable
|
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli_server.c | 115 } active; member in struct:php_cli_server_poller 757 memmove(&poller->active.rfds, &poller->rfds, sizeof(poller->rfds)); 758 memmove(&poller->active.wfds, &poller->wfds, sizeof(poller->wfds)); 759 return php_select(poller->max_fd + 1, &poller->active.rfds, &poller->active.wfds, NULL, (struct timeval *)tv); 774 for (i = 0; i < poller->active.rfds.fd_count; i++) { 776 n->fd = poller->active.rfds.fd_array[i]; 781 for (i = 0; i < poller->active.wfds.fd_count; i++) { 783 SOCKET fd = poller->active.wfds.fd_array[i]; 811 if (PHP_SAFE_FD_ISSET(fd, &poller->active [all...] |