Home
last modified time | relevance | path

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

/system/core/init/
Dservice_utils.cpp159 auto fd_flags = fcntl(fd, F_GETFD); in Publish() local
160 fd_flags &= ~FD_CLOEXEC; in Publish()
161 if (fcntl(fd, F_SETFD, fd_flags) != 0) { in Publish()
/system/update_engine/common/
Dsubprocess.cc202 int fd_flags = fcntl(record->stdout_fd, F_GETFL, 0) | O_NONBLOCK; in ExecFlags() local
203 if (HANDLE_EINTR(fcntl(record->stdout_fd, F_SETFL, fd_flags)) < 0) { in ExecFlags()
/system/update_engine/payload_consumer/
Dpostinstall_runner_action.cc310 int fd_flags = fcntl(progress_fd_, F_GETFL, 0) | O_NONBLOCK; in PerformPartitionPostinstall() local
311 if (HANDLE_EINTR(fcntl(progress_fd_, F_SETFL, fd_flags)) < 0) { in PerformPartitionPostinstall()
/system/memory/libdmabufheap/tests/
Ddmabuf_heap_bench.c97 .fd_flags = O_RDWR | O_CLOEXEC, in dmabuf_heap_alloc()
/system/memory/libdmabufheap/
DBufferAllocator.cpp218 .fd_flags = O_RDWR | O_CLOEXEC, // permissions for the memory to be allocated in DmabufAlloc()