/third_party/alsa-lib/src/timer/ |
D | timer_hw.c | 48 res = close(tmr->poll_fd) < 0 ? -errno : 0; in snd_timer_hw_close() 56 if ((flags = fcntl(timer->poll_fd, F_GETFL)) < 0) in snd_timer_hw_nonblock() 62 if (fcntl(timer->poll_fd, F_SETFL, flags) < 0) in snd_timer_hw_nonblock() 73 fd = timer->poll_fd; in snd_timer_hw_async() 108 if (ioctl(tmr->poll_fd, SNDRV_TIMER_IOCTL_INFO, info) < 0) in snd_timer_hw_info() 120 if (ioctl(tmr->poll_fd, SNDRV_TIMER_IOCTL_PARAMS, params) < 0) in snd_timer_hw_params() 137 if (ioctl(tmr->poll_fd, cmd, status) < 0) in snd_timer_hw_status() 154 if (ioctl(tmr->poll_fd, cmd) < 0) in snd_timer_hw_start() 171 if (ioctl(tmr->poll_fd, cmd) < 0) in snd_timer_hw_stop() 188 if (ioctl(tmr->poll_fd, cmd) < 0) in snd_timer_hw_continue() [all …]
|
D | timer_query_hw.c | 38 res = close(handle->poll_fd) < 0 ? -errno : 0; in snd_timer_query_hw_close() 46 if (ioctl(handle->poll_fd, SNDRV_TIMER_IOCTL_NEXT_DEVICE, tid) < 0) in snd_timer_query_hw_next_device() 55 if (ioctl(handle->poll_fd, SNDRV_TIMER_IOCTL_GINFO, info) < 0) in snd_timer_query_hw_info() 64 if (ioctl(handle->poll_fd, SNDRV_TIMER_IOCTL_GPARAMS, params) < 0) in snd_timer_query_hw_params() 73 if (ioctl(handle->poll_fd, SNDRV_TIMER_IOCTL_GSTATUS, status) < 0) in snd_timer_query_hw_status() 115 tmr->poll_fd = fd; in snd_timer_query_hw_open()
|
D | timer_local.h | 46 int poll_fd; member 65 int poll_fd; member
|
/third_party/alsa-lib/src/hwdep/ |
D | hwdep_hw.c | 42 res = close(hwdep->poll_fd) < 0 ? -errno : 0; in snd_hwdep_hw_close() 50 if ((flags = fcntl(hwdep->poll_fd, F_GETFL)) < 0) in snd_hwdep_hw_nonblock() 56 if (fcntl(hwdep->poll_fd, F_SETFL, flags) < 0) in snd_hwdep_hw_nonblock() 64 if (ioctl(hwdep->poll_fd, SNDRV_HWDEP_IOCTL_INFO, info) < 0) in snd_hwdep_hw_info() 72 if (ioctl(hwdep->poll_fd, request, arg) < 0) in snd_hwdep_hw_ioctl() 81 result = write(hwdep->poll_fd, buffer, size); in snd_hwdep_hw_write() 91 result = read(hwdep->poll_fd, buffer, size); in snd_hwdep_hw_read() 140 hwdep->poll_fd = fd; in snd_hwdep_hw_open()
|
D | hwdep_local.h | 41 int poll_fd; member
|
/third_party/pulseaudio/src/pulse/ |
D | glib-mainloop.c | 38 GPollFD poll_fd; member 110 g_source_remove_poll(&g->source, &e->poll_fd); in cleanup_io_events() 231 e->poll_fd.fd = fd; in glib_io_new() 232 e->poll_fd.events = map_flags_to_glib(f); in glib_io_new() 233 e->poll_fd.revents = 0; in glib_io_new() 241 g_source_add_poll(&g->source, &e->poll_fd); in glib_io_new() 251 e->poll_fd.events = map_flags_to_glib(f); in glib_io_enable() 262 g_source_remove_poll(&e->mainloop->source, &e->poll_fd); in glib_io_free() 530 if (!e->dead && e->poll_fd.revents != 0) in check_func() 580 if (!e->dead && e->poll_fd.revents != 0) { in dispatch_func() [all …]
|
D | ohos_glib-mainloop.c | 39 GPollFD poll_fd; member 111 g_source_remove_poll(&g->source, &e->poll_fd); in cleanup_io_events() 232 e->poll_fd.fd = fd; in glib_io_new() 233 e->poll_fd.events = map_flags_to_glib(f); in glib_io_new() 234 e->poll_fd.revents = 0; in glib_io_new() 242 g_source_add_poll(&g->source, &e->poll_fd); in glib_io_new() 252 e->poll_fd.events = map_flags_to_glib(f); in glib_io_enable() 263 g_source_remove_poll(&e->mainloop->source, &e->poll_fd); in glib_io_free() 534 if (!e->dead && e->poll_fd.revents != 0) in check_func() 585 if (!e->dead && e->poll_fd.revents != 0) { in dispatch_func() [all …]
|
/third_party/rust/crates/rustix/tests/io/ |
D | poll.rs | 53 let mut poll_fd = PollFd::new(&a, PollFlags::empty()); in test_poll_fd_set_fd() localVariable 54 assert_eq!(poll_fd.as_fd().as_raw_fd(), 777); in test_poll_fd_set_fd() 57 poll_fd.set_fd(&b); in test_poll_fd_set_fd() 58 assert_eq!(poll_fd.as_fd().as_raw_fd(), 888); in test_poll_fd_set_fd()
|
/third_party/ltp/utils/sctp/func_tests/ |
D | test_tcp_style.c | 73 struct pollfd poll_fd; in main() local 173 poll_fd.fd = listen_sk; in main() 174 poll_fd.events = POLLIN; in main() 175 poll_fd.revents = 0; in main() 176 error = poll(&poll_fd, 1, -1); in main() 177 if ((1 != error) && (1 != poll_fd.revents)) in main() 180 error, errno, poll_fd.revents); in main()
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_null.c | 45 int poll_fd; member 53 close(null->poll_fd); in snd_pcm_null_close() 404 null->poll_fd = fd; in snd_pcm_null_open() 416 pcm->poll_fd = fd; in snd_pcm_null_open()
|
D | pcm_copy.c | 210 pcm->poll_fd = slave->poll_fd; in snd_pcm_copy_open()
|
D | pcm_mulaw.c | 468 pcm->poll_fd = slave->poll_fd; in snd_pcm_mulaw_open()
|
D | pcm_alaw.c | 454 pcm->poll_fd = slave->poll_fd; in snd_pcm_alaw_open()
|
D | pcm_mmap_emul.c | 429 pcm->poll_fd = slave->poll_fd; in __snd_pcm_mmap_emul_open()
|
D | pcm_lfloat.c | 413 pcm->poll_fd = slave->poll_fd; in snd_pcm_lfloat_open()
|
D | pcm_linear.c | 457 pcm->poll_fd = slave->poll_fd; in snd_pcm_linear_open()
|
/third_party/alsa-lib/src/control/ |
D | control_ext.c | 432 if (ext->poll_fd >= 0) in snd_ctl_ext_poll_descriptors_count() 443 if (ext->poll_fd < 0) in snd_ctl_ext_poll_descriptors() 446 pfds->fd = ext->poll_fd; in snd_ctl_ext_poll_descriptors() 727 ctl->poll_fd = ext->poll_fd; in snd_ctl_ext_create()
|
/third_party/alsa-lib/aserver/ |
D | aserver.c | 163 int poll_fd; member 226 n = write(client->poll_fd, buf, 1); 232 n = read(client->poll_fd, buf, 1); 536 n = write(client->poll_fd, buf, 1); in ctl_handler() 803 close(client->poll_fd); in client_poll_handler() 805 del_waiter(client->poll_fd); in client_poll_handler() 869 client->poll_fd = pdata->fd; in inet_pending_handler() 872 add_waiter(client->poll_fd, POLLHUP, client_poll_handler, client); in inet_pending_handler()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/io/ |
D | mod.rs | 5 pub(crate) mod poll_fd; module
|
/third_party/rust/crates/rustix/src/backend/libc/io/ |
D | mod.rs | 5 pub(crate) mod poll_fd; module
|
/third_party/rust/crates/rustix/src/io/ |
D | poll.rs | 3 pub use backend::io::poll_fd::{PollFd, PollFlags};
|
/third_party/alsa-lib/src/rawmidi/ |
D | rawmidi_local.h | 47 int poll_fd; member
|
D | rawmidi_virt.c | 354 rmidi->poll_fd = pfd.fd; in snd_rawmidi_virtual_open() 374 rmidi->poll_fd = pfd.fd; in snd_rawmidi_virtual_open()
|
/third_party/alsa-lib/include/ |
D | pcm_ioplug.h | 96 int poll_fd; /**< poll file descriptor */ member
|
/third_party/alsa-lib/src/seq/ |
D | seq_local.h | 78 int poll_fd; member
|