Lines Matching full:function
26 * @brief System off function
28 * This function is passed as argument and called by @ref arch_pm_s2ram_suspend
31 * This function never returns if the system is powered off. If the operation
44 * This function is used on suspend-to-RAM (S2RAM) to save the CPU context in
45 * (retained) RAM before powering the system off using the provided function.
46 * This function is usually called from the PM subsystem / hooks.
52 * @param system_off Function to power off the system.
63 * Function is called when system state is stored to RAM, just before going to system
69 * - the function cannot use stack (asm function or function with 'naked' attribute)
71 * - returning from the function should be performed with the `bx lr` instruction
79 * Function is used to determine if resuming after suspend-to-RAM shall be performed
85 * - the function cannot use stack (most likely asm function)
87 * - the function's return value is passed by R0 register
88 * - returning from the function should be performed with the `bx lr` instruction