Lines Matching defs:st
298 struct BLD_PLAT_STAT st;
310 if (fstat(fileno(fp), &st) == -1)
313 st_size = st.st_size;
316 if ((st.st_mode & S_IFBLK) != 0)
401 struct BLD_PLAT_STAT st;
412 if (fstat(fileno(fp), &st) == -1)
417 image->buffer = xmalloc(st.st_size, "failed to allocate image buffer");
418 if (fread(image->buffer, 1, st.st_size, fp) != st.st_size)
420 image->toc_e.size = st.st_size;