Home
last modified time | relevance | path

Searched refs:eventfd (Results 1 – 25 of 98) sorted by relevance

1234

/aosp12/bionic/tests/
H A Deventfd_test.cpp26 TEST(eventfd, smoke) { in TEST() argument
28 int fd = eventfd(kInitialValue, EFD_NONBLOCK); in TEST()
50 TEST(eventfd, cloexec) { in TEST() argument
52 int fd = eventfd(kInitialValue, EFD_CLOEXEC); in TEST()
62 fd = eventfd(kInitialValue, EFD_NONBLOCK | EFD_CLOEXEC); in TEST()
73 TEST(eventfd, semaphore) { in TEST() argument
74 int fd = eventfd(3, EFD_NONBLOCK | EFD_SEMAPHORE); in TEST()
/aosp12/hardware/qcom/display/msm8996/sdm/include/utils/
H A Dsys.h62 typedef int (*eventfd)(unsigned int, int); typedef
76 static eventfd eventfd_;
/aosp12/hardware/qcom/display/msm8909/sdm/include/utils/
H A Dsys.h67 typedef int (*eventfd)(unsigned int, int); typedef
82 static eventfd eventfd_;
/aosp12/hardware/qcom/display/msm8909w_3100/sdm/include/utils/
H A Dsys.h67 typedef int (*eventfd)(unsigned int, int); typedef
82 static eventfd eventfd_;
/aosp12/hardware/qcom/display/msm8998/sdm/include/utils/
H A Dsys.h67 typedef int (*eventfd)(unsigned int, int); typedef
82 static eventfd eventfd_;
/aosp12/hardware/qcom/sdm845/display/sdm/include/utils/
H A Dsys.h67 typedef int (*eventfd)(unsigned int, int); typedef
82 static eventfd eventfd_;
/aosp12/hardware/qcom/sm7250/display/sdm/include/utils/
H A Dsys.h63 typedef int (*eventfd)(unsigned int, int); typedef
78 static eventfd eventfd_;
/aosp12/hardware/qcom/sm8150/display/sdm/include/utils/
H A Dsys.h67 typedef int (*eventfd)(unsigned int, int); typedef
82 static eventfd eventfd_;
/aosp12/hardware/qcom/display/msm8996/sdm/libs/utils/
H A Dsys.cpp57 Sys::eventfd Sys::eventfd_ = ::eventfd;
/aosp12/hardware/qcom/display/msm8909/sdm/libs/utils/
H A Dsys.cpp58 Sys::eventfd Sys::eventfd_ = ::eventfd;
/aosp12/hardware/qcom/display/msm8909w_3100/sdm/libs/utils/
H A Dsys.cpp58 Sys::eventfd Sys::eventfd_ = ::eventfd;
/aosp12/hardware/qcom/display/msm8998/sdm/libs/utils/
H A Dsys.cpp58 Sys::eventfd Sys::eventfd_ = ::eventfd;
/aosp12/hardware/qcom/sdm845/display/sdm/libs/utils/
H A Dsys.cpp58 Sys::eventfd Sys::eventfd_ = ::eventfd;
/aosp12/hardware/qcom/sm7250/display/sdm/libs/utils/
H A Dsys.cpp58 Sys::eventfd Sys::eventfd_ = ::eventfd;
/aosp12/hardware/qcom/sm8150/display/sdm/libs/utils/
H A Dsys.cpp58 Sys::eventfd Sys::eventfd_ = ::eventfd;
/aosp12/art/tools/
H A Ddt_fds_forward.py45 def eventfd(init_val, flags): function
49 return libc.eventfd(init_val, flags)
56 fd = eventfd(init, 0)
/aosp12/system/bt/osi/test/
H A Dreactor_test.cc85 int fd = eventfd(0, 0); in TEST_F()
101 int fd = eventfd(0, 0); in TEST_F()
/aosp12/frameworks/native/libs/vr/libpdx_uds/
H A Dchannel_event_set.cpp36 if (!SetupHandle(eventfd(0, flags), &pollin_event_fd, "pollin_event") || in ChannelEventSet()
37 !SetupHandle(eventfd(0, flags), &pollhup_event_fd, "pollhup_event")) { in ChannelEventSet()
/aosp12/bionic/libc/
H A DSECCOMP_ALLOWLIST_APP.TXT18 int eventfd:eventfd(unsigned int initval, int flags) lp32
/aosp12/bionic/libc/include/sys/
H A Deventfd.h54 int eventfd(unsigned int __initial_value, int __flags);
/aosp12/bionic/libc/bionic/
H A Deventfd.cpp36 int eventfd(unsigned int initval, int flags) { in eventfd() function
/aosp12/system/bt/gd/os/linux_generic/
H A Dreactor_unittest.cc59 SampleReactable() : fd_(eventfd(0, EFD_NONBLOCK)) { in SampleReactable()
82 FakeReactable() : fd_(eventfd(0, 0)), reactor_(nullptr) { in FakeReactable()
86 FakeReactable(Reactor* reactor) : fd_(eventfd(0, 0)), reactor_(reactor) { in FakeReactable()
143 FakeRunningReactable() : fd_(eventfd(0, 0)) { in FakeRunningReactable()
H A Dreactive_semaphore.cc32 ReactiveSemaphore::ReactiveSemaphore(unsigned int value) : fd_(eventfd(value, EFD_SEMAPHORE | EFD_N… in ReactiveSemaphore()
/aosp12/frameworks/native/services/vr/hardware_composer/tests/
H A Dvr_composer_test.cpp61 base::unique_fd fd(eventfd(0, 0)); in onNewFrame()
133 .fence = new Fence(eventfd(0, 0)), in TEST_F()
/aosp12/bionic/libc/kernel/uapi/misc/
H A Docxl.h65 __s32 eventfd; member

1234