Home
last modified time | relevance | path

Searched refs:in_fd (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/cmds/dumpstate/
Ddumpstate.cpp211 bool CopyFile(int in_fd, int out_fd) { in CopyFile() argument
214 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() local
227 if (out_fd != -1 && in_fd.get() != -1) { in CopyFileToFd()
228 if (CopyFile(in_fd.get(), out_fd)) { in CopyFileToFd()
/frameworks/native/cmds/installd/
Ddexopt.cpp1049 unique_fd in_fd(open(system_profile.c_str(), O_RDONLY | O_NOFOLLOW | O_CLOEXEC)); in copy_system_profile() local
1055 if (in_fd.get() < 0) { in copy_system_profile()
1094 ssize_t bytes = read(in_fd.get(), buffer, kBufferSize); in copy_system_profile()