Lines Matching full:freeze
65 * followed by one of the suspend callbacks: @suspend(), @freeze(), or
90 * fails before the driver's suspend callback: @suspend(), @freeze() or
134 * @freeze: Hibernation-specific, executed before creating a hibernation image.
138 * @freeze() to save the device settings in memory to be used by @restore()
140 * Subsystem-level @freeze() is executed for all devices after invoking
143 * @freeze_late: Continue operations started by @freeze(). Analogous to
150 * Undo the changes made by the preceding @freeze(), so the device can be
151 * operated in the same way as immediately before the call to @freeze().
154 * directly after @freeze() in case of a transition error.
192 * @freeze_noirq: Complete the actions started by @freeze(). Carry out any
196 * The power state of the device should not be changed by either @freeze(),
282 int (*freeze)(struct device *dev); member
307 .freeze = suspend_fn, \
392 * FREEZE System is going to hibernate, call ->prepare() and ->freeze()
402 * hibernation image, call ->prepare() and ->freeze() for all
687 * FREEZE Quiesce operations so that a consistent image can be saved;
691 * PRETHAW Quiesce as if for FREEZE; additionally, prepare for restoring
692 * the system from a snapshot taken after an earlier FREEZE.