Home
last modified time | relevance | path

Searched refs:__pm_notifier_call_chain (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.4/kernel/power/
Duser.c74 error = __pm_notifier_call_chain(PM_HIBERNATION_PREPARE, -1, &nr_calls); in snapshot_open()
76 __pm_notifier_call_chain(PM_POST_HIBERNATION, --nr_calls, NULL); in snapshot_open()
86 error = __pm_notifier_call_chain(PM_RESTORE_PREPARE, -1, &nr_calls); in snapshot_open()
94 __pm_notifier_call_chain(PM_POST_RESTORE, nr_calls, NULL); in snapshot_open()
Dhibernate.c714 error = __pm_notifier_call_chain(PM_HIBERNATION_PREPARE, -1, &nr_calls); in hibernate()
776 __pm_notifier_call_chain(PM_POST_HIBERNATION, nr_calls, NULL); in hibernate()
891 error = __pm_notifier_call_chain(PM_RESTORE_PREPARE, -1, &nr_calls); in software_resume()
904 __pm_notifier_call_chain(PM_POST_RESTORE, nr_calls, NULL); in software_resume()
Dsuspend.c351 error = __pm_notifier_call_chain(PM_SUSPEND_PREPARE, -1, &nr_calls); in suspend_prepare()
366 __pm_notifier_call_chain(PM_POST_SUSPEND, nr_calls, NULL); in suspend_prepare()
Dpower.h213 extern int __pm_notifier_call_chain(unsigned long val, int nr_to_call,
Dmain.c83 int __pm_notifier_call_chain(unsigned long val, int nr_to_call, int *nr_calls) in __pm_notifier_call_chain() function
94 return __pm_notifier_call_chain(val, -1, NULL); in pm_notifier_call_chain()