| /PHP_5_5/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 | 251 zend_bool active; member in struct:_zend_executor_globals
|
| /PHP_5_5/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);
|
| /PHP_5_5/ext/standard/ |
| H A D | url_scanner_ex.h | 49 int active; member in struct:__anon249
|
| /PHP_5_5/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_5/sapi/cli/ |
| H A D | php_cli_server.c | 117 } active; member in struct:php_cli_server_poller 767 memmove(&poller->active.rfds, &poller->rfds, sizeof(poller->rfds)); 768 memmove(&poller->active.wfds, &poller->wfds, sizeof(poller->wfds)); 769 return php_select(poller->max_fd + 1, &poller->active.rfds, &poller->active.wfds, NULL, (struct timeval *)tv); 784 for (i = 0; i < poller->active.rfds.fd_count; i++) { 786 n->fd = poller->active.rfds.fd_array[i]; 791 for (i = 0; i < poller->active.wfds.fd_count; i++) { 793 SOCKET fd = poller->active.wfds.fd_array[i]; 821 if (PHP_SAFE_FD_ISSET(fd, &poller->active [all...] |