Home
last modified time | relevance | path

Searched refs:RUN_NO_INTR (Results 1 – 10 of 10) sorted by relevance

/system/bt/common/
Dutils.h20 #ifndef RUN_NO_INTR
21 #define RUN_NO_INTR(fn) \ macro
/system/bt/gd/os/
Dutils.h21 #ifndef RUN_NO_INTR
22 #define RUN_NO_INTR(fn) \ macro
/system/bt/gd/os/linux_generic/
Dreactor.cc62 RUN_NO_INTR(epoll_fd_ = epoll_create1(EPOLL_CLOEXEC)); in Reactor()
70 RUN_NO_INTR(result = epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, control_fd_, &control_epoll_event)); in Reactor()
76 RUN_NO_INTR(result = epoll_ctl(epoll_fd_, EPOLL_CTL_DEL, control_fd_, nullptr)); in ~Reactor()
79 RUN_NO_INTR(result = close(control_fd_)); in ~Reactor()
82 RUN_NO_INTR(result = close(epoll_fd_)); in ~Reactor()
99 RUN_NO_INTR(count = epoll_wait(epoll_fd_, events, kEpollMaxEvents, timeout_ms)); in Run()
182 RUN_NO_INTR(register_fd = epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, fd, &event)); in Register()
197 RUN_NO_INTR(result = epoll_ctl(epoll_fd_, EPOLL_CTL_DEL, reactable->fd_, nullptr)); in Unregister()
266 RUN_NO_INTR(modify_fd = epoll_ctl(epoll_fd_, EPOLL_CTL_MOD, reactable->fd_, &event)); in ModifyRegistration()
Dreactive_semaphore.cc38 RUN_NO_INTR(close_status = close(fd_)); in ~ReactiveSemaphore()
Dthread.cc43 RUN_NO_INTR(rc = sched_setscheduler(linux_tid, SCHED_FIFO, &rt_params)); in run()
Drepeating_alarm.cc50 RUN_NO_INTR(close_status = TIMERFD_CLOSE(fd_)); in ~RepeatingAlarm()
Dalarm.cc51 RUN_NO_INTR(close_status = TIMERFD_CLOSE(fd_)); in ~Alarm()
Dhandler.cc52 RUN_NO_INTR(close_status = close(fd_)); in ~Handler()
/system/bt/gd/hal/
Dhci_hal_host.cc399 RUN_NO_INTR(received_size = recv(sock_fd_, buf, kH4HeaderSize, 0)); in incoming_packet_received()
408 RUN_NO_INTR(received_size = recv(sock_fd_, buf + kH4HeaderSize, kHciEvtHeaderSize, 0)); in incoming_packet_received()
414 RUN_NO_INTR( in incoming_packet_received()
437 RUN_NO_INTR(received_size = recv(sock_fd_, buf + kH4HeaderSize, kHciAclHeaderSize, 0)); in incoming_packet_received()
443RUN_NO_INTR(payload_size = recv(sock_fd_, buf + kH4HeaderSize + kHciAclHeaderSize, hci_acl_data_to… in incoming_packet_received()
466 RUN_NO_INTR(received_size = recv(sock_fd_, buf + kH4HeaderSize, kHciScoHeaderSize, 0)); in incoming_packet_received()
472RUN_NO_INTR(payload_size = recv(sock_fd_, buf + kH4HeaderSize + kHciScoHeaderSize, hci_sco_data_to… in incoming_packet_received()
490 RUN_NO_INTR(received_size = recv(sock_fd_, buf + kH4HeaderSize, kHciIsoHeaderSize, 0)); in incoming_packet_received()
496RUN_NO_INTR(payload_size = recv(sock_fd_, buf + kH4HeaderSize + kHciIsoHeaderSize, hci_iso_data_to… in incoming_packet_received()
Dhci_hal_host_test.cc86 RUN_NO_INTR(listen_fd_ = socket(AF_INET, SOCK_STREAM, 0)); in FakeRootcanalDesktopHciServer()
116 RUN_NO_INTR(accept_fd = accept(listen_fd_, nullptr, nullptr)); in Accept()