Home
last modified time | relevance | path

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

/Linux-v4.19/kernel/power/
Duser.c77 error = __pm_notifier_call_chain(PM_HIBERNATION_PREPARE, -1, &nr_calls); in snapshot_open()
79 __pm_notifier_call_chain(PM_POST_HIBERNATION, --nr_calls, NULL); in snapshot_open()
89 error = __pm_notifier_call_chain(PM_RESTORE_PREPARE, -1, &nr_calls); in snapshot_open()
97 __pm_notifier_call_chain(PM_POST_RESTORE, nr_calls, NULL); in snapshot_open()
Dhibernate.c706 error = __pm_notifier_call_chain(PM_HIBERNATION_PREPARE, -1, &nr_calls); in hibernate()
770 __pm_notifier_call_chain(PM_POST_HIBERNATION, nr_calls, NULL); in hibernate()
885 error = __pm_notifier_call_chain(PM_RESTORE_PREPARE, -1, &nr_calls); in software_resume()
898 __pm_notifier_call_chain(PM_POST_RESTORE, nr_calls, NULL); in software_resume()
Dsuspend.c358 error = __pm_notifier_call_chain(PM_SUSPEND_PREPARE, -1, &nr_calls); in suspend_prepare()
373 __pm_notifier_call_chain(PM_POST_SUSPEND, nr_calls, NULL); in suspend_prepare()
Dpower.h215 extern int __pm_notifier_call_chain(unsigned long val, int nr_to_call,
Dmain.c70 int __pm_notifier_call_chain(unsigned long val, int nr_to_call, int *nr_calls) in __pm_notifier_call_chain() function
81 return __pm_notifier_call_chain(val, -1, NULL); in pm_notifier_call_chain()