Home
last modified time | relevance | path

Searched refs:EPOLLPRI (Results 1 – 15 of 15) sorted by relevance

/third_party/mesa3d/src/vulkan/overlay-layer/
Dmesa-overlay-control.py6 from select import EPOLLIN, EPOLLPRI, EPOLLERR
33 epoll.register(sock, EPOLLIN | EPOLLPRI | EPOLLERR)
/third_party/musl/porting/liteos_m/kernel/include/sys/
Depoll.h21 #define EPOLLPRI 0x002 macro
/third_party/musl/include/sys/
Depoll.h21 #define EPOLLPRI 0x002 macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Depoll.h21 #define EPOLLPRI 0x002 macro
/third_party/musl/ndk_musl_include/sys/
Depoll.h21 #define EPOLLPRI 0x002 macro
/third_party/musl/porting/uniproton/kernel/include/sys/
Depoll.h21 #define EPOLLPRI 0x002 macro
/third_party/ltp/testcases/kernel/syscalls/epoll_ctl/
Depoll_ctl03.c27 EPOLLIN, EPOLLOUT, EPOLLPRI, EPOLLERR,
/third_party/boost/boost/asio/detail/impl/
Depoll_reactor.ipp171 ev.events = EPOLLIN | EPOLLERR | EPOLLHUP | EPOLLPRI | EPOLLET;
214 ev.events = EPOLLIN | EPOLLERR | EPOLLHUP | EPOLLPRI | EPOLLET;
735 static const int flag[max_ops] = { EPOLLIN, EPOLLOUT, EPOLLPRI };
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Depoll_reactor.ipp171 ev.events = EPOLLIN | EPOLLERR | EPOLLHUP | EPOLLPRI | EPOLLET;
214 ev.events = EPOLLIN | EPOLLERR | EPOLLHUP | EPOLLPRI | EPOLLET;
735 static const int flag[max_ops] = { EPOLLIN, EPOLLOUT, EPOLLPRI };
/third_party/ltp/testcases/kernel/syscalls/epoll/
Depoll-ltp.c420 (EPOLLPRI * ((index & 0x04) >> 2)) | in test_epoll_ctl()
/third_party/python/Modules/clinic/
Dselectmodule.c.h665 unsigned int eventmask = EPOLLIN | EPOLLPRI | EPOLLOUT; in select_epoll_register()
/third_party/grpc/src/core/lib/iomgr/
Dev_epoll1_linux.cc690 bool read_ev = (ev->events & (EPOLLIN | EPOLLPRI)) != 0; in process_epoll_events()
Dev_epollex_linux.cc903 bool read_ev = (ev->events & (EPOLLIN | EPOLLPRI)) != 0;
/third_party/python/Doc/library/
Dselect.rst289 | :const:`EPOLLPRI` | Urgent data for read |
/third_party/python/Modules/
Dselectmodule.c2495 PyModule_AddIntMacro(m, EPOLLPRI);