OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:autosuspend_ops
(Results
1 - 5
of
5
) 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
...]
autosuspend_autosleep.c
28
#include "
autosuspend_ops
.h"
80
struct
autosuspend_ops
autosuspend_autosleep_ops = {
85
struct
autosuspend_ops
*autosuspend_autosleep_init(void)
autosuspend_earlysuspend.c
30
#include "
autosuspend_ops
.h"
165
struct
autosuspend_ops
autosuspend_earlysuspend_ops = {
198
struct
autosuspend_ops
*autosuspend_earlysuspend_init(void)
autosuspend_wakeup_count.c
30
#include "
autosuspend_ops
.h"
134
struct
autosuspend_ops
autosuspend_wakeup_count_ops = {
139
struct
autosuspend_ops
*autosuspend_wakeup_count_init(void)
Completed in 50 milliseconds