Home | History | Annotate | Download | only in dhcpcd

Lines Matching defs:line

762 parse_config_line(struct if_options *ifo, const char *opt, char *line)
771 if (cf_options[i].has_arg == required_argument && !line) {
778 return parse_option(ifo, cf_options[i].val, line);
791 char *line, *option, *p, *platform;
832 while ((line = get_line(f))) {
833 option = strsep(&line, " \t");
835 if (line && *line) {
836 p = line + strlen(line) - 1;
837 while (p != line &&
844 if (ifname && line && strcmp(line, ifname) == 0)
852 if (ssid && line && strcmp(line, ssid) == 0)
860 if (profile && line && strcmp(line, profile) == 0) {
869 parse_config_line(ifo, option, line);