| /openbmc/phosphor-webui/app/common/styles/elements/ |
| H A D | toggle-switch.scss | 11 .toggle-container { 15 .toggle-switch { 21 .toggle-switch + label { 32 .toggle label { 37 input.toggle-switch__round-flat:focus + label { 42 input.toggle-switch__round-flat + label { 51 input.toggle-switch__round-flat + label:before, 52 input.toggle-switch__round-flat + label:after { 57 input.toggle-switch__round-flat + label:before { 66 input.toggle-switch__round-flat + label:after { [all …]
|
| H A D | index.scss | 1 @import "toggle-switch"; 2 @import "toggle-filter";
|
| H A D | toggle-filter.scss | 1 // toggle buttons for filtering 2 .toggle-filter {
|
| /openbmc/openbmc/meta-facebook/meta-minerva/recipes-phosphor/gpio/ |
| H A D | phosphor-gpio-monitor_%.bbappend | 13 cr-toggle-boot-enabled.service \ 14 cr-toggle-boot-disabled.service \ 22 file://cr-toggle-boot-logger \ 47 install -m 0755 ${UNPACKDIR}/cr-toggle-boot-logger ${D}${libexecdir}/${PN}/
|
| /openbmc/u-boot/cmd/ |
| H A D | legacy_led.c | 22 void (*toggle)(void);/* Optional function for toggling LED */ member 123 if (led_commands[i].toggle) in do_legacy_led() 124 led_commands[i].toggle(); in do_legacy_led()
|
| /openbmc/openbmc-test-automation/gui/gui_test/security_and_access_menu/ |
| H A D | test_policies_sub_menu.robot | 19 ${xpath_bmc_ssh_toggle} //*[@data-test-id='policies-toggle-bmcShell'] 21 ${xpath_network_ipmi_toggle} //*[@data-test-id='polices-toggle-networkIpmi'] 24 ${xpath_virtual_tpm_toggle} //*[@data-test-id='policies-toggle-vtpm'] 25 ${xpath_rtad_toggle} //*[@data-test-id='policies-toggle-rtad'] 26 ${xpath_usb_firmware_update_policy_toggle} //*[@data-test-id='policies-toggle-usbFirmwareUpdateP… 27 ${xpath_secure_version_lockin_toggle} //*[@data-test-id='policies-toggle-svle'] 28 ${xpath_host_usb_enablement_toggle} //*[@data-test-id='policies-toggle-hostUsb'] 69 [Documentation] Login to GUI Policies page,enable SSH toggle and 180 [Documentation] Login to GUI Policies page,set SSH and IPMI toggle and 195 [Documentation] Login to GUI Policies page,set SSH and IPMI toggle and [all …]
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
| H A D | bootstrap3-transition.css | 208 a.toggle-errors:hover, 209 a.toggle-warnings:hover, 214 a.toggle-errors:focus, 215 a.toggle-warnings:focus {
|
| /openbmc/webui-vue/src/views/ChangePassword/ |
| H A D | ChangePassword.vue | 21 <input-password-toggle> 38 </input-password-toggle> 44 <input-password-toggle> 65 </input-password-toggle>
|
| /openbmc/webui-vue/src/views/ProfileSettings/ |
| H A D | ProfileSettings.vue | 41 <input-password-toggle> 50 </input-password-toggle> 65 <input-password-toggle> 92 </input-password-toggle> 99 <input-password-toggle> 117 </input-password-toggle>
|
| /openbmc/webui-vue/src/components/Global/ |
| H A D | InputPasswordToggle.vue | 2 <div class="input-password-toggle-container"> 55 .input-password-toggle-container {
|
| /openbmc/openbmc/meta-facebook/meta-minerva/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
| H A D | cr-toggle-boot-disabled.service | 6 ExecStart=/usr/libexec/phosphor-gpio-monitor/cr-toggle-boot-logger LockOutEnabled
|
| H A D | cr-toggle-boot-enabled.service | 6 ExecStart=/usr/libexec/phosphor-gpio-monitor/cr-toggle-boot-logger LockOutDisabled
|
| /openbmc/webui-vue/src/assets/styles/bmc/custom/ |
| H A D | _buttons.scss | 70 // Datepicker, clear search and Password toggle buttons 80 .btn-datepicker .dropdown-toggle,
|
| /openbmc/openbmc/meta-fii/meta-mori/recipes-mori/mori-sys-utility/mori-cmd/ |
| H A D | mori.sh | 195 toggle) 230 toggle)
|
| /openbmc/openbmc/meta-fii/meta-kudo/recipes-kudo/kudo-sys-utility/kudo-cmd/ |
| H A D | kudo.sh | 225 toggle) 260 toggle)
|
| /openbmc/u-boot/drivers/usb/host/ |
| H A D | ehci-hcd.c | 311 uint32_t c, toggle; in ehci_submit_async() local 394 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); in ehci_submit_async() 453 toggle = 1; in ehci_submit_async() 496 token = QT_TOKEN_DT(toggle) | in ehci_submit_async() 518 toggle ^= 1; in ehci_submit_async() 626 toggle = QT_TOKEN_GET_DT(token); in ehci_submit_async() 628 usb_pipeout(pipe), toggle); in ehci_submit_async() 1238 uint32_t i, toggle; in _ehci_create_int_queue() local 1296 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe)); in _ehci_create_int_queue() 1330 QT_TOKEN_DT(toggle) | in _ehci_create_int_queue() [all …]
|
| /openbmc/u-boot/include/ |
| H A D | usb.h | 114 unsigned int toggle[2]; member 371 #define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> ep) & 1) 372 #define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << ep)) 373 #define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = \ 374 ((dev)->toggle[out] & \
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/Policies/ |
| H A D | Policies.vue | 17 data-test-id="policies-toggle-bmcShell" 42 data-test-id="polices-toggle-networkIpmi" 67 data-test-id="policies-toggle-vtpm" 92 data-test-id="policies-toggle-rtad"
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | bootstrap-3.4.1.js | 226 Button.prototype.toggle = function () { method in Button 260 if (option == 'toggle') data.toggle() 577 if (this.options.toggle) this.toggle() 585 toggle: true property in Collapse.DEFAULTS 682 Collapse.prototype.toggle = function () { method in Collapse 723 if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false 777 var toggle = '[data-toggle="dropdown"]' variable 779 $(element).on('click.bs.dropdown', this.toggle) 800 $(toggle).each(function () { 818 Dropdown.prototype.toggle = function (e) { method in Dropdown [all …]
|
| /openbmc/webui-vue/src/assets/styles/bmc/helpers/ |
| H A D | _motion.scss | 1 $duration--fast-01: 70ms; //Micro-interactions such as button and toggle
|
| /openbmc/u-boot/doc/device-tree-bindings/i2c/ |
| H A D | i2c-gpio.txt | 17 between gpio-toggle operations. Speed [Hz] = 1000000 / 4 * udelay[us],
|
| /openbmc/phosphor-webui/app/common/styles/base/ |
| H A D | variables.scss | 1 $duration--fast-01: 70ms; //Micro-interactions such as button and toggle
|
| /openbmc/qemu/scripts/ |
| H A D | get_maintainer.pl | 1520 my $toggle = 0; 1521 $toggle = 1 if ($sel eq '*'); 1523 $selected{$i} = $toggle; 1555 my $toggle = 0; 1556 $toggle = 1 if ($str eq '*'); 1558 $authored{$i} = $toggle; 1565 my $toggle = 0; 1566 $toggle = 1 if ($str eq '*'); 1568 $signed{$i} = $toggle;
|
| /openbmc/webui-vue/tests/unit/Global/__snapshots__/ |
| H A D | InputPasswordToggle.spec.js.snap | 5 class="input-password-toggle-container"
|
| /openbmc/qemu/target/arm/ |
| H A D | trace-events | 9 arm_gt_imask_toggle(int timer) "gt_ctl_write: timer %d IMASK toggle"
|