Home
last modified time | relevance | path

Searched refs:state_main (Results 1 – 7 of 7) sorted by relevance

/dports/games/flightgear-data/fgdata/Models/Volcanoes/Beerenberg/
H A Dbeerenberg.nas116 var state_main = getprop("/environment/volcanoes/beerenberg/main-activity");
119 if (((state_flank > 2) or (state_main > 2)) and (beerenberg_ash_loop_flag == 0))
125 else if ((state_flank < 3) and (state_main < 3) and (beerenberg_ash_loop_flag == 1))
132 if (((state_flank == 2) or (state_main == 2)) and (beerenberg_fountain_loop_flag == 0))
138 else if ((state_flank < 2) and (state_main < 2) and (beerenberg_fountain_loop_flag == 1))
/dports/games/flightgear-data/fgdata/Models/Volcanoes/Katla/
H A Dkatla.nas48 var state_main = getprop("/environment/volcanoes/katla/main-activity");
50 if ( (state_main > 0) and (katla_ash_loop_flag == 0))
56 else if ((state_main < 1) and (katla_ash_loop_flag == 1))
/dports/games/flightgear-data/fgdata/Models/Volcanoes/Eyjafjallajokull/
H A Deyjafjallajokull.nas48 var state_main = getprop("/environment/volcanoes/eyjafjallajokull/main-activity");
50 if ( (state_main > 0) and (eyjafjallajokull_ash_loop_flag == 0))
56 else if ((state_main < 1) and (eyjafjallajokull_ash_loop_flag == 1))
/dports/games/flightgear-data/fgdata/Models/Volcanoes/Surtsey/
H A Dsurtsey.nas48 var state_main = getprop("/environment/volcanoes/surtsey/main-activity");
50 if ( (state_main > 1) and (surtsey_ash_loop_flag == 0))
56 else if ((state_main < 2) and (surtsey_ash_loop_flag == 1))
/dports/sysutils/libdnf/libdnf-0.64.0/libdnf/repo/
H A DRepo-private.hpp173 enum _hy_repo_state state_main{_HY_NEW}; enum in libdnf::Repo::Impl
/dports/sysutils/libdnf/libdnf-0.64.0/libdnf/
H A Ddnf-sack.cpp552 repoImpl->state_main = _HY_WRITTEN; in write_main()
707 repoImpl->state_main = _HY_LOADED_CACHE; in load_yum_repo()
733 repoImpl->state_main = _HY_LOADED_FETCH; in load_yum_repo()
1731 repoImpl->state_main = _HY_LOADED_FETCH; in dnf_sack_load_system_repo()
1781 if (repoImpl->state_main == _HY_LOADED_FETCH && build_cache) {
/dports/sysutils/libdnf/libdnf-0.64.0/tests/hawkey/
H A Dtest_sack.cpp142 fail_unless(repoImpl->state_main == _HY_WRITTEN); in START_TEST()