Lines Matching refs:conf
65 static const char *CONFIG_FILE_PATH = "bt_config.conf";
69 static const char *CONFIG_FILE_PATH = "/data/misc/bluedroid/bt_config.conf";
503 static void btif_config_remove_unpaired(config_t *conf) {
504 assert(conf != NULL);
510 const config_section_node_t *snode = config_section_begin(conf);
511 while (snode != config_section_end(conf)) {
514 if (!config_has_key(conf, section, "LinkKey") &&
515 !config_has_key(conf, section, "LE_KEY_PENC") &&
516 !config_has_key(conf, section, "LE_KEY_PID") &&
517 !config_has_key(conf, section, "LE_KEY_PCSRK") &&
518 !config_has_key(conf, section, "LE_KEY_LENC") &&
519 !config_has_key(conf, section, "LE_KEY_LCSRK")) {
521 config_remove_section(conf, section);