Home
last modified time | relevance | path

Searched refs:pollev (Results 1 – 25 of 34) sorted by relevance

12

/dports/lang/nim/nim-1.6.2/lib/pure/ioselects/
H A Dioselectors_poll.nim85 var pollev: cshort = 0
86 if Event.Read in events: pollev = pollev or POLLIN
87 if Event.Write in events: pollev = pollev or POLLOUT
89 s.pollfds[s.pollcnt].events = pollev
96 var pollev: cshort = 0
97 if Event.Read in events: pollev = pollev or POLLIN
98 if Event.Write in events: pollev = pollev or POLLOUT
102 s.pollfds[i].events = pollev
/dports/graphics/aloadimage/arcan-0.6.1/tests/core/proxycon/
H A Dproxycon.c31 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in proxy_client() local
35 .events = pollev in proxy_client()
39 .events = pollev in proxy_client()
/dports/sysutils/acfgfs/arcan-0.6.1/tests/core/proxycon/
H A Dproxycon.c31 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in proxy_client() local
35 .events = pollev in proxy_client()
39 .events = pollev in proxy_client()
/dports/x11/aclip/arcan-0.6.1/tests/core/proxycon/
H A Dproxycon.c31 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in proxy_client() local
35 .events = pollev in proxy_client()
39 .events = pollev in proxy_client()
/dports/x11/arcan-trayicon/arcan-0.6.1/tests/core/proxycon/
H A Dproxycon.c31 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in proxy_client() local
35 .events = pollev in proxy_client()
39 .events = pollev in proxy_client()
/dports/devel/efl/efl-1.25.1/src/lib/ecore/
H A Decore_pipe.c335 struct epoll_event pollev = { 0 }; in ecore_pipe_full_add() local
340 pollev.data.ptr = &(p->fd_read); in ecore_pipe_full_add()
341 pollev.events = EPOLLIN; in ecore_pipe_full_add()
342 epoll_ctl(p->pollfd, EPOLL_CTL_ADD, p->fd_read, &pollev); in ecore_pipe_full_add()
344 pollev.data.ptr = &(p->timerfd); in ecore_pipe_full_add()
345 pollev.events = EPOLLIN; in ecore_pipe_full_add()
346 epoll_ctl(p->pollfd, EPOLL_CTL_ADD, p->timerfd, &pollev); in ecore_pipe_full_add()
H A Decore_anim.c135 struct epoll_event pollev = { 0 }; in _timer_tick_core() local
181 pollev.data.ptr = INPUT_TIMER_CONTROL; in _timer_tick_core()
182 pollev.events = EPOLLIN; in _timer_tick_core()
183 if (epoll_ctl(pollfd, EPOLL_CTL_ADD, timer_fd_read, &pollev) != 0) in _timer_tick_core()
192 pollev.data.ptr = INPUT_TIMER_TIMERFD; in _timer_tick_core()
193 pollev.events = EPOLLIN; in _timer_tick_core()
194 if (epoll_ctl(pollfd, EPOLL_CTL_ADD, timerfd, &pollev) != 0) in _timer_tick_core()
/dports/graphics/aloadimage/arcan-0.6.1/src/frameserver/remoting/default/
H A Dvnc.c353 short pollev = POLLIN | poller; in run_vnc() local
366 { .fd = vncctx.client->sock, .events = pollev}, in run_vnc()
367 { .fd = vncctx.shmcont.epipe, .events = pollev} in run_vnc()
/dports/sysutils/acfgfs/arcan-0.6.1/src/frameserver/remoting/default/
H A Dvnc.c353 short pollev = POLLIN | poller; in run_vnc() local
366 { .fd = vncctx.client->sock, .events = pollev}, in run_vnc()
367 { .fd = vncctx.shmcont.epipe, .events = pollev} in run_vnc()
/dports/x11/aclip/arcan-0.6.1/src/frameserver/remoting/default/
H A Dvnc.c353 short pollev = POLLIN | poller; in run_vnc() local
366 { .fd = vncctx.client->sock, .events = pollev}, in run_vnc()
367 { .fd = vncctx.shmcont.epipe, .events = pollev} in run_vnc()
/dports/x11/arcan-trayicon/arcan-0.6.1/src/frameserver/remoting/default/
H A Dvnc.c353 short pollev = POLLIN | poller; in run_vnc() local
366 { .fd = vncctx.client->sock, .events = pollev}, in run_vnc()
367 { .fd = vncctx.shmcont.epipe, .events = pollev} in run_vnc()
/dports/graphics/aloadimage/arcan-0.6.1/src/tools/aloadimage/
H A Daloadimage.c699 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in wait_for_event() local
702 .events = pollev, in wait_for_event()
706 .events = pollev, in wait_for_event()
/dports/sysutils/acfgfs/arcan-0.6.1/src/tools/aloadimage/
H A Daloadimage.c699 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in wait_for_event() local
702 .events = pollev, in wait_for_event()
706 .events = pollev, in wait_for_event()
/dports/x11/arcan-trayicon/arcan-0.6.1/src/tools/aloadimage/
H A Daloadimage.c699 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in wait_for_event() local
702 .events = pollev, in wait_for_event()
706 .events = pollev, in wait_for_event()
/dports/x11/aclip/arcan-0.6.1/src/tools/aloadimage/
H A Daloadimage.c699 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in wait_for_event() local
702 .events = pollev, in wait_for_event()
706 .events = pollev, in wait_for_event()
/dports/graphics/aloadimage/arcan-0.6.1/src/shmif/tui/
H A Dtui.c371 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in arcan_tui_process() local
378 .events = pollev, in arcan_tui_process()
385 .events = pollev in arcan_tui_process()
394 .events = pollev in arcan_tui_process()
/dports/sysutils/acfgfs/arcan-0.6.1/src/shmif/tui/
H A Dtui.c371 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in arcan_tui_process() local
378 .events = pollev, in arcan_tui_process()
385 .events = pollev in arcan_tui_process()
394 .events = pollev in arcan_tui_process()
/dports/x11/aclip/arcan-0.6.1/src/shmif/tui/
H A Dtui.c371 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in arcan_tui_process() local
378 .events = pollev, in arcan_tui_process()
385 .events = pollev in arcan_tui_process()
394 .events = pollev in arcan_tui_process()
/dports/x11/arcan-trayicon/arcan-0.6.1/src/shmif/tui/
H A Dtui.c371 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in arcan_tui_process() local
378 .events = pollev, in arcan_tui_process()
385 .events = pollev in arcan_tui_process()
394 .events = pollev in arcan_tui_process()
/dports/graphics/aloadimage/arcan-0.6.1/src/frameserver/terminal/default/
H A Darcterm.c493 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in pump_pty() local
496 {.fd = fd, .events = pollev}, in pump_pty()
497 {.fd = term.dirtyfd, pollev}, in pump_pty()
/dports/sysutils/acfgfs/arcan-0.6.1/src/frameserver/terminal/default/
H A Darcterm.c493 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in pump_pty() local
496 {.fd = fd, .events = pollev}, in pump_pty()
497 {.fd = term.dirtyfd, pollev}, in pump_pty()
/dports/x11/arcan-trayicon/arcan-0.6.1/src/frameserver/terminal/default/
H A Darcterm.c493 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in pump_pty() local
496 {.fd = fd, .events = pollev}, in pump_pty()
497 {.fd = term.dirtyfd, pollev}, in pump_pty()
/dports/x11/aclip/arcan-0.6.1/src/frameserver/terminal/default/
H A Darcterm.c493 short pollev = POLLIN | POLLERR | POLLNVAL | POLLHUP; in pump_pty() local
496 {.fd = fd, .events = pollev}, in pump_pty()
497 {.fd = term.dirtyfd, pollev}, in pump_pty()
/dports/mail/cone/cone-1.1/cone/
H A Dmyserver.C301 int pollev = fds.back().revents; in eventloop() local
303 if((pollev & POLLIN) && read( in eventloop()
/dports/math/gap/gap-4.11.0/pkg/gbnp/lib/
H A Dtrunc.gi436 …function(K,deg,wtv,out) local t0,G,GB,lts,deg0,dd,dims,pollev,tot,split,arg,deglst,weights,i,temp,…
488 pollev:=GBNP.NondivMonsByLevel(ans,lts,wtv,dd);
489 Add(ans,pollev);
490 Add(dims,Length(pollev));

12