Home
last modified time | relevance | path

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

/u-boot/tools/
A Dmkeficapsule.c116 struct stat bin_stat; in read_bin_file() local
126 if (stat(bin, &bin_stat) < 0) { in read_bin_file()
131 if (bin_stat.st_size > SIZE_MAX) { in read_bin_file()
136 buf = malloc(bin_stat.st_size); in read_bin_file()
139 (size_t)bin_stat.st_size); in read_bin_file()
144 size = fread(buf, 1, bin_stat.st_size, g); in read_bin_file()
145 if (size < bin_stat.st_size) { in read_bin_file()
152 *bin_size = bin_stat.st_size; in read_bin_file()

Completed in 5 milliseconds