Home | History | Annotate | Download | only in updater

Lines Matching refs:fs_size

414 // format(fs_type, partition_type, location, fs_size, mount_point)
416 // fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
417 // fs_type="f2fs" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
418 // if fs_size == 0, then make fs uses the entire partition.
419 // if fs_size > 0, that is the size to use
420 // if fs_size < 0, then reserve that many bytes at the end of the partition (not for "f2fs")
434 const std::string& fs_size = args[3];
453 if (!android::base::ParseInt(fs_size, &size)) {
455 fs_size.c_str());
481 LOG(ERROR) << name << ": fs_size can't be negative for f2fs: " << fs_size;