/external/libevent/ |
D | kqueue.c | 152 kqueueop->changes[0].filter = EVFILT_READ; in kq_init() 195 if (filter == EVFILT_READ) in kq_setup_kevent() 237 kq_setup_kevent(out_ch, in_ch->fd, EVFILT_READ, in kq_build_changes_list() 400 } else if (events[i].filter == EVFILT_READ) { in kq_dispatch()
|
/external/rust/crates/mio/src/sys/unix/selector/ |
D | kqueue.rs | 144 let kevent = kevent!(fd, libc::EVFILT_READ, flags, token.0); in register() 184 kevent!(fd, libc::EVFILT_READ, read_flags, token.0), in reregister() 206 kevent!(fd, libc::EVFILT_READ, flags, 0), in deregister() 373 event.filter == libc::EVFILT_READ || { in is_readable() 400 event.filter == libc::EVFILT_READ && event.flags & libc::EV_EOF != 0 in is_read_closed() 450 libc::EVFILT_READ, in debug_details()
|
/external/libcups/scheduler/ |
D | select.c | 301 EV_SET(&event, fd, EVFILT_READ, EV_ADD, 0, 0, fdptr); 303 EV_SET(&event, fd, EVFILT_READ, EV_DELETE, 0, 0, fdptr); 433 if (fdptr->read_cb && event->filter == EVFILT_READ) in cupsdDoSelect() 729 EV_SET(&event, fd, EVFILT_READ, EV_DELETE, 0, 0, fdptr); in cupsdRemoveSelect()
|
/external/rust/crates/nix/src/sys/ |
D | event.rs | 62 EVFILT_READ, 318 EventFilter::EVFILT_READ, in test_struct_kevent() 324 assert_eq!(libc::EVFILT_READ, actual.filter() as type_of_event_filter); in test_struct_kevent()
|
/external/llvm-project/lldb/source/Host/common/ |
D | MainLoop.cpp | 108 EV_SET(&in_events[i++], fd.first, EVFILT_READ, EV_ADD, 0, 0, 0); in Poll() 130 case EVFILT_READ: in ProcessEvents()
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | RNBSocket.cpp | 146 EV_SET(&events[i++], socket.first, EVFILT_READ, EV_ADD, 0, 0, 0); in Listen()
|
/external/wpa_supplicant_8/src/utils/ |
D | eloop.c | 234 return EVFILT_READ; in event_type_kevent_filter() 1346 EV_SET(&ke1, sock, EVFILT_READ, EV_ADD | EV_ONESHOT, 0, 0, 0); in eloop_wait_for_read_sock()
|
/external/python/cpython2/Modules/ |
D | selectmodule.c | 1344 EV_SET(&(self->e), 0, EVFILT_READ, EV_ADD, 0, 0, 0); /* defaults */ in kqueue_event_init() 1957 PyModule_AddIntConstant(m, "KQ_FILTER_READ", EVFILT_READ);
|
/external/python/cpython3/Modules/ |
D | selectmodule.c | 1884 EV_SET(&(self->e), 0, EVFILT_READ, EV_ADD, 0, 0, 0); /* defaults */ in kqueue_event_init() 2587 PyModule_AddIntConstant(m, "KQ_FILTER_READ", EVFILT_READ);
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/ |
D | mod.rs | 603 pub const EVFILT_READ: i16 = -1; constant
|
/external/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ |
D | mod.rs | 1123 pub const EVFILT_READ: i16 = -1; constant
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/ |
D | mod.rs | 461 pub const EVFILT_READ: i16 = -1; constant
|
/external/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
D | mod.rs | 1456 pub const EVFILT_READ: u32 = 0; constant
|
/external/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 2683 pub const EVFILT_READ: i16 = -1; constant
|