Home | History | Annotate | Download | only in src

Lines Matching refs:conf

63 static const char *CONFIG_FILE_PATH = "bt_config.conf";
67 static const char *CONFIG_FILE_PATH = "/data/misc/bluedroid/bt_config.conf";
499 static void btif_config_remove_unpaired(config_t *conf) {
500 assert(conf != NULL);
506 const config_section_node_t *snode = config_section_begin(conf);
507 while (snode != config_section_end(conf)) {
510 if (!config_has_key(conf, section, "LinkKey") &&
511 !config_has_key(conf, section, "LE_KEY_PENC") &&
512 !config_has_key(conf, section, "LE_KEY_PID") &&
513 !config_has_key(conf, section, "LE_KEY_PCSRK") &&
514 !config_has_key(conf, section, "LE_KEY_LENC") &&
515 !config_has_key(conf, section, "LE_KEY_LCSRK")) {
517 config_remove_section(conf, section);