Home | History | Annotate | Download | only in libsparse

Lines Matching refs:outc

282 	struct output_file_callback *outc = to_output_file_callback(out);
288 ret = outc->write(outc->priv, NULL, to_write);
305 struct output_file_callback *outc = to_output_file_callback(out);
307 return outc->write(outc->priv, data, len);
312 struct output_file_callback *outc = to_output_file_callback(out);
314 free(outc);
642 struct output_file_callback *outc;
644 outc = calloc(1, sizeof(struct output_file_callback));
645 if (!outc) {
646 error_errno("malloc struct outc");
650 outc->out.ops = &callback_file_ops;
651 outc->priv = priv;
652 outc->write = write;
654 ret = output_file_init(&outc->out, block_size, len, sparse, chunks, crc);
656 free(outc);
660 return &outc->out;