Lines Matching defs:fd_in
104 int fd_in; // Input file descripor
707 int fd_in = open(filename, O_RDONLY);
708 if (fd_in < 0) {
712 off_t length = lseek(fd_in, 0, SEEK_END);
717 void *zipdata_in = mmap(NULL, length, PROT_READ, MAP_PRIVATE, fd_in, 0);
736 return new InputZipFile(processor, fd_in, length, offset,
743 : processor(processor), fd_in(fd),
755 close(fd_in);