/openbmc/phosphor-fan-presence/presence/ |
H A D | fallback.hpp | 19 * @class Fallback 20 * @brief Fallback redundancy policy. 22 * The fallback redundancy policy falls back to 24 * sensor indicates not present and a fallback 27 class Fallback : public RedundancyPolicy class 30 Fallback() = delete; 31 Fallback(const Fallback&) = delete; 32 Fallback& operator=(const Fallback&) = delete; 33 Fallback(Fallback&&) = delete; 34 Fallback& operator=(Fallback&&) = delete; [all …]
|
H A D | pfpgen.py | 206 class Fallback(Rpolicy, Renderer): class 207 """Fallback policy handler (policy:type:fallback).""" 210 kw["name"] = "fallback-{}".format(kw["fan"]) 211 super(Fallback, self).__init__(**kw) 214 super(Fallback, self).setup(objs) 217 return self.render(loader, "fallback.hpp.mako", f=self, indent=indent) 262 "fallback": Fallback,
|
/openbmc/phosphor-watchdog/test/ |
H A D | watchdog.cpp | 262 /** @brief Make sure the watchdog is started and enabled with a fallback 263 * Wait through the initial trip and ensure the fallback is observed 264 * Make sure that fallback runs to completion and ensure the watchdog 274 // We need to make a wdog with the right fallback options in TEST_F() 277 Watchdog::Fallback fallback; in TEST_F() local 278 fallback.action = Watchdog::Action::PowerOff; in TEST_F() 279 fallback.interval = static_cast<uint64_t>(fallbackIntervalMs); in TEST_F() 280 fallback.always = false; in TEST_F() 283 Watchdog::ActionTargetMap(), fallback); in TEST_F() 294 // We should now have entered the fallback once the primary expires in TEST_F() [all …]
|
/openbmc/phosphor-watchdog/src/ |
H A D | mainapp.cpp | 51 void printFallback(const Watchdog::Fallback& fallback) in printFallback() argument 53 std::cerr << "Fallback Options:\n"; in printFallback() 54 std::cerr << " Action: " << convertForMessage(fallback.action) << "\n"; in printFallback() 55 std::cerr << " Interval(ms): " << std::dec << fallback.interval << "\n"; in printFallback() 56 std::cerr << " Always re-execute: " << std::boolalpha << fallback.always in printFallback() 103 // Fallback related options in main() 104 const std::string fallbackGroup = "Fallback Options"; in main() 110 "Perform this action when the fallback expires.") in main() 117 "Waits for this interval before performing the fallback " in main() 126 "This option is only valid with a fallback specified") in main() [all …]
|
H A D | watchdog.hpp | 48 /** @brief Type used to specify the parameters of a fallback watchdog 50 struct Fallback struct in phosphor::watchdog::Watchdog 63 * @param[in] fallback - fallback watchdog 71 std::optional<Fallback>&& fallback = std::nullopt, argument 75 actionTargetMap(std::move(actionTargetMap)), fallback(fallback), 91 // enters the fallback state if the fallback is always enabled. 174 /** @brief Fallback timer options */ 175 std::optional<Fallback> fallback; member in phosphor::watchdog::Watchdog 186 /** @brief Attempt to enter the fallback watchdog or disables it */
|
H A D | watchdog.cpp | 45 // Attempt to fallback or disable our timer if needed in enabled() 91 // are inside of the fallback in timeRemaining() 92 value = fallback->interval; in timeRemaining() 114 action = fallback->action; in timeOutHandler() 176 // a possible fallback in tryFallbackOrDisable() 177 if (fallback && (fallback->always || this->enabled())) in tryFallbackOrDisable() 179 auto interval_ms = fallback->interval; in tryFallbackOrDisable()
|
/openbmc/qemu/ |
H A D | .gitpublish | 9 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null 15 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null 21 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null 27 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null 33 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null 39 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null 45 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null 51 cccmd = scripts/get_maintainer.pl --noroles --norolestats --nogit --nogit-fallback 2>/dev/null
|
/openbmc/phosphor-fan-presence/docs/presence/ |
H A D | rpolicy.md | 14 - ["fallback"](#fallback) 26 ### "fallback" 32 "type": "fallback"
|
/openbmc/kcsbridge/src/ |
H A D | meson.build | 4 dependency('stdplus', fallback: ['stdplus', 'stdplus_dep']), 5 dependency('sdbusplus', fallback: ['sdbusplus', 'sdbusplus_dep']), 30 dependency('sdeventplus', fallback: ['sdeventplus', 'sdeventplus_dep']),
|
/openbmc/openbmc/poky/meta/recipes-core/udev/eudev/ |
H A D | 0001-random-util.c-sync-dev_urandom-implementation-to-sys.patch | 24 - If kernel does not support GRND_INSECURE, fallback to GRND_NONBLOCK 25 - If enough entropy is not supplied, fallback to reading /dev/urandom, 125 + break; /* Weird, so fallback to /dev/urandom. */ 128 + break; /* No syscall, so fallback to /dev/urandom. */ 131 + continue; /* No GRND_INSECURE; fallback to GRND_NONBLOCK. */ 133 + break; /* Will block, but no GRND_INSECURE, so fallback to /dev/urandom. */ 135 + break; /* Unexpected, so just give up and fallback to /dev/urandom. */
|
/openbmc/openbmc/poky/meta/classes-recipe/ |
H A D | uboot-extlinux-config.bbclass | 37 # UBOOT_EXTLINUX_LABELS ??= "default fallback" 45 # UBOOT_EXTLINUX_KERNEL_IMAGE:fallback ??= "../zImage-fallback" 46 # UBOOT_EXTLINUX_MENU_DESCRIPTION:fallback ??= "Linux Fallback" 57 # LABEL Linux Fallback 58 # KERNEL ../zImage-fallback
|
/openbmc/phosphor-fan-presence/presence/example/ |
H A D | example.yaml | 20 Supported policy types are fallback or anyof.' 43 'Example fan with fallback redundancy policy. 52 The fallback algorithm falls back to subsequently listed detection methods 64 type: fallback
|
H A D | config.json | 9 "are fallback or anyof. The fan_missing_error_time value is the amount", 43 "Example fan with fallback redundancy policy. Multiple detection methods", 48 "fallback algorithm falls back to subsequently listed detection methods", 67 "type": "fallback"
|
/openbmc/openbmc/poky/meta/recipes-support/libevent/libevent/ |
H A D | 0003-test-mark-util-monotonic_prc_fallback-as-retriable.patch | 18 …nic_res_fallback", test_evutil_monotonic_res, TT_OFF_BY_DEFAULT, &basic_setup, (void*)"fallback" }, 21 - { "monotonic_prc_fallback", test_evutil_monotonic_prc, 0, &basic_setup, (void*)"fallback" }, 22 …onotonic_prc_fallback", test_evutil_monotonic_prc, TT_RETRIABLE, &basic_setup, (void*)"fallback" },
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/ |
H A D | ttf-droid_git.bb | 23 ttf-droid-sans-fallback ttf-droid-sans-japanese ttf-droid-serif" 24 FONT_PACKAGES = "ttf-droid-sans ttf-droid-sans-mono ttf-droid-sans-fallback ttf-droid-sans-japanese… 28 FILES:ttf-droid-sans-fallback = "${datadir}/fonts/truetype/DroidSansFallback.ttf"
|
/openbmc/u-boot/scripts/dtc/ |
H A D | dtc.c | 122 static const char *guess_type_by_name(const char *fname, const char *fallback) in guess_type_by_name() argument 128 return fallback; in guess_type_by_name() 133 return fallback; in guess_type_by_name() 136 static const char *guess_input_format(const char *fname, const char *fallback) in guess_input_format() argument 143 return fallback; in guess_input_format() 149 return fallback; in guess_input_format() 153 return fallback; in guess_input_format() 156 return fallback; in guess_input_format() 163 return guess_type_by_name(fname, fallback); in guess_input_format()
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 172.out | 17 fallback = "288" 46 fallback = "288" 82 fallback = "288" 136 fallback = "288" 191 fallback = "288" 234 fallback = "288" 270 fallback = "288" 324 fallback = "288" 382 fallback = "288" 418 fallback = "288" [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/zeroconf/zeroconf/ |
H A D | zeroconf-default | 13 # fallback only 16 #FALLBACK=yes
|
/openbmc/phosphor-fan-presence/presence/test/ |
H A D | fallbacktest.cpp | 1 #include "../fallback.hpp" 77 Fallback f{fan, sensors}; in TEST() 110 Fallback f{fan, sensors}; in TEST() 156 Fallback f{fan, sensors}; in TEST() 195 Fallback f{fan, sensors}; in TEST() 228 Fallback f{fan, sensors}; in TEST()
|
/openbmc/qemu/block/ |
H A D | snapshot.c | 160 BdrvChild *fallback = bdrv_primary_child(bs); in bdrv_snapshot_fallback_child() local 166 /* We allow fallback only to primary child */ in bdrv_snapshot_fallback_child() 167 if (!fallback) { in bdrv_snapshot_fallback_child() 174 * fallback. in bdrv_snapshot_fallback_child() 179 child != fallback) in bdrv_snapshot_fallback_child() 185 return fallback; in bdrv_snapshot_fallback_child() 241 BdrvChild *fallback; in bdrv_snapshot_goto() local 265 fallback = bdrv_snapshot_fallback_child(bs); in bdrv_snapshot_goto() 268 if (fallback) { in bdrv_snapshot_goto() 272 BlockDriverState *fallback_bs = fallback->bs; in bdrv_snapshot_goto() [all …]
|
/openbmc/qemu/hw/display/ |
H A D | ati_2d.c | 95 bool fallback = false; in ati_2d_blt() local 130 fallback = !pixman_blt((uint32_t *)src_bits, (uint32_t *)dst_bits, in ati_2d_blt() 140 fallback = !pixman_blt((uint32_t *)src_bits, tmp, in ati_2d_blt() 144 if (!fallback) { in ati_2d_blt() 145 fallback = !pixman_blt(tmp, (uint32_t *)dst_bits, in ati_2d_blt() 154 fallback = true; in ati_2d_blt() 156 if (fallback) { in ati_2d_blt() 218 /* fallback when pixman failed or we don't want to call it */ in ati_2d_blt()
|
/openbmc/qemu/scripts/qemu-guest-agent/ |
H A D | fsfreeze-hook | 23 # if log file is not writable, fallback to syslog 25 # try to update log file and fallback to syslog if it fails 28 # Ensure the log file is writable, fallback to syslog if not
|
/openbmc/openbmc/poky/meta/recipes-extended/pam/libpam/pam.d/ |
H A D | other | 2 # /etc/pam.d/other - specify the PAM fallback behaviour 10 #fallback rules are being used (as a hint to suggest you should setup
|
/openbmc/phosphor-ipmi-flash/tools/ |
H A D | meson.build | 5 dependency('pciaccess', fallback: ['pciaccess', 'dep_pciaccess']), 6 dependency('stdplus', fallback: ['stdplus', 'stdplus_dep']),
|
/openbmc/bmcweb/redfish-core/include/generated/enums/ |
H A D | account_service.hpp | 26 Fallback, enumerator 93 {LocalAccountAuth::Fallback, "Fallback"},
|