Searched refs:events (Results 1 - 25 of 44) sorted by relevance

12

/bind-9.11.3/lib/isc/
H A Dondestroy.c29 ISC_LIST_INIT(ondest->events);
51 ISC_LIST_APPEND(ondest->events, theevent, ev_link);
63 eventp = ISC_LIST_HEAD(ondest->events);
65 ISC_LIST_UNLINK(ondest->events, eventp, ev_link);
72 eventp = ISC_LIST_HEAD(ondest->events);
H A Dtask.c46 * an integrated event loop for socket, timer, and other generic task events.
103 isc_eventlist_t events; member in struct:isc__task
203 isc_eventlist_t *events);
206 void *tag, isc_eventlist_t *events);
306 REQUIRE(EMPTY(task->events));
359 INIT_LIST(task->events);
432 INSIST(EMPTY(task->events));
440 * Note that we post shutdown events LIFO.
447 ENQUEUE(task->events, event, ev_link);
494 INSIST(EMPTY(task->events));
646 dequeue_events(isc__task_t *task, void *sender, isc_eventtype_t first, isc_eventtype_t last, void *tag, isc_eventlist_t *events, isc_boolean_t purging) argument
692 isc_eventlist_t events; local
777 isc__task_unsendrange(isc_task_t *task, void *sender, isc_eventtype_t first, isc_eventtype_t last, void *tag, isc_eventlist_t *events) argument
792 isc__task_unsend(isc_task_t *task, void *sender, isc_eventtype_t type, void *tag, isc_eventlist_t *events) argument
2193 isc_task_unsend(isc_task_t *task, void *sender, isc_eventtype_t type, void *tag, isc_eventlist_t *events) argument
[all...]
/bind-9.11.3/lib/isc/include/isc/
H A Dondestroy.h74 isc_eventlist_t events; member in struct:isc_ondestroy
H A Dtask.h24 * execute runnable tasks by dispatching the events on the tasks' event
51 * events based upon their sender, type, and tag.
53 * Purging calls isc_event_free() on the matching events.
55 * Unsending returns a list of events that matched the pattern.
58 * Consumers of events should purge, not unsend.
60 * Producers of events often want to remove events when the caller indicates
66 * unsend events which they have sent.
121 void *tag, isc_eventlist_t *events);
178 *\li If 'quantum' is non-zero, then only that many events ca
[all...]
/bind-9.11.3/lib/isc/win32/include/isc/
H A Dcondition.h31 HANDLE events[2]; member in struct:isc_condition
/bind-9.11.3/contrib/dnspriv/
H A Dnginx.conf13 events {
/bind-9.11.3/lib/isc/win32/
H A Dcondition.c37 cond->events[LSIGNAL] = h;
40 * The threadlist will hold the actual events needed
49 * Add the thread to the threadlist along with the required events
76 newthread->handle[LSIGNAL] = gblcond->events[LSIGNAL];
125 if (!SetEvent(cond->events[LSIGNAL])) {
170 (void)CloseHandle(cond->events[LSIGNAL]);
204 * Get the thread events needed for the wait
/bind-9.11.3/bin/tests/virtual-time/
H A Dvtwrapper.c280 epoll_wait(int fd, struct epoll_event *events, int maxevents, int timeout) { argument
287 return syscall(SYS_epoll_wait, fd, events, maxevents, timeout);
293 return syscall(SYS_poll, fd, events, maxevents, timeout);
295 return syscall(SYS_poll, fd, events, maxevents, timeout);
/bind-9.11.3/unit/atf-src/tools/
H A Dio.cpp320 poll_fds[i].events = POLLIN;
329 if (poll_fds[i].events == 0)
335 poll_fds[i].events = 0;
/bind-9.11.3/lib/isc/unix/
H A Dsocket.c197 * during intermittent events or the kernel bug is triggered. If the next
225 * Maximum number of events communicated with the kernel. There should normally
263 * DLVL(70) -- Socket "correctness" -- including returning of events, etc.
265 * DLVL(50) -- Event tracing, including receiving/sending completion events.
352 * Internal events. Posted when a descriptor is readable or
401 struct kevent *events; member in struct:isc__socketmgr
406 struct epoll_event *events; member in struct:isc__socketmgr
413 struct pollfd *events; member in struct:isc__socketmgr
930 event.events = manager->epoll_events[fd];
951 pfd.events
4062 process_fds(isc__socketmgr_t *manager, struct kevent *events, int nevents) argument
4104 process_fds(isc__socketmgr_t *manager, struct epoll_event *events, int nevents) argument
4153 process_fds(isc__socketmgr_t *manager, struct pollfd *events, int nevents) argument
[all...]
/bind-9.11.3/lib/dns/
H A Dtcpmsg.c20 #include <dns/events.h>
H A Dbyaddr.c24 #include <dns/events.h>
H A Dresolver.c41 #include <dns/events.h>
244 fetchstate_done /*%< FETCHDONE events posted. */
273 ISC_LIST(dns_fetchevent_t) events;
305 * The number of events we're waiting for.
816 * case we must purge events already posted to ensure that
817 * no further idle events are delivered.
1041 * Check for any outstanding socket events. If they exist, cancel
1043 * only needs to worry about managing the connect and send events;
1044 * the dispatcher manages the recv events.
1340 for (event = ISC_LIST_HEAD(fctx->events);
[all...]
H A Dlookup.c22 #include <dns/events.h>
H A Ddispatch.c33 #include <dns/events.h>
85 isc_mempool_t *depool; /*%< pool for dispatch events */
203 * socket events well when using separate dispatch sockets. We use the
204 * 1st task (task[0]) for internal control events.
216 isc_mempool_t *sepool; /*%< pool for socket events */
3462 isc_eventlist_t events; local
3519 ISC_LIST_INIT(events);
3521 NULL, &events);
3526 ev = (dns_dispatchevent_t *)ISC_LIST_HEAD(events);
H A Dcache.c29 #include <dns/events.h>
1119 * events.
H A Dmasterdump.c30 #include <dns/events.h>
/bind-9.11.3/lib/isccc/
H A Dccmsg.c34 #include <isccc/events.h>
/bind-9.11.3/bin/tests/
H A Dbyaddr_test.c32 #include <dns/events.h>
H A Dbyname_test.c32 #include <dns/events.h>
137 * And ADB isn't going to send us any events
H A Dsig0_test.c34 #include <dns/events.h>
/bind-9.11.3/contrib/perftcpdns/
H A Dperftcpdns.c263 struct epoll_event ievents[EVENTS_CNT]; /* polled input events */
264 struct epoll_event oevents[EVENTS_CNT]; /* polled output events */
611 if (oevents[evn].events == 0)
626 oevents[evn].events = 0;
710 ev.events = EPOLLIN | EPOLLET | EPOLLONESHOT;
916 if (ievents[evn].events == 0)
932 ievents[evn].events = 0;
1103 ev.events = EPOLLOUT | EPOLLET | EPOLLONESHOT;
1268 ev.events = EPOLLOUT | EPOLLET | EPOLLONESHOT;
/bind-9.11.3/bin/tests/system/pipelined/
H A Dpipequeries.c37 #include <dns/events.h>
/bind-9.11.3/bin/named/
H A Dlwdgabn.c24 #include <dns/events.h>
45 * should only be called when events are _not_ being generated by the finds.
/bind-9.11.3/bin/tests/dst/
H A Dgsstest.c42 #include <dns/events.h>

Completed in 152 milliseconds

12