Lines Matching refs:optarg
194 c.heap = atoi(optarg); in f2fs_parse_options()
202 if (strlen(optarg) > MAX_PATH_LEN) { in f2fs_parse_options()
207 c.devices[c.ndevs++].path = strdup(optarg); in f2fs_parse_options()
210 c.dbg_lv = atoi(optarg); in f2fs_parse_options()
213 c.extension_list[0] = strdup(optarg); in f2fs_parse_options()
216 c.extension_list[1] = strdup(optarg); in f2fs_parse_options()
219 if (!strcmp(optarg, "android")) in f2fs_parse_options()
229 if (strlen(optarg) > 512) { in f2fs_parse_options()
234 c.vol_label = optarg; in f2fs_parse_options()
240 c.overprovision = atof(optarg); in f2fs_parse_options()
243 if (parse_feature(feature_table, optarg)) in f2fs_parse_options()
250 if (parse_root_owner(optarg, &c.root_uid, &c.root_gid)) in f2fs_parse_options()
254 c.segs_per_sec = atoi(optarg); in f2fs_parse_options()
257 c.device_size = atoll(optarg); in f2fs_parse_options()
262 c.secs_per_zone = atoi(optarg); in f2fs_parse_options()
265 c.trim = atoi(optarg); in f2fs_parse_options()
268 c.fixed_time = strtoul(optarg, NULL, 0); in f2fs_parse_options()
271 c.vol_uuid = strdup(optarg); in f2fs_parse_options()
277 c.wanted_sector_size = atoi(optarg); in f2fs_parse_options()
283 token = strtok(optarg, ":"); in f2fs_parse_options()