Searched refs:in_fd (Results 1 – 2 of 2) sorted by relevance
211 bool CopyFile(int in_fd, int out_fd) { in CopyFile() argument214 while ((byte_count = TEMP_FAILURE_RETRY(read(in_fd, buf, sizeof(buf)))) > 0) { in CopyFile()226 android::base::unique_fd in_fd(OpenForRead(input_file)); in CopyFileToFd() local227 if (out_fd != -1 && in_fd.get() != -1) { in CopyFileToFd()228 if (CopyFile(in_fd.get(), out_fd)) { in CopyFileToFd()
1049 unique_fd in_fd(open(system_profile.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC)); in copy_system_profile() local1055 if (in_fd.get() < 0) { in copy_system_profile()1094 ssize_t bytes = read(in_fd.get(), buffer, kBufferSize); in copy_system_profile()