Home | History | Annotate | Download | only in utils

Lines Matching defs:input_buf

170    input_buf : buffer contanis config item
178 0: Number of records in the config_table filled with input_buf
183 int loc_fill_conf_item(char* input_buf,
188 if (input_buf && config_table) {
194 config_value.param_name = strtok_r(input_buf, "=", &lasts);
281 char input_buf[LOC_MAX_PARAM_LINE]; /* declare a char array */
286 if(!fgets(input_buf, LOC_MAX_PARAM_LINE, conf_fp)) {
291 num_params -= loc_fill_conf_item(input_buf, config_table, table_length);
342 char* input_buf = strtok_r(conf_copy, "\n", &saveptr);
346 while(num_params && input_buf) {
348 num_params -= loc_fill_conf_item(input_buf, config_table, table_length);
349 input_buf = strtok_r(NULL, "\n", &saveptr);