Lines Matching refs:optarg
196 c.heap = atoi(optarg); in f2fs_parse_options()
204 if (strlen(optarg) > MAX_PATH_LEN) { in f2fs_parse_options()
209 c.devices[c.ndevs++].path = strdup(optarg); in f2fs_parse_options()
212 c.dbg_lv = atoi(optarg); in f2fs_parse_options()
215 c.extension_list[0] = strdup(optarg); in f2fs_parse_options()
218 c.extension_list[1] = strdup(optarg); in f2fs_parse_options()
221 if (!strcmp(optarg, "android")) in f2fs_parse_options()
231 if (strlen(optarg) > 512) { in f2fs_parse_options()
236 c.vol_label = optarg; in f2fs_parse_options()
242 c.overprovision = atof(optarg); in f2fs_parse_options()
245 if (parse_feature(feature_table, optarg)) in f2fs_parse_options()
252 if (parse_root_owner(optarg, &c.root_uid, &c.root_gid)) in f2fs_parse_options()
256 c.segs_per_sec = atoi(optarg); in f2fs_parse_options()
259 c.device_size = atoll(optarg); in f2fs_parse_options()
264 c.secs_per_zone = atoi(optarg); in f2fs_parse_options()
267 c.trim = atoi(optarg); in f2fs_parse_options()
270 c.fixed_time = strtoul(optarg, NULL, 0); in f2fs_parse_options()
273 c.vol_uuid = strdup(optarg); in f2fs_parse_options()
279 c.wanted_sector_size = atoi(optarg); in f2fs_parse_options()
285 token = strtok(optarg, ":"); in f2fs_parse_options()