OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pollResult
(Results
1 - 8
of
8
) sorted by null
/frameworks/native/services/displayservice/
DisplayEventReceiver.cpp
37
int
pollResult
= looper->pollAll(-1 /* timeout */);
38
LOG(ERROR) << "Looper::pollAll returns unexpected " <<
pollResult
;
/frameworks/native/services/sensorservice/hidl/
SensorManager.cpp
166
int
pollResult
= looper->pollAll(-1 /* timeout */);
167
if (
pollResult
!= ALOOPER_POLL_WAKE) {
168
LOG(ERROR) << "Looper::pollAll returns unexpected " <<
pollResult
;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WificondControl.java
281
WifiNative.SignalPollResult
pollResult
= new WifiNative.SignalPollResult();
282
pollResult
.currentRssi = resultArray[0];
283
pollResult
.txBitrate = resultArray[1];
284
pollResult
.associationFrequency = resultArray[2];
285
return
pollResult
;
WifiStateMachine.java
[
all
...]
/frameworks/base/media/native/midi/
midi.cpp
164
int
pollResult
= poll(checkFds, 1, 0);
165
if (
pollResult
< 1) {
/hardware/libhardware/modules/input/evdev/
InputHub.cpp
547
int
pollResult
= epoll_wait(mEpollFd, pendingEventItems, EPOLL_MAX_EVENTS, NO_TIMEOUT);
553
if (
pollResult
== 0) {
557
if (
pollResult
< 0) {
564
//
pollResult
> 0: there are events to process
569
for (int i = 0; i <
pollResult
; ++i) {
/frameworks/base/cmds/bootanimation/
BootAnimation.cpp
[
all
...]
/frameworks/native/services/inputflinger/
EventHub.cpp
[
all
...]
Completed in 963 milliseconds