Lines Matching defs:out
98 MtdWriteContext *out = mtd_write_partition(partition);
99 if (out == NULL) die("error writing %s", argv[1]);
103 int wrote = mtd_write_data(out, buf, headerlen);
108 wrote = mtd_write_data(out, buf, len);
113 if (mtd_write_close(out)) die("error closing %s", argv[1]);
117 out = mtd_write_partition(partition);
118 if (out == NULL) die("error re-opening %s", argv[1]);
120 wrote = mtd_write_data(out, header, headerlen);
136 if (mtd_write_data(out, buf, len) != len)
141 if (mtd_write_close(out)) die("error closing %s", argv[1]);