Lines Matching full:reset
2 * Reset handlers.
36 * qemu_register_resettable: Register an object to be reset
37 * @obj: object to be reset: it must implement the Resettable interface
39 * Register @obj on the list of objects which will be reset when the
40 * simulation is reset. These objects will be reset in the order
46 * It is not permitted to register or unregister reset functions or
47 * resettable objects from within any of the reset phase methods of @obj.
54 * qemu_unregister_resettable: Unregister an object to be reset
57 * Remove @obj from the list of objects which are reset when the
58 * simulation is reset. It must have been previously added to
66 * qemu_register_reset: Register a callback for system reset
71 * entire system is reset. Functions registered with this API and
75 * of the 3-phase reset.
78 * for instance, device model reset is better accomplished using the
81 * It is not permitted to register or unregister reset functions or
89 * qemu_register_reset_nosnapshotload: Register a callback for system reset
94 * not called if the reason that the system is being reset is to
101 * qemu_unregister_reset: Unregister a system reset callback
113 * qemu_devices_reset: Perform a complete system reset
114 * @reason: type of the reset
116 * This function performs the low-level work needed to do a complete reset
120 * MachineClass reset method.
122 * If you want to trigger a system reset from, for instance, a device