Searched refs:config_dynamic (Results 1 – 1 of 1) sorted by relevance
94 static std::unique_ptr<config_t> config_dynamic; variable430 if (!(config_dynamic = config_new(INTEROP_DYNAMIC_FILE_PATH))) { in interop_config_init()434 if (!config_dynamic && !(config_dynamic = config_new_empty())) { in interop_config_init()442 config_dynamic.reset(); in interop_config_init()448 log::assert_that(config_dynamic.get() != NULL, "assert failed: config_dynamic.get() != NULL"); in interop_config_flush()451 config_save(*config_dynamic, INTEROP_DYNAMIC_FILE_PATH); in interop_config_flush()456 log::assert_that(config_dynamic.get() != NULL, "assert failed: config_dynamic.get() != NULL"); in interop_config_remove()459 bool ret = config_remove_key(config_dynamic.get(), section, key); in interop_config_remove()466 log::assert_that(config_dynamic.get() != NULL, "assert failed: config_dynamic.get() != NULL"); in interop_config_remove_section()469 bool ret = config_remove_section(config_dynamic.get(), section); in interop_config_remove_section()[all …]