Searched refs:events (Results 251 - 275 of 389) sorted by relevance

<<111213141516

/macosx-10.9.5/BerkeleyDB-21/db/txn/
H A Dtxn.c176 TAILQ_INIT(&txn->events);
269 TAILQ_INIT(&txn->events);
345 TAILQ_INIT(&txn->events);
664 * the events and preprocess any trades now so we don't
859 * handle is closed. Check the events and preprocess any
1303 /* Process commit events. */
/macosx-10.9.5/Heimdal-323.92.1/lib/ipc/
H A Dserver.c1337 fds[n].events = 0;
1339 fds[n].events |= POLLIN;
1341 fds[n].events |= POLLOUT;
1559 * Start processing events for the heimdal event loop
1569 * We only start to process events after we run heim_ipc_main() to
/macosx-10.9.5/libxml2-26/libxml2/
H A Dnanohttp.c505 p.events = POLLOUT;
602 p.events = POLLIN;
971 p.events = POLLOUT;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/
H A Dnanohttp.c500 p.events = POLLOUT;
597 p.events = POLLIN;
966 p.events = POLLOUT;
/macosx-10.9.5/xnu-2422.115.4/bsd/security/audit/
H A Daudit_session.c594 * Audit session events are always generated because they are used
1952 audit_sdev_poll(dev_t dev, int events, void *wql, struct proc *p) argument
1961 if (events & (POLLIN | POLLRDNORM)) {
1964 revents |= events & (POLLIN | POLLRDNORM);
/macosx-10.9.5/zsh-60/zsh/Src/Zle/
H A Dzle_main.c585 fds[0].events = POLLIN;
588 fds[i+1].events = POLLIN;
1077 pfd.events = POLLIN;
/macosx-10.9.5/IOFWDVComponents-207.4.1/tests/
H A DDVTest.c75 OSErr (*fDVNotifyMeWhen)( DVDeviceRefNum refNum, DVNotificationID notifyID, UInt32 events);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPageClient.h29 #include <imf/events.h>
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/include/arch/win32/
H A Dapr_arch_misc.h458 SHORT events; member in struct:pollfd
/macosx-10.9.5/apr-30/apr/apr/include/arch/win32/
H A Dapr_arch_misc.h458 SHORT events; member in struct:pollfd
/macosx-10.9.5/postfix-252/postfix/src/anvil/
H A Danvil.c154 /* associated with those events.
173 /* should always register connect/disconnect events even when
254 #include <events.h>
/macosx-10.9.5/postfix-252/postfix/src/flush/
H A Dflush.c163 #include <events.h>
/macosx-10.9.5/postfix-252/postfix/src/master/
H A Devent_server.c30 /* all the events on a client connection.
39 /* subsequent I/O events on the stream, and is responsible for
205 #include <events.h>
H A Dmulti_server.c193 #include <events.h>
347 /* multi_server_enable_read - enable read events */
H A Dsingle_server.c174 #include <events.h>
H A Dtrigger_server.c185 #include <events.h>
/macosx-10.9.5/postfix-252/postfix/src/postscreen/
H A Dpostscreen.c381 #include <events.h>
/macosx-10.9.5/postfix-252/postfix/src/smtpstone/
H A Dqmqp-source.c99 #include <events.h>
/macosx-10.9.5/postfix-252/postfix/src/tlsmgr/
H A Dtlsmgr.c193 #include <events.h>
468 * event (including internal timer events and external client request
469 * events), instead of doing it in individual event call-back routines.
578 * to the tlsmgr service (including wake up events sent by the master).
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Ddict_cache.c189 #include <events.h>
/macosx-10.9.5/ruby-104/ruby/ext/psych/yaml/
H A Dyaml.h348 * @defgroup events Events
1407 * Call the function subsequently to produce a sequence of events corresponding
1638 } events; member in struct:yaml_emitter_s
/macosx-10.9.5/xnu-2422.115.4/tools/tests/xnu_quick_test/
H A Dsocket_tests.c535 my_pollfd.events = (POLLIN | POLLPRI);
/macosx-10.9.5/zsh-60/zsh/Src/Modules/
H A Dsystem.c136 poll_fd.events = POLLIN;
/macosx-10.9.5/ruby-104/ruby/
H A Dthread.c1267 * shutdown events.
1270 * interrupt events (such as Thread#kill, signal delivery, VM-shutdown
1477 * Async events such as an exception throwed by Thread#raise,
1787 * If +error+ is given, then check only for +error+ type deferred events.
1825 * Since Thread::handle_interrupt can be used to defer asynchronous events.
1826 * This method can be used to determine if there are any deferred events.
1830 * For example, the following method processes deferred asynchronous events
1839 * If +error+ is given, then check only for +error+ type deferred events.
3416 int events = read ? RB_WAITFD_IN : RB_WAITFD_OUT; local
3424 result = rb_wait_for_single_fd(fd, events, NUL
3563 rb_wait_for_single_fd(int fd, int events, struct timeval *tv) argument
3689 rb_wait_for_single_fd(int fd, int events, struct timeval *tv) argument
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Duipc_socket.c4273 sopoll(struct socket *so, int events, kauth_cred_t cred, void * wql) argument
4283 if (events & (POLLIN | POLLRDNORM))
4285 revents |= events & (POLLIN | POLLRDNORM);
4287 if (events & (POLLOUT | POLLWRNORM))
4289 revents |= events & (POLLOUT | POLLWRNORM);
4291 if (events & (POLLPRI | POLLRDBAND))
4293 revents |= events & (POLLPRI | POLLRDBAND);
4296 if (events & (POLLIN | POLLPRI | POLLRDNORM | POLLRDBAND)) {
4305 if (events & (POLLOUT | POLLWRNORM)) {

Completed in 430 milliseconds

<<111213141516