Lines Matching full:freeze
66 * followed by one of the suspend callbacks: @suspend(), @freeze(), or
91 * fails before the driver's suspend callback: @suspend(), @freeze() or
135 * @freeze: Hibernation-specific, executed before creating a hibernation image.
139 * @freeze() to save the device settings in memory to be used by @restore()
141 * Subsystem-level @freeze() is executed for all devices after invoking
144 * @freeze_late: Continue operations started by @freeze(). Analogous to
151 * Undo the changes made by the preceding @freeze(), so the device can be
152 * operated in the same way as immediately before the call to @freeze().
155 * directly after @freeze() in case of a transition error.
193 * @freeze_noirq: Complete the actions started by @freeze(). Carry out any
197 * The power state of the device should not be changed by either @freeze(),
283 int (*freeze)(struct device *dev); member
308 .freeze = suspend_fn, \
393 * FREEZE System is going to hibernate, call ->prepare() and ->freeze()
403 * hibernation image, call ->prepare() and ->freeze() for all
685 * FREEZE Quiesce operations so that a consistent image can be saved;
689 * PRETHAW Quiesce as if for FREEZE; additionally, prepare for restoring
690 * the system from a snapshot taken after an earlier FREEZE.