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

1234567891011

/illumos-gate/usr/src/lib/libshell/common/bltins/
H A Dpoll_solaris.c50 "for the event(s) specified in the subscript \b.events\b."
52 "application can read or write data, or on which certain events have "
55 "and the events of interest for each file descriptor. "
60 "[+?\b.events\b # requested events]"
92 "events member.]"
100 "the events member.]"
103 "revents member; it is not used in the events "
108 "[+?If the value fd is less than 0, events is ignored and "
113 "variable to indicate which of the requested events ar
196 int events = 0; local
214 poll_eventstostr(char *s, int events) argument
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Deval.h52 int eval_potential(struct node *np, struct lut *ex, struct node *events[],
54 int eval_expr(struct node *np, struct lut *ex, struct node *events[],
H A Deval.c51 struct node *events[]);
118 eval_getname(struct node *funcnp, struct lut *ex, struct node *events[], argument
133 if (eval_expr(np, ex, events, globals, croot, arrowp, try,
152 if (eval_expr(nodep, ex, events, globals, croot,
157 nodep = eval_dup(nodep, ex, events);
165 eval_cat(struct node *np, struct lut *ex, struct node *events[], argument
175 if (!eval_cat(np->u.expr.left, ex, events, globals, croot,
178 if (!eval_cat(np->u.expr.right, ex, events, globals, croot,
194 if (!eval_expr(np, ex, events, globals, croot,
210 eval_func(struct node *funcnp, struct lut *ex, struct node *events[], argument
948 eval_dup(struct node *np, struct lut *ex, struct node *events[]) argument
1243 eval_potential(struct node *np, struct lut *ex, struct node *events[], struct node **newc, struct config *croot) argument
1385 eval_expr(struct node *np, struct lut *ex, struct node *events[], struct lut **globals, struct config *croot, struct arrow *arrowp, int try, struct evalue *valuep) argument
[all...]
/illumos-gate/usr/src/lib/libc/port/sys/
H A Depoll.c56 * Events that we ignore entirely. They can be set in events, but they will
123 uint32_t events, ev = 0; local
135 * In the modify case, we pass down two events: one to
138 epoll[i++].dpep_pollfd.events = POLLREMOVE;
144 * Mask off the events that we ignore, and then swizzle the
145 * events for which our values differ from their epoll(7)
148 events = event->events;
149 ev = events & ~(EPOLLIGNORED | EPOLLSWIZZLED);
151 if (events
201 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) argument
219 epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout, const sigset_t *sigmask) argument
[all...]
/illumos-gate/usr/src/lib/libshell/common/tests/
H A Dsun_solaris_builtin_poll.sh49 [y]=( fd=5 events="POLLIN" revents="" )
50 [x]=( fd=5 events="POLLIN" revents="" )
63 d1.u[z]=( fd=5 events="POLLOUT" revents="" )
/illumos-gate/usr/src/lib/libc/port/gen/
H A Devent_port.c59 port_associate(int port, int source, uintptr_t object, int events, void *user) argument
62 r.r_vals = _portfs(PORT_ASSOCIATE, port, source, object, events,
112 port_send(int port, int events, void *user) argument
115 r.r_vals = _portfs(PORT_SEND, port, events, (uintptr_t)user, NULL,
126 _port_dispatch(int port, int flags, int source, int events, uintptr_t object, argument
131 r.r_vals = _portfs(PORT_DISPATCH, port, source, events, object,
135 source, events, object, (uintptr_t)user);
140 port_sendn(int ports[], int errors[], uint_t nent, int events, void *user) argument
148 (uintptr_t)ports, (uintptr_t)errors, nent, events,
163 lnent, events, (uintptr_
178 port_alert(int port, int flags, int events, void *user) argument
[all...]
H A Dselect.c119 p->events = 0;
121 p->events |= POLLRDNORM;
123 p->events |= POLLWRNORM;
125 p->events |= POLLRDBAND;
254 (p->events & POLLRDNORM)) {
264 (p->events & POLLWRNORM)) {
274 (p->events & POLLRDBAND)) {
H A Dselect_large_fdset.c152 p->events = 0;
154 p->events |= POLLRDNORM;
156 p->events |= POLLWRNORM;
158 p->events |= POLLRDBAND;
303 (p->events & POLLRDNORM)) {
313 (p->events & POLLWRNORM)) {
323 (p->events & POLLRDBAND)) {
/illumos-gate/usr/src/uts/common/ktli/
H A Dt_kspoll.c50 * success, "events" is set to
51 * 0 on timeout or no events(timout = 0),
83 t_kspoll(TIUSER *tiptr, int timo, int waitflg, int *events) argument
97 if (events == NULL || ((waitflg & READWAIT) == 0))
124 /* Set the return *events. */
127 *events = 0;
132 *events = 1;
/illumos-gate/usr/src/test/util-tests/tests/libnvpair_json/
H A Djson_07_nested_arrays.ksh24 "events":[\
55 add_object_array "events";
/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Devents.c49 static struct event_list *events = NULL; variable in typeref:struct:event_list
59 * wait for a few seconds for all of the add events to come in and then
117 } else if (events != NULL) {
120 event = events->event;
121 tmpp = events->next;
122 free(events);
123 events = tmpp;
275 if (events == NULL) {
277 events = (struct event_list *)malloc(sizeof (struct event_list));
278 if (events
[all...]
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Drpc_sel2poll.c44 * polls for input events). We return the number of pollfd slots
65 p->events = MASKVAL;
93 p->events = srcp[n].events;
H A Drpc_mt.h64 (y)[(x)].events = MASKVAL; \
68 (y)[(x)].events = 0; \
/illumos-gate/usr/src/uts/common/sys/
H A Depoll.h38 uint32_t events; /* events */ member in struct:epoll_event
78 extern int epoll_wait(int epfd, struct epoll_event *events,
80 extern int epoll_pwait(int epfd, struct epoll_event *events,
H A Dpoll.h50 short events; /* events of interest on fd */ member in struct:pollfd
51 short revents; /* events that occurred on fd */
57 * Testable select events
71 * Non-testable poll events (may not be specified in events field,
79 * These events will never be specified in revents, but may be specified in
80 * events to control /dev/poll behavior.
/illumos-gate/usr/src/cmd/powertop/
H A DMakefile.com32 events.o \
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_evd_resize.c141 /* add events to free event queue */
147 * copy pending events from evd to the new pending event queue
162 if (evd_ptr->events) {
163 dapl_os_free(evd_ptr->events,
166 evd_ptr->events = event_ptr;
/illumos-gate/usr/src/lib/libwanboot/common/
H A Dsocket_inet.c54 pfd.events = POLLIN;
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/bridged/
H A DMakefile30 OBJS= dlpi.o door.o events.o main.o rstp.o
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dutil.c185 set_pollfd(int fd, uint16_t events) argument
207 p->events = events;
220 p->events = 0;
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/nc/
H A Datomicio.c52 pfd.events = f == read ? POLLIN : POLLOUT;
/illumos-gate/usr/src/uts/common/sys/ib/clients/of/sol_uverbs/
H A Dsol_uverbs_event.h70 int sol_uverbs_event_file_poll(uverbs_ufile_uobj_t *, short events, int anyyet,
/illumos-gate/usr/src/cmd/lp/lib/msgs/
H A Dmdestroy.c55 pfd.events = POLLIN;
/illumos-gate/usr/src/uts/common/io/
H A Dpshot.c594 * events setup
2442 * the nexus driver will generate events
3542 ndi_event_set_t events; local
3547 events.ndi_events_version = NDI_EVENTS_REV1;
3548 events.ndi_n_events = PSHOT_N_TEST_EVENTS;
3549 events.ndi_event_defs = pshot_test_events;
3551 cmn_err(CE_CONT, "pshot: binding set of 8 events\n");
3553 rval = ndi_event_bind_set(hdl, &events, NDI_SLEEP);
3556 cmn_err(CE_CONT, "pshot: binding the same set of 8 events\n");
3558 rval = ndi_event_bind_set(hdl, &events, NDI_SLEE
[all...]
/illumos-gate/usr/src/uts/common/fs/portfs/
H A Dport_vnops.c76 * port_discard_events() scans the port event queue for events owned
77 * by current proc. Non-shareable events will be discarded, all other
78 * events remain in the event queue.
108 * Free all kernel events structures which are still in the event queue.
114 int events; /* ignore events */ local
122 &events, pkevp->portkev_pid, PORT_CALLBACK_CLOSE, local
148 * - pending and delivered events will be discarded.
251 /* Wait for outstanding events */
268 * Now all events ar
284 port_poll(vnode_t *vp, short events, int anyyet, short *reventsp, struct pollhead **phpp, caller_context_t *ct) argument
[all...]

Completed in 150 milliseconds

1234567891011