Searched refs:in_fd (Results 1 – 2 of 2) sorted by relevance
843 unique_fd in_fd(open(system_profile.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC)); in copy_system_profile() local849 if (in_fd.get() < 0) { in copy_system_profile()891 ssize_t bytes = read(in_fd.get(), buffer, kBufferSize); in copy_system_profile()
275 bool CopyFile(int in_fd, int out_fd) { in CopyFile() argument278 while ((byte_count = TEMP_FAILURE_RETRY(read(in_fd, buf, sizeof(buf)))) > 0) { in CopyFile()290 android::base::unique_fd in_fd(OpenForRead(input_file)); in CopyFileToFd() local291 if (out_fd != -1 && in_fd.get() != -1) { in CopyFileToFd()292 if (CopyFile(in_fd.get(), out_fd)) { in CopyFileToFd()