Home
last modified time | relevance | path

Searched refs:efd (Results 1 – 19 of 19) sorted by relevance

/third_party/pulseaudio/src/pulsecore/
Dfdsem.c51 int efd; member
63 if ((f->efd = eventfd(0, EFD_CLOEXEC)) >= 0) in pa_fdsem_new()
92 f->efd = event_fd; in pa_fdsem_open_shm()
93 pa_make_fd_cloexec(f->efd); in pa_fdsem_open_shm()
110 if ((f->efd = eventfd(0, EFD_CLOEXEC)) < 0) { in pa_fdsem_new_shm()
131 if (f->efd >= 0) in pa_fdsem_free()
132 pa_close(f->efd); in pa_fdsem_free()
150 if (f->efd >= 0) { in flush()
153 if ((r = pa_read(f->efd, &u, sizeof(u), NULL)) != sizeof(u)) { in flush()
193 if (f->efd >= 0) { in pa_fdsem_post()
[all …]
/third_party/ltp/testcases/kernel/syscalls/epoll_pwait/
Depoll_pwait04.c19 static int efd, sfd[2]; variable
25 TST_EXP_FAIL(do_epoll_pwait(efd, &e, 1, -1, bad_addr), in run()
35 efd = epoll_create(1); in setup()
36 if (efd == -1) in setup()
40 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
49 if (efd > 0) in cleanup()
50 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait02.c19 static int efd, sfd[2]; variable
24 TEST(do_epoll_pwait(efd, &e, 1, -1, NULL)); in run()
39 efd = epoll_create(1); in setup()
40 if (efd == -1) in setup()
44 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
51 if (efd > 0) in cleanup()
52 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait03.c20 static int efd, sfd[2]; variable
28 TEST(do_epoll_pwait(efd, &e, 1, ms, NULL)); in sample_fn()
47 efd = epoll_create(1); in setup()
48 if (efd == -1) in setup()
52 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
58 if (efd > 0) in cleanup()
59 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait01.c26 static int efd, sfd[2]; variable
35 TEST(do_epoll_pwait(efd, &e, 1, -1, &signalset)); in verify_sigmask()
48 TST_EXP_FAIL(do_epoll_pwait(efd, &e, 1, -1, NULL), EINTR, in verify_nonsigmask()
99 efd = epoll_create(1); in setup()
100 if (efd == -1) in setup()
104 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
110 if (efd > 0) in cleanup()
111 SAFE_CLOSE(efd); in cleanup()
Depoll_pwait05.c20 static int efd, sfd[2]; variable
35 TST_EXP_FAIL(epoll_pwait2(efd, &e, 1, &tc[n].ts, NULL), in run_all()
43 efd = epoll_create(1); in setup()
44 if (efd == -1) in setup()
48 if (epoll_ctl(efd, EPOLL_CTL_ADD, sfd[0], &e)) in setup()
55 if (efd > 0) in cleanup()
56 SAFE_CLOSE(efd); in cleanup()
/third_party/rust/crates/nix/test/sys/
Dtest_epoll.rs7 let efd = epoll_create1(EpollCreateFlags::empty()).unwrap(); in test_epoll_errno() localVariable
8 let result = epoll_ctl(efd, EpollOp::EpollCtlDel, 1, None); in test_epoll_errno()
12 let result = epoll_ctl(efd, EpollOp::EpollCtlAdd, 1, None); in test_epoll_errno()
19 let efd = epoll_create1(EpollCreateFlags::empty()).unwrap(); in test_epoll_ctl() localVariable
22 epoll_ctl(efd, EpollOp::EpollCtlAdd, 1, &mut event).unwrap(); in test_epoll_ctl()
23 epoll_ctl(efd, EpollOp::EpollCtlDel, 1, None).unwrap(); in test_epoll_ctl()
/third_party/rust/crates/rustix/tests/io/
Deventfd.rs8 let efd = eventfd(0, EventfdFlags::CLOEXEC).unwrap(); in test_eventfd() localVariable
12 assert_eq!(write(&efd, &u.to_ne_bytes()).unwrap(), size_of::<u64>()); in test_eventfd()
14 efd in test_eventfd()
17 let efd = child.join().unwrap(); in test_eventfd() localVariable
20 let s = read(&efd, &mut bytes).unwrap(); in test_eventfd()
/third_party/openssl/engines/
De_afalg.c201 &aio->efd, &custom); in afalg_setup_async_event_notification()
207 aio->efd = eventfd(0); in afalg_setup_async_event_notification()
208 if (aio->efd == -1) { in afalg_setup_async_event_notification()
216 aio->efd, custom, in afalg_setup_async_event_notification()
220 close(aio->efd); in afalg_setup_async_event_notification()
224 if (fcntl(aio->efd, F_SETFL, O_NONBLOCK) != 0) { in afalg_setup_async_event_notification()
232 aio->efd = eventfd(0); in afalg_setup_async_event_notification()
233 if (aio->efd == -1) { in afalg_setup_async_event_notification()
258 aio->efd = -1; in afalg_init_aio()
298 cb->aio_resfd = aio->efd; in afalg_fin_cipher_aio()
[all …]
De_afalg.h70 int efd; member
/third_party/libxml2/
Dnanoftp.c1549 fd_set rfd, efd; in xmlNanoFTPCloseConnection() local
1559 FD_ZERO(&efd); in xmlNanoFTPCloseConnection()
1560 FD_SET(ctxt->controlFd, &efd); in xmlNanoFTPCloseConnection()
1561 res = select(ctxt->controlFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPCloseConnection()
1731 fd_set rfd, efd; in xmlNanoFTPList() local
1774 FD_ZERO(&efd); in xmlNanoFTPList()
1775 FD_SET(ctxt->dataFd, &efd); in xmlNanoFTPList()
1776 res = select(ctxt->dataFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPList()
/third_party/node/doc/api/
Dinspector.md64 Debugger listening on ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
66 ws://localhost:3000/51cf8d0e-3c36-4c59-8efd-54519839e56a
/third_party/elfutils/tests/
Drun-strings-test.sh285 testfile6: efd N10__gnu_test9gnu_obj_2IlEE
328 testfile7: efd N10__gnu_test9gnu_obj_2IlEE
Dtestfile44.expect.bz21testfile44.o: elf32-elf_i386 2 3Disassembly of section .text: 4 5 0 ...
Dtestfile45.expect.bz21testfile45.o: elf64-elf_x86_64 2 3Disassembly of section .text: 4 5 0 ...
/third_party/elfutils/debuginfod/
Ddebuginfod-client.c1656 int efd = open (target_cache_path, O_CREAT|O_EXCL, DEFFILEMODE); in debuginfod_query_server() local
1657 if (efd >= 0) in debuginfod_query_server()
1658 close(efd); in debuginfod_query_server()
/third_party/mesa3d/src/freedreno/.gitlab-ci/reference/
Des2gears-a320.log1771 11842e84: 0000: 0000057f 00002efd
1783 !+ 00002efd CP_SCRATCH_REG7: 12029
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h42092 struct eventfd_ctx *efd; member
/third_party/openh264/res/
DCisco_Absolute_Power_1280x720_30fps.yuv3097 …YXWXYWXUWYXXXUVWWTUVWSTXWTUVVUUTUSVWUWZVUX[\^ekoqsrppponkmnpsw���of_ZV[a``efd\QJXkngWLMQ\defdaabd…