Home | History | Annotate | Download | only in src

Lines Matching defs:file

3 // found in the LICENSE file.
39 "Usage: %s [-u] [-v] [-p] file\n\n"
42 " -v, --verbose trace object file modifications (for debugging)\n"
96 const char* file = argv[argc - 1];
97 ScopedFd fd(open(file, O_RDWR));
99 LOG(ERROR) << file << ": " << strerror(errno);
110 LOG(ERROR) << file << ": failed to read elf header:" << strerror(errno);
115 LOG(ERROR) << file << ": lseek to 0 failed:" << strerror(errno);
140 LOG(ERROR) << file << ": unknown ELFCLASS: " << e_ident[EI_CLASS];
145 LOG(ERROR) << file << ": failed to pack/unpack file";