Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:field

1382 /* STR: Define a string variable for an ASCII string; f = field name */
1453 * generous help from the C pre-processor. The field name is stored as a string
1456 * offset to the field containing the length of the configuration variable.
1461 * this table and select the entry that matches with the field name. The parser
1462 * function (.parser) is then called to parse the actual value of the field.
1929 const struct parse_data *field = &ssid_fields[i];
1930 if (os_strcmp(var, field->name) != 0)
1933 if (field->parser(field, ssid, line, value)) {
1944 wpa_printf(MSG_ERROR, "Line %d: unknown network field "
1968 const struct parse_data *field;
1982 field = &ssid_fields[i];
1983 if (field->key_data && !get_keys)
1985 value = field->writer(field, ssid);
1993 key = os_strdup(field->name);
2037 const struct parse_data *field = &ssid_fields[i];
2038 if (os_strcmp(var, field->name) == 0)
2039 return field->writer(field, ssid);
2054 field
2070 const struct parse_data *field = &ssid_fields[i];
2071 if (os_strcmp(var, field->name) == 0) {
2072 char *res = field->writer(field, ssid);
2073 if (field->key_data) {
2076 "key_data field to be "
2509 const struct global_parse_data *field = &global_fields[i];
2510 size_t flen = os_strlen(field->name);
2511 if (os_strncmp(pos, field->name, flen) != 0 ||
2515 if (field->parser(field, config, line, pos + flen + 1)) {
2520 config->changed_parameters |= field->changed_flag;
2526 wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",