Home | History | Annotate | Download | only in va

Lines Matching refs:file_stat

272     struct stat file_stat = {0};
283 fstat(fd, &file_stat);
290 fool_ctx->segbuf_enc = realloc(fool_ctx->segbuf_enc, file_stat.st_size);
291 read(fd, fool_ctx->segbuf_enc, file_stat.st_size);
297 codedbuf->size = file_stat.st_size;
309 struct stat file_stat = {0};
314 fstat(fd, &file_stat);
315 fool_ctx->segbuf_jpg = realloc(fool_ctx->segbuf_jpg, file_stat.st_size);
316 read(fd, fool_ctx->segbuf_jpg, file_stat.st_size);
322 codedbuf->size = file_stat.st_size;