Home
last modified time | relevance | path

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

/frameworks/native/cmds/dumpstate/
Ddumpstate.cpp223 ssize_t byte_count; in CopyFile() local
224 while ((byte_count = TEMP_FAILURE_RETRY(read(in_fd, buf, sizeof(buf)))) > 0) { in CopyFile()
225 if (!android::base::WriteFully(out_fd, buf, byte_count)) { in CopyFile()
229 return (byte_count != -1); in CopyFile()