Home
last modified time | relevance | path

Searched refs:pollResult (Results 1 – 7 of 7) sorted by relevance

/frameworks/native/services/sensorservice/hidl/
DSensorManager.cpp169 int pollResult = looper->pollAll(-1 /* timeout */); in getLooper() local
170 if (pollResult == Looper::POLL_WAKE) { in getLooper()
179 << pollResult; in getLooper()
/frameworks/native/services/displayservice/
DDisplayEventReceiver.cpp37 int pollResult = looper->pollAll(-1 /* timeout */); in getLooper() local
38 LOG(ERROR) << "Looper::pollAll returns unexpected " << pollResult; in getLooper()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java461 WifiNative.SignalPollResult pollResult = new WifiNative.SignalPollResult(); in signalPoll() local
462 pollResult.currentRssi = resultArray[0]; in signalPoll()
463 pollResult.txBitrate = resultArray[1]; in signalPoll()
464 pollResult.associationFrequency = resultArray[2]; in signalPoll()
465 return pollResult; in signalPoll()
DWifiStateMachine.java2451 WifiNative.SignalPollResult pollResult = mWifiNative.signalPoll(mInterfaceName); in fetchRssiLinkSpeedAndFrequencyNative() local
2452 if (pollResult == null) { in fetchRssiLinkSpeedAndFrequencyNative()
2456 newRssi = pollResult.currentRssi; in fetchRssiLinkSpeedAndFrequencyNative()
2457 newLinkSpeed = pollResult.txBitrate; in fetchRssiLinkSpeedAndFrequencyNative()
2458 newFrequency = pollResult.associationFrequency; in fetchRssiLinkSpeedAndFrequencyNative()
/frameworks/base/media/native/midi/
Dmidi.cpp164 int pollResult = poll(checkFds, 1, 0); in AMIDI_receive() local
165 if (pollResult < 1) { in AMIDI_receive()
/frameworks/base/cmds/bootanimation/
DBootAnimation.cpp1094 ssize_t pollResult = poll(&pfd, 1, 1000); in doThreadLoop() local
1096 if (pollResult == 0) { in doThreadLoop()
1098 } else if (pollResult < 0) { in doThreadLoop()
/frameworks/native/services/inputflinger/
DEventHub.cpp1009 int pollResult = epoll_wait(mEpollFd, mPendingEventItems, EPOLL_MAX_EVENTS, timeoutMillis); in getEvents() local
1014 if (pollResult == 0) { in getEvents()
1020 if (pollResult < 0) { in getEvents()
1032 mPendingEventCount = size_t(pollResult); in getEvents()