Home | History | Annotate | Download | only in jni

Lines Matching refs:eventTime

86 void android_server_PowerManagerService_userActivity(nsecs_t eventTime, int32_t eventType) {
98 if (eventTime > now) {
99 eventTime = now;
102 if (gLastEventTime[eventType] + MIN_TIME_BETWEEN_USERACTIVITIES > eventTime) {
105 gLastEventTime[eventType] = eventTime;
112 nanoseconds_to_milliseconds(eventTime), eventType, 0);
117 void android_server_PowerManagerService_wakeUp(nsecs_t eventTime) {
123 nanoseconds_to_milliseconds(eventTime));
128 void android_server_PowerManagerService_goToSleep(nsecs_t eventTime) {
134 nanoseconds_to_milliseconds(eventTime), 0);