Home
last modified time | relevance | path

Searched refs:fd_flags (Results 1 – 4 of 4) sorted by relevance

/system/core/init/
Dservice_utils.cpp158 auto fd_flags = fcntl(fd, F_GETFD); in Publish() local
159 fd_flags &= ~FD_CLOEXEC; in Publish()
160 if (fcntl(fd, F_SETFD, fd_flags) != 0) { in Publish()
/system/update_engine/payload_consumer/
Dpostinstall_runner_action.cc218 int fd_flags = fcntl(progress_fd_, F_GETFL, 0) | O_NONBLOCK; in PerformPartitionPostinstall() local
219 if (HANDLE_EINTR(fcntl(progress_fd_, F_SETFL, fd_flags)) < 0) { in PerformPartitionPostinstall()
/system/update_engine/common/
Dsubprocess.cc196 int fd_flags = fcntl(record->stdout_fd, F_GETFL, 0) | O_NONBLOCK; in ExecFlags() local
197 if (HANDLE_EINTR(fcntl(record->stdout_fd, F_SETFL, fd_flags)) < 0) { in ExecFlags()
/system/memory/libdmabufheap/
DBufferAllocator.cpp200 .fd_flags = O_RDWR | O_CLOEXEC, // permissions for the memory to be allocated in DmabufAlloc()