Home
last modified time | relevance | path

Searched refs:file_stat (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/libva/va/
Dva_fool.c272 struct stat file_stat = {0}; in va_FoolFillCodedBufEnc() local
283 fstat(fd, &file_stat); in va_FoolFillCodedBufEnc()
290 fool_ctx->segbuf_enc = realloc(fool_ctx->segbuf_enc, file_stat.st_size); in va_FoolFillCodedBufEnc()
291 read(fd, fool_ctx->segbuf_enc, file_stat.st_size); in va_FoolFillCodedBufEnc()
297 codedbuf->size = file_stat.st_size; in va_FoolFillCodedBufEnc()
309 struct stat file_stat = {0}; in va_FoolFillCodedBufJPG() local
314 fstat(fd, &file_stat); in va_FoolFillCodedBufJPG()
315 fool_ctx->segbuf_jpg = realloc(fool_ctx->segbuf_jpg, file_stat.st_size); in va_FoolFillCodedBufJPG()
316 read(fd, fool_ctx->segbuf_jpg, file_stat.st_size); in va_FoolFillCodedBufJPG()
322 codedbuf->size = file_stat.st_size; in va_FoolFillCodedBufJPG()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
Dgtest-all.cc8045 posix::StatStruct file_stat; in FileOrDirectoryExists()
8046 return posix::Stat(pathname_.c_str(), &file_stat) == 0; in FileOrDirectoryExists()
8072 posix::StatStruct file_stat; in DirectoryExists() local
8073 result = posix::Stat(path.c_str(), &file_stat) == 0 && in DirectoryExists()
8074 posix::IsDir(file_stat); in DirectoryExists()