Home
last modified time | relevance | path

Searched full:enter (Results 1 – 25 of 535) sorted by relevance

12345678910>>...22

/openbmc/u-boot/arch/arm/include/asm/arch-rockchip/
H A Dboot_mode.h8 /* enter loader rockusb mode */
10 /* enter recovery */
12 /* enter fastboot mode */
14 /* enter charging mode */
16 /* enter usb mass storage mode */
18 /* enter bootrom download mode */
H A Dbootrom.h22 * to instruct its next actions (e.g. continue boot sequence, enter
37 BROM_BOOT_ENTER_DNL, /* have BROM enter download-mode */
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/dmalloc/dmalloc/
H A D150-use_DESTDIR.patch37 @CXX_OFF@ @echo "Enter 'make installthcxx' to install the threaded C++ library"
38 @SL_OFF@ @echo "Enter 'make installthsl' to install the threaded shared-library"
51 @SL_OFF@ @echo "Enter 'make installthcxxsl' to install the threaded C++ shared-library"
64 @TH_OFF@ @echo "Enter 'make installthcxx' to install the threaded C++ library"
65 @SL_OFF@ @echo "Enter 'make installcxxsl' to install the C++ shared-library"
72 @CXX_OFF@ @echo "Enter 'make installcxxsl' to install the C++ shared-library"
73 @TH_OFF@ @echo "Enter 'make installthsl' to install thread shared-library"
82 @SL_OFF@ @echo "Enter 'make installsl' to install $(LIB_SL) in $(shlibdir)"
83 @CXX_OFF@ @echo "Enter 'make installcxx' to install the C++ library"
84 @TH_OFF@ @echo "Enter 'make installth' to install thread library"
[all …]
H A D02-Makefile.in.patch89 @CXX_OFF@ @echo "Enter 'make installthcxx' to install the threaded C++ library"
90 @SL_OFF@ @echo "Enter 'make installthsl' to install the threaded shared-library"
101 @SL_OFF@ @echo "Enter 'make installthcxxsl' to install the threaded C++ shared-library"
113 @TH_OFF@ @echo "Enter 'make installthcxx' to install the threaded C++ library"
114 @SL_OFF@ @echo "Enter 'make installcxxsl' to install the C++ shared-library"
120 @CXX_OFF@ @echo "Enter 'make installcxxsl' to install the C++ shared-library"
121 @TH_OFF@ @echo "Enter 'make installthsl' to install thread shared-library"
128 @SL_OFF@ @echo "Enter 'make installsl' to install $(LIB_SL) in $(shlibdir)"
129 @CXX_OFF@ @echo "Enter 'make installcxx' to install the C++ library"
183 @SL_OFF@ @echo "Enter 'make threadscxxsl' to build the threaded C++ shared-library"
[all …]
/openbmc/qemu/hw/core/
H A Dresettable.c29 * True if we are currently in reset enter phase.
108 /* Only take action if we really enter reset for the 1st time. */ in resettable_phase_enter()
131 /* execute enter phase for the object if needed */ in resettable_phase_enter()
134 !!rc->phases.enter); in resettable_phase_enter()
135 if (rc->phases.enter) { in resettable_phase_enter()
136 rc->phases.enter(obj, type); in resettable_phase_enter()
213 * Ensure we do not change parent when in enter or exit phase. in resettable_change_parent()
250 ResettableEnterPhase enter, in resettable_class_set_parent_phases() argument
256 if (enter) { in resettable_class_set_parent_phases()
257 rc->phases.enter = enter; in resettable_class_set_parent_phases()
/openbmc/qemu/include/hw/
H A Dresettable.h63 * for the phases.enter, phases.hold and phases.exit methods, which
67 * for any reset event, in the order 'enter', 'hold', 'exit'.
68 * An object will always move quickly from 'enter' to 'hold'
74 * 'enter' method has been called.
79 * @phases.enter: This phase is called when the object enters reset. It
86 * in the system which is being reset has had its @phases.enter method called.
112 ResettableEnterPhase enter; member
211 * a hold phase method. Calling this during enter or exit phase is an error.
228 * by the given new methods (@enter, @hold and @exit).
233 ResettableEnterPhase enter,
/openbmc/u-boot/board/freescale/mx6memcal/
H A DKconfig136 Enter the on-die termination value as an index defined for
154 Enter drive strength as an index defined for IOMUX settings
166 Enter the RTT_NOM selector
175 Enter the RTT_WR selector for MR2
185 Enter a latency in number of cycles. This will be added to
195 Enter a latency in number of cycles. This will be added to
/openbmc/u-boot/configs/
H A Dam335x_shc_defconfig30 CONFIG_AUTOBOOT_PROMPT="Enter 'shc' to enter prompt (times out) %d \nEnter 'noautoboot' to enter pr…
H A Dam335x_shc_netboot_defconfig32 CONFIG_AUTOBOOT_PROMPT="Enter 'shc' to enter prompt (times out) %d \nEnter 'noautoboot' to enter pr…
H A Dam335x_shc_ict_defconfig31 CONFIG_AUTOBOOT_PROMPT="Enter 'shc' to enter prompt (times out) %d \nEnter 'noautoboot' to enter pr…
H A Dam335x_shc_sdboot_defconfig31 CONFIG_AUTOBOOT_PROMPT="Enter 'shc' to enter prompt (times out) %d \nEnter 'noautoboot' to enter pr…
/openbmc/docs/designs/
H A Dsol-sysrq.md51 Then in ipmitool SOL session, user could enter `\n~B` keys to trigger the break,
52 and then enter a keycode as the SysRq command.
56 There are no changes required in WebUI, like netipmid, the user could enter the
57 key code sequence `\n~B` to trigger the break, and then user could enter a
91 modified to send `MSG_OOB` to obmc-console when the user enter the key code
111 with SSH, we need enter the key code sequence with more than one tilde. Like
/openbmc/qemu/docs/devel/
H A Dreset.rst124 1. The **enter** phase is executed when the object enters reset. It resets only
130 group which is being reset has had its *enter* phase executed. At this point
137 count is used to ensure phases are executed only when required. *enter* and
147 during either 'enter' or 'hold' phases. IOMMUs are expected to reset during
164 phase of the reset; they are name ``phases.enter()``, ``phases.hold()`` and
165 ``phases.exit()``. They all take the object as parameter. The *enter* method
181 /* call parent class enter phase */
182 if (myclass->parent_phases.enter) {
183 myclass->parent_phases.enter(obj, type);
233 only override the *enter* phase and leave *hold* and *exit* untouched::
[all …]
/openbmc/openbmc/meta-facebook/meta-bletchley/recipes-phosphor/state/phosphor-state-manager/
H A Dchassis-powercycle4 echo "Enter chassis-cycle"
7 echo "Enter sled$1 cycle"
/openbmc/webui-vue/src/components/Global/
H A DTableToolbar.vue121 .slide-enter-active {
127 .slide-enter, // Remove this vue2 based only class when switching to vue3
128 .slide-enter-from, // This is vue3 based only class modified from 'slide-enter'
H A DLoadingBar.vue86 &.fade-enter, // Remove this vue2 based only class when switching to vue3
87 &.fade-enter-from, // This is vue3 based only class modified from 'fade-enter'
/openbmc/phosphor-psu-code-mgmt/tools/
H A Dgenerate-psu-tar131 echo "Please enter the correct parameters."
139 echo "Please enter a valid PSU FW image file."
145 echo "Please enter a valid PSU FW image version."
152 echo "Please enter a valid PSU FW image model."
158 echo "Please enter a valid PSU FW image manufacturer."
/openbmc/u-boot/arch/arm/mach-omap2/
H A Dlowlevel_init.S60 smc 0 @ SMC #0 to enter monitor mode
73 smc 0 @ SMC #0 to enter monitor mode
85 smc 0 @ SMC #0 to enter monitor mode
/openbmc/openbmc/meta-arm/meta-arm-systemready/lib/oeqa/runtime/cases/
H A Darm_systemready_debian_unattended.py38 r'.*Press enter to continue',
43 r'.*Press enter to continue',
55 r'.*Press enter to continue',
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libauthen/libauthen-radius-perl/
H A Dtest.pl-adjust-for-ptest.patch46 -print "Enter hostname[:port] of your Radius server: "; chomp ($host = <STDIN>);
47 -print "Enter shared-secret of your Radius server: "; chomp ($secret = <STDIN>);
48 -print "Enter a username to be validated: "; chomp ($user = <STDIN>);
49 -print "Enter this user's password: "; chomp ($pwd = <STDIN>);
/openbmc/u-boot/board/boundary/nitrogen6x/
H A DREADME.mx6qsabrelite46 3. Power-up the SabreLite, press 'space' to enter command mode in the U-Boot
48 enter the following commands:
79 1. Power-up the SabreLite, press 'space' to enter command mode in the U-Boot
80 and enter the following commands:
/openbmc/docs/development/
H A Dgerrit-setup.md41 - Enter your public SSH key created before in Settings -> SSH Keys -> New SSH
49 - Enter e-mail in Settings -> Contact Information -> Register New E-Mail
54 - Enter your full name in Settings -> Profile -> Full name
83 Inside the repo you just cloned, enter the following commands:
/openbmc/qemu/hw/9pfs/
H A Dcoth.h28 * 3. Enter the coroutine in the worker thread.
30 * can enter coroutine while step1 is still running
49 * yield in qemu thread and re-enter back \
57 /* re-enter back to qemu thread */ \
/openbmc/openpower-occ-control/
H A Dpowermode.hpp133 * @param[in] enterUtil - IPS Enter Utilization (%)
134 * @param[in] enterTime - IPS Enter Time (seconds)
171 * @param[out] enterUtil - IPS Enter Utilization (%)
172 * @param[out] enterTime - IPS Enter Time (seconds)
437 * @param[out] enterUtil - IPS Enter Utilization (%)
438 * @param[out] enterTime - IPS Enter Time (seconds)
450 * @param[in] enterUtil - IPS Enter Utilization (%)
451 * @param[in] enterTime - IPS Enter Time (seconds)
478 * @param[out] enterUtil - IPS Enter Utilization (%)
479 * @param[out] enterTime - IPS Enter Time (seconds)
/openbmc/u-boot/drivers/fpga/
H A Dsocfpga_gen5.c83 /* (1) wait until FPGA enter reset phase */ in fpgamgr_program_init()
98 /* (2) wait until FPGA enter configuration phase */ in fpgamgr_program_init()
158 /* Additional clocks for the CB to enter initialization phase */ in fpgamgr_program_poll_initphase()
162 /* (4) wait until FPGA enter init phase or user mode */ in fpgamgr_program_poll_initphase()
186 /* (5) wait until FPGA enter user mode */ in fpgamgr_program_poll_usermode()

12345678910>>...22