OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextWakeupTime
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/libs/ui/
InputDispatcher.cpp
214
nsecs_t
nextWakeupTime
= LONG_LONG_MAX;
217
dispatchOnceInnerLocked(keyRepeatTimeout, keyRepeatDelay, &
nextWakeupTime
);
220
nextWakeupTime
= LONG_LONG_MIN; // force next poll to wake up immediately
227
if (
nextWakeupTime
> currentTime) {
228
uint64_t timeout = uint64_t(
nextWakeupTime
- currentTime);
239
nsecs_t keyRepeatDelay, nsecs_t*
nextWakeupTime
) {
261
if (mAppSwitchDueTime < *
nextWakeupTime
) {
262
*
nextWakeupTime
= mAppSwitchDueTime;
281
if (mKeyRepeatState.nextRepeatTime < *
nextWakeupTime
) {
282
*
nextWakeupTime
= mKeyRepeatState.nextRepeatTime
[
all
...]
/frameworks/base/include/ui/
InputDispatcher.h
843
nsecs_t*
nextWakeupTime
);
[
all
...]
Completed in 475 milliseconds