HomeSort by relevance Sort by last modified time
    Searched defs:autosuspend_ops (Results 1 - 2 of 2) sorted by null

  /system/core/libsuspend/
autosuspend_ops.h 20 struct autosuspend_ops { struct
25 struct autosuspend_ops *autosuspend_autosleep_init(void);
26 struct autosuspend_ops *autosuspend_earlysuspend_init(void);
27 struct autosuspend_ops *autosuspend_wakeup_count_init(void);
autosuspend.c 24 #include "autosuspend_ops.h"
26 static struct autosuspend_ops *autosuspend_ops; variable in typeref:struct:autosuspend_ops
36 autosuspend_ops = autosuspend_earlysuspend_init();
37 if (autosuspend_ops) {
41 autosuspend_ops = autosuspend_autosleep_init();
42 if (autosuspend_ops) {
46 autosuspend_ops = autosuspend_wakeup_count_init();
47 if (autosuspend_ops) {
51 if (!autosuspend_ops) {
    [all...]

Completed in 326 milliseconds