HomeSort by relevance Sort by last modified time
    Searched refs:newelf_fd (Results 1 - 3 of 3) sorted by null

  /build/tools/soslim/
main.c 40 int elf_fd = -1, newelf_fd = -1; local
164 newelf_fd = open (outfile, O_RDWR | O_CREAT | O_TRUNC,
166 FAILIF(newelf_fd < 0, "Cannot create file %s: %s (%d)!\n",
169 newelf = elf_begin(newelf_fd, ELF_C_WRITE_MMAP, NULL);
216 FAILIF(newelf_fd >= 0 && close(newelf_fd) < 0,
  /build/tools/apriori/
source.h 64 int newelf_fd; /* fd of output file, -1 if output == NULL */ member in struct:source_t
apriori.c 328 source->newelf_fd = open(source->output,
331 FAILIF(source->newelf_fd < 0, "open(%s): %s (%d)\n",
335 elf = elf_begin(source->newelf_fd, ELF_C_WRITE, NULL);
608 source->newelf_fd = -1;
764 FAILIF((source->newelf_fd >= 0) && (close(source->newelf_fd) < 0),
    [all...]

Completed in 3483 milliseconds