Home
last modified time | relevance | path

Searched refs:progress_fd (Results 1 – 4 of 4) sorted by relevance

/external/e2fsprogs/misc/
Dfsck.c112 static int progress_fd = 0; variable
463 snprintf(tmp, 80, "-C%d", progress_fd); in execute()
465 } else if (progress_fd) in execute()
466 snprintf(tmp, 80, "-C%d", progress_fd * -1); in execute()
1171 progress_fd = string_to_int(arg+j+1); in PRS()
1172 if (progress_fd < 0) in PRS()
1173 progress_fd = 0; in PRS()
1178 progress_fd = string_to_int(argv[i]); in PRS()
1179 if (progress_fd < 0) in PRS()
1180 progress_fd = 0; in PRS()
/external/e2fsprogs/e2fsck/
Dunix.c578 if (ctx->progress_fd) { in e2fsck_update_progress()
581 write_all(ctx->progress_fd, buf, strlen(buf)); in e2fsck_update_progress()
779 res = sscanf(optarg, "%d", &ctx->progress_fd); in PRS()
783 if (ctx->progress_fd < 0) { in PRS()
785 ctx->progress_fd = ctx->progress_fd * -1; in PRS()
787 if (!ctx->progress_fd) in PRS()
790 fd = dup(ctx->progress_fd); in PRS()
794 ctx->progress_fd, in PRS()
De2fsck.h334 int progress_fd; member
Drehash.c888 if (ctx->progress && !ctx->progress_fd) in e2fsck_rehash_directories()