| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_events.c | 68 efree(event->events[i]); 70 efree(event->events); 93 char **events, unsigned short *l, char **event_buf, char **result_buf) 108 *l = (unsigned short) isc_event_block(event_buf, result_buf, count, events[0], 109 events[1], events[2], events[3], events[4], events[5], events[ 92 _php_ibase_event_block(ibase_db_link *ib_link, unsigned short count, char **events, unsigned short *l, char **event_buf, char **result_buf) argument 132 char *event_buffer, *result_buffer, *events[15]; local [all...] |
| H A D | php_ibase_includes.h | 103 char **events; member in struct:event
|
| /PHP_TRUNK/ext/oci8/ |
| H A D | oci8.c | 1059 STD_PHP_INI_BOOLEAN("oci8.events", "0", PHP_INI_SYSTEM, OnUpdateBool, events, zend_oci_globals, oci_globals) 2916 PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIEnvNlsCreate, (&retenv, OCI_G(events) ? PHP_OCI_INIT_MODE | OCI_EVENTS : PHP_OCI_INIT_MODE, 0, NULL, NULL, NULL, 0, NULL, charsetid, charsetid));
|
| H A D | php_oci8_int.h | 496 zend_bool events; variable
|
| /PHP_TRUNK/sapi/cgi/ |
| H A D | fastcgi.c | 1230 fds.events = POLLIN;
|
| /PHP_TRUNK/sapi/fpm/fpm/events/ |
| H A D | devpoll.c | 91 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); 105 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); 146 * wait for events or timeout 171 /* iterate throught triggered events */ 207 pollfd.events = POLLIN; 232 pollfd.events = POLLIN | POLLREMOVE;
|
| H A D | epoll.c | 84 zlog(ZLOG_ERROR, "epoll: unable to allocate %d events", max); 114 * wait for events or timeout 134 /* events have been triggered, let's fire them */ 163 e.events = EPOLLIN; 168 e.events = e.events | EPOLLET; 191 e.events = EPOLLIN; 196 e.events = e.events | EPOLLET;
|
| H A D | poll.c | 83 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); 97 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); 131 * wait for events or timeout 154 /* events have been triggered */ 157 /* trigger POLLIN events */ 194 pollfds[next_free_slot].events = POLLIN; 213 pollfds[i].events = POLLIN; 242 pollfds[ev->index].events = 0; 263 pollfds[i].events = 0;
|
| H A D | port.c | 48 port_event_t *events = NULL; variable 83 events = malloc(sizeof(port_event_t) * max); 84 if (!events) { 85 zlog(ZLOG_ERROR, "port: Unable to allocate %d events", max); 104 if (events) { 105 free(events); 106 events = NULL; 115 * wait for events or timeout 128 ret = port_getn(pfd, events, nevents, &nget, &t); 141 if (!events[ [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 850 fds.events = POLLIN;
|
| /PHP_TRUNK/main/ |
| H A D | php_network.h | 117 short events; member in struct:_php_pollfd 156 static inline int php_pollfd_for(php_socket_t fd, int events, struct timeval *timeouttv) argument 162 p.events = events; 174 static inline int php_pollfd_for_ms(php_socket_t fd, int events, int timeout) argument 180 p.events = events;
|
| H A D | network.c | 1153 if (ufds[i].events & PHP_POLLREADABLE) { 1156 if (ufds[i].events & POLLOUT) { 1159 if (ufds[i].events & POLLPRI) {
|
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli_server.c | 772 static int php_cli_server_poller_iter_on_active(php_cli_server_poller *poller, void *opaque, int(*callback)(void *, int fd, int events)) /* {{{ */ argument 778 int events; member in struct:socket_entry 785 n->events = POLLIN; 796 e->events |= POLLOUT; 801 n->events = POLLOUT; 810 if (SUCCESS != callback(opaque, e->fd, e->events)) {
|