HomeSort by relevance Sort by last modified time
    Searched refs:progress_fd (Results 1 - 4 of 4) sorted by null

  /external/e2fsprogs/misc/
fsck.c 113 int progress_fd = 0; variable
463 snprintf(tmp, 80, "-C%d", progress_fd);
465 } else if (progress_fd)
466 snprintf(tmp, 80, "-C%d", progress_fd * -1);
1171 progress_fd = string_to_int(arg+j+1);
1172 if (progress_fd < 0)
1173 progress_fd = 0;
1178 progress_fd = string_to_int(argv[i]);
1179 if (progress_fd < 0)
1180 progress_fd = 0
    [all...]
  /external/e2fsprogs/e2fsck/
unix.c 502 if (ctx->progress_fd) {
505 write_all(ctx->progress_fd, buf, strlen(buf));
687 res = sscanf(optarg, "%d", &ctx->progress_fd);
691 if (ctx->progress_fd < 0) {
693 ctx->progress_fd = ctx->progress_fd * -1;
695 if (!ctx->progress_fd)
698 fd = dup(ctx->progress_fd);
702 ctx->progress_fd,
    [all...]
e2fsck.h 315 int progress_fd; member in struct:e2fsck_struct
rehash.c 881 if (ctx->progress && !ctx->progress_fd)

Completed in 87 milliseconds