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
159 phase of the reset; they are name ``phases.enter()``, ``phases.hold()`` and
160 ``phases.exit()``. They all take the object as parameter. The *enter* method
176 /* call parent class enter phase */
177 if (myclass->parent_phases.enter) {
178 myclass->parent_phases.enter(obj, type);
228 only override the *enter* phase and leave *hold* and *exit* untouched::
243 An object is under reset from the beginning of the *enter* phase (before
244 either its children or its own enter method is called) to the *exit*
245 phase. During *enter* and *hold* phase only, the function will return that the
309 a reset operation it must be used only in *hold* phase. Using it in *enter* or