Home | History | Annotate | Download | only in utils

Lines Matching refs:config_table

171    config_table: table definition of strings to places to store information
178 0: Number of records in the config_table filled with input_buf
184 const loc_param_s_type* config_table, uint32_t table_length)
188 if (input_buf && config_table) {
219 for(uint32_t i = 0; NULL != config_table && i < table_length; i++)
221 if(!loc_set_config_entry(&config_table[i], &config_value)) {
247 config_table: table definition of strings to places to store information
261 int loc_read_conf_r(FILE *conf_fp, const loc_param_s_type* config_table, uint32_t table_length)
273 for(uint32_t i = 0; NULL != config_table && i < table_length; i++)
275 if(NULL != config_table[i].param_set)
277 *(config_table[i].param_set) = 0;
291 num_params -= loc_fill_conf_item(input_buf, config_table, table_length);
312 config_table: table definition of strings to places to store information
325 const loc_param_s_type* config_table, uint32_t table_length)
329 if (conf_data && length && config_table && table_length) {
348 num_params -= loc_fill_conf_item(input_buf, config_table, table_length);
368 config_table: table definition of strings to places to store information
380 void loc_read_conf(const char* conf_file_name, const loc_param_s_type* config_table,
391 if(table_length && config_table) {
392 loc_read_conf_r(conf_fp, config_table, table_length);