Searched refs:fd_flags (Results 1 – 5 of 5) sorted by relevance
/system/core/init/ |
D | service_utils.cpp | 159 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/ |
D | subprocess.cc | 202 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/ |
D | postinstall_runner_action.cc | 310 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/ |
D | dmabuf_heap_bench.c | 97 .fd_flags = O_RDWR | O_CLOEXEC, in dmabuf_heap_alloc()
|
/system/memory/libdmabufheap/ |
D | BufferAllocator.cpp | 218 .fd_flags = O_RDWR | O_CLOEXEC, // permissions for the memory to be allocated in DmabufAlloc()
|