Home | History | Annotate | Download | only in mtdutils

Lines Matching refs:wrote

458                 fprintf(stderr, "mtd: wrote block after %d retries\n", retry);
460 fprintf(stderr, "mtd: successfully wrote block at %llx\n", pos);
478 size_t wrote = 0;
479 while (wrote < len) {
481 if (ctx->stored > 0 || len - wrote < ctx->partition->erase_size) {
483 size_t copy = len - wrote < avail ? len - wrote : avail;
484 memcpy(ctx->buffer + ctx->stored, data + wrote, copy);
486 wrote += copy;
496 while (ctx->stored == 0 && len - wrote >= ctx->partition->erase_size) {
497 if (write_block(ctx, data + wrote)) return -1;
498 wrote += ctx->partition->erase_size;
502 return wrote;