Lines Matching defs:fs_size
180 // format(fs_type, partition_type, location, fs_size)
182 // fs_type="yaffs2" partition_type="MTD" location=partition fs_size=<bytes>
183 // fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes>
184 // if fs_size == 0, then make_ext4fs uses the entire partition.
185 // if fs_size > 0, that is the size to use
186 // if fs_size < 0, then reserve that many bytes at the end of the partition
195 char* fs_size;
196 if (ReadArgs(state, argv, 4, &fs_type, &partition_type, &location, &fs_size) < 0) {
243 int status = make_ext4fs(location, atoll(fs_size));