Lines Matching full:configuration

55 /// Basename of the configuration file.
59 /// Magic string to disable loading of configuration files.
63 /// Textual description of the default configuration files.
77 /// Loads the configuration file for this session, if any.
84 /// \return The loaded configuration file, or the configuration defaults if the
87 /// \throw engine::error If the parsing of the configuration file fails.
99 LD("Configuration loading disabled; using defaults"); in load_config_file()
111 // Fall through. If we fail to load the user-specific configuration in load_config_file()
114 LW(F("Failed to load user-specific configuration file '%s': %s") % in load_config_file()
131 /// Loads the configuration file for this session, if any.
134 /// configuration unconditionally.
138 /// \return The loaded configuration file data.
140 /// \throw engine::error If the parsing of the configuration file fails.
172 /// Standard definition of the option to specify a configuration file.
174 /// You must use load_config() to load a configuration file while honoring the
178 (std::string("Path to the configuration file; '") + none_config +
183 /// Standard definition of the option to specify a configuration variable.
186 "Overrides a particular configuration variable",
190 /// Loads the configuration file for this session, if any.
199 /// \param required Whether the loading of the configuration file must succeed.
203 /// \return The loaded configuration file data. If required was set to false,
204 /// this might be the default configuration data if the requested file could not
207 /// \throw engine::error If the parsing of the configuration file fails.
218 LW(F("Ignoring failure to load configuration because the requested " in load_config()