/external/grpc-grpc/src/core/lib/iomgr/ |
D | wakeup_fd_eventfd.cc | 35 int efd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); in eventfd_create() local 36 if (efd < 0) { in eventfd_create() 39 fd_info->read_fd = efd; in eventfd_create() 73 const int efd = eventfd(0, 0); in eventfd_check_availability() local 74 const int is_available = efd >= 0; in eventfd_check_availability() 75 if (is_available) close(efd); in eventfd_check_availability()
|
/external/linux-kselftest/tools/testing/selftests/bpf/ |
D | get_cgroup_id_user.c | 52 int err, bytes, efd, prog_fd, pmu_fd; in main() local 94 efd = open(buf, O_RDONLY, 0); in main() 95 if (CHECK(efd < 0, "open", "err %d errno %d\n", efd, errno)) in main() 97 bytes = read(efd, buf, sizeof(buf)); in main() 98 close(efd); in main()
|
D | test_progs.c | 755 int i, j, bytes, efd, err, prog_fd[num_progs], pmu_fd[num_progs]; in test_tp_attach_query() local 766 efd = open(buf, O_RDONLY, 0); in test_tp_attach_query() 767 if (CHECK(efd < 0, "open", "err %d errno %d\n", efd, errno)) in test_tp_attach_query() 769 bytes = read(efd, buf, sizeof(buf)); in test_tp_attach_query() 770 close(efd); in test_tp_attach_query() 949 int bytes, efd, err, pmu_fd, prog_fd, stack_trace_len; in test_stacktrace_map() local 962 efd = open(buf, O_RDONLY, 0); in test_stacktrace_map() 963 if (CHECK(efd < 0, "open", "err %d errno %d\n", efd, errno)) in test_stacktrace_map() 966 bytes = read(efd, buf, sizeof(buf)); in test_stacktrace_map() 967 close(efd); in test_stacktrace_map() [all …]
|
/external/compiler-rt/test/msan/Linux/ |
D | eventfd.cc | 9 int efd = eventfd(42, 0); in main() local 10 assert(efd >= 0); in main() 13 int ret = eventfd_read(efd, &v); in main()
|
/external/strace/ |
D | kcmp.c | 34 uint32_t efd; member 85 PRINT_FIELD_PIDFD("{", slot, efd, tcp, pid2); in SYS_FUNC()
|
/external/openssh/ |
D | channels.h | 105 int efd; /* extended fd */ member 204 (c->efd != -1 || \ 208 c->efd != -1 && (!(c->flags & (CHAN_EOF_RCVD|CHAN_CLOSE_RCVD)) || \
|
D | channels.c | 261 channel_register_fds(Channel *c, int rfd, int wfd, int efd, in channel_register_fds() argument 267 channel_max_fd = MAXIMUM(channel_max_fd, efd); in channel_register_fds() 273 if (efd != -1 && efd != rfd && efd != wfd) in channel_register_fds() 274 fcntl(efd, F_SETFD, FD_CLOEXEC); in channel_register_fds() 279 c->efd = efd; in channel_register_fds() 295 if (efd != -1) in channel_register_fds() 296 set_nonblock(efd); in channel_register_fds() 305 channel_new(char *ctype, int type, int rfd, int wfd, int efd, in channel_new() argument 350 channel_register_fds(c, rfd, wfd, efd, extusage, nonblock, 0); in channel_new() 395 max = MAXIMUM(max, c->efd); in channel_find_maxfd() [all …]
|
D | nchan.c | 456 c->efd != -1 && in chan_is_dead() 459 c->self, c->efd, buffer_len(&c->extended)); in chan_is_dead()
|
/external/strace/tests-m32/ |
D | kcmp.c | 71 uint32_t efd; member 131 printpidfd("{efd=", pid2, slot->efd); in do_kcmp()
|
/external/strace/tests/ |
D | kcmp.c | 71 uint32_t efd; member 131 printpidfd("{efd=", pid2, slot->efd); in do_kcmp()
|
/external/strace/tests-mx32/ |
D | kcmp.c | 71 uint32_t efd; member 131 printpidfd("{efd=", pid2, slot->efd); in do_kcmp()
|
/external/kernel-headers/original/uapi/linux/ |
D | kcmp.h | 23 __u32 efd; /* epoll file descriptor */ member
|
/external/libxml2/ |
D | nanoftp.c | 1550 fd_set rfd, efd; in xmlNanoFTPCloseConnection() local 1560 FD_ZERO(&efd); in xmlNanoFTPCloseConnection() 1561 FD_SET(ctxt->controlFd, &efd); in xmlNanoFTPCloseConnection() 1562 res = select(ctxt->controlFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPCloseConnection() 1732 fd_set rfd, efd; in xmlNanoFTPList() local 1775 FD_ZERO(&efd); in xmlNanoFTPList() 1776 FD_SET(ctxt->dataFd, &efd); in xmlNanoFTPList() 1777 res = select(ctxt->dataFd + 1, &rfd, NULL, &efd, &tv); in xmlNanoFTPList()
|
/external/bcc/src/cc/ |
D | libbpf.c | 774 int efd, cpu = 0; in bpf_attach_tracing_event() local 782 efd = open(buf, O_RDONLY | O_CLOEXEC, 0); in bpf_attach_tracing_event() 783 if (efd < 0) { in bpf_attach_tracing_event() 788 bytes = read(efd, buf, sizeof(buf)); in bpf_attach_tracing_event() 791 close(efd); in bpf_attach_tracing_event() 794 close(efd); in bpf_attach_tracing_event()
|
/external/linux-kselftest/tools/testing/selftests/kcmp/ |
D | kcmp_test.c | 139 .efd = epollfd, in main()
|
/external/elfutils/tests/ |
D | run-strings-test.sh | 285 testfile6: efd N10__gnu_test9gnu_obj_2IlEE 328 testfile7: efd N10__gnu_test9gnu_obj_2IlEE
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-objdump/X86/ |
D | macho-symbolized-disassembly.test | 27 ObjC-EXE: 0000000100000efd movq 0x124(%rip), %rsi ## Objc selector ref: new
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-symbolized-disassembly.test | 27 ObjC-EXE: 0000000100000efd movq 0x124(%rip), %rsi ## Objc selector ref: new
|
/external/arm-optimized-routines/test/testcases/directed/ |
D | rred.tst | 73 func=rred op1=41193c05.c9ed3cbc result=3cb065d7.3720c4f8.efd res2=00000001 errno=0
|
/external/toolchain-utils/android_bench_suite/ |
D | panorama.diff | 647 index 612fc783..07565efd 100644
|
/external/ImageMagick/PerlMagick/t/ |
D | input.mat | 147 1Xorpy����������}ywxxtrspmnolijjiiijhedea[]a`]\ZZXTOI:(.M`a\YYYXVVZZV\gjge`]^]`efd``bdgjkmmkijkl…
|
/external/syzkaller/sys/linux/ |
D | sys.txt | 923 efd fd_epoll
|
/external/webrtc/data/voice_engine/stereo_rtp_files/ |
D | stereo_g729_jitter.rtp | 594 …�6�I��Xx��S��K�Wr��Uj�kV���s�X�V�:��]JkV<4�����8%I��X�{��Лؿr�efd$��<����e�ǽr��{b��…
|
D | stereo_g729.rtp | 602 …��7�I��XR��Z��x�d �ξ*�8^�K�2����@� :ˎR�<4�����8%I��X�{��Лؿr�efd$��<����e�ǽr��{b��…
|
/external/google-breakpad/src/processor/testdata/symbols/overflow/B0E1FC01EF48E39CAF5C881D2DF0C3840/ |
D | overflow.sym | 1559 5efd 14 161 9 2251 7efd 5 1705 23
|