Lines Matching defs:out
72 copy_elf (const char *in, const char *out, bool use_mmap, bool reverse_offs)
74 printf ("\ncopy_elf: %s -> %s (%s,%s)\n", in, out,
96 int fdb = open (out, O_RDWR | O_CREAT | O_TRUNC, 0644);
100 out, strerror (errno));
108 out, elf_errmsg (-1));
326 printf ("couldn't cleanup elf '%s': %s\n", out, elf_errmsg (-1));
332 printf ("couldn't close '%s': %s\n", out, strerror (errno));
345 fprintf (stderr, "elfcopy [--mmap] [--reverse-offs] in.elf out.elf\n");
365 const char *out = argv[argn];
366 copy_elf (in, out, use_mmap, reverse_offs);