Home
last modified time | relevance | path

Searched refs:user_settings_path (Results 1 – 9 of 9) sorted by relevance

/dports/www/searx/searx-1.0.0/searx/
H A Dsettings_loader.py114 user_settings_path = get_user_settings_path()
115 if user_settings_path is None or not load_user_setttings:
121 user_settings = load_yaml(user_settings_path)
128 .format(default_settings_path, user_settings_path))
132 'load the user settings from {}'.format(user_settings_path))
/dports/games/tuxtype/tuxtype-1.8.3/src/
H A Dsetup.c397 snprintf( fn, FNLEN-1, (const char*)"%s/settings.txt", settings.user_settings_path ); in SaveSettings()
561 strncpy(settings.user_settings_path, fn, FNLEN - 1); in SetupPaths()
574 strncpy(settings.user_settings_path, fn, FNLEN - 1); in SetupPaths()
583 strncpy(settings.user_settings_path, "userdata", FNLEN - 1); in SetupPaths()
589 strncpy(settings.user_settings_path, "/tmp", FNLEN - 1); in SetupPaths()
600 fprintf(stderr, "user_settings_path: '%s'\n\n", settings.user_settings_path); in SetupPaths()
H A Dglobals.h92 char user_settings_path[FNLEN]; // per-user settings (under /home) member
H A Deditor.c90 sprintf(wordsDir, "%s/words", settings.user_settings_path); in ChooseListToEdit()
524 sprintf(wordsDir, "%s/words", settings.user_settings_path); in EditWordList()
989 sprintf(wordsDir, "%s/words", settings.user_settings_path); in CreateNewWordList()
1324 sprintf(wordsDir, "%s/words", settings.user_settings_path); in RemoveList()
H A Dtitlescreen.c1357 sprintf(wordPath,"%s/words", settings.user_settings_path); in chooseWordlist()
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed.shared/application/
H A Dapplication.cpp315 const bf::path user_settings_path(user_path); in save_settings() local
316 bf::create_directories(user_settings_path); in save_settings()
318 … const string user_settings_file_path = safe_canonical(user_settings_path / filename).string(); in save_settings()
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/common/settings/
H A Dsettings_manager.cpp699 static wxString user_settings_path; in GetUserSettingsPath() local
701 if( user_settings_path.empty() ) in GetUserSettingsPath()
702 user_settings_path = calculateUserSettingsPath(); in GetUserSettingsPath()
704 return user_settings_path; in GetUserSettingsPath()
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/host/lib/usrp/
H A Dmulti_usrp.cpp942 const auto user_settings_path = rx_rf_fe_root(chan) / "user_settings" / "iface"; in get_user_settings_iface() local
943 if (_tree->exists(user_settings_path)) { in get_user_settings_iface()
944 return _tree->access<wb_iface::sptr>(user_settings_path).get(); in get_user_settings_iface()
/dports/games/tuxtype/tuxtype-1.8.3/doc/
H A DChangeLog17 - Word lists can now be loaded from user_settings_path/words (editor and games)