Lines Matching full:enter
124 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::
248 An object is under reset from the beginning of the *enter* phase (before
249 either its children or its own enter method is called) to the *exit*
250 phase. During *enter* and *hold* phase only, the function will return that the
314 a reset operation it must be used only in *hold* phase. Using it in *enter* or