Home
last modified time | relevance | path

Searched refs:sendDeviceState (Results 1 – 9 of 9) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DDeviceStateMonitorTest.java278 .sendDeviceState(eq(LOW_DATA_EXPECTED), eq(true), nullable(Message.class)); in testScreenOnOffwithRadioToggle()
286 .sendDeviceState(anyInt(), anyBoolean(), nullable(Message.class)); in testScreenOnOffwithRadioToggle()
292 .sendDeviceState(eq(LOW_DATA_EXPECTED), eq(false), nullable(Message.class)); in testScreenOnOffwithRadioToggle()
315 verify(mSimulatedCommandsVerifier).sendDeviceState(eq(LOW_DATA_EXPECTED), in testTethering()
328 verify(mSimulatedCommandsVerifier).sendDeviceState(eq(CHARGING_STATE), in testCharging()
338 verify(mSimulatedCommandsVerifier).sendDeviceState(eq(LOW_DATA_EXPECTED), in testCharging()
340 verify(mSimulatedCommandsVerifier).sendDeviceState(eq(CHARGING_STATE), in testCharging()
355 verify(mSimulatedCommandsVerifier).sendDeviceState(eq(CHARGING_STATE), in testResetFromEvent()
357 verify(mSimulatedCommandsVerifier).sendDeviceState(eq(LOW_DATA_EXPECTED), in testResetFromEvent()
359 verify(mSimulatedCommandsVerifier).sendDeviceState(eq(POWER_SAVE_MODE), in testResetFromEvent()
[all …]
DSimulatedCommandsVerifier.java1354 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommandsVerifier
DSimulatedCommands.java2312 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommands
2313 SimulatedCommandsVerifier.getInstance().sendDeviceState(stateType, state, result); in sendDeviceState()
DRILTest.java1370 mRILUnderTest.sendDeviceState(stateType, state, obtainMessage()); in testSendDeviceState()
1371 verify(mRadioProxy).sendDeviceState( in testSendDeviceState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DDeviceStateMonitor.java520 sendDeviceState(CHARGING_STATE, mIsCharging); in onUpdateDeviceState()
534 sendDeviceState(POWER_SAVE_MODE, mIsPowerSaveOn); in onUpdateDeviceState()
566 sendDeviceState(LOW_DATA_EXPECTED, mIsLowDataExpected); in onUpdateDeviceState()
632 sendDeviceState(CHARGING_STATE, mIsCharging); in onReset()
633 sendDeviceState(LOW_DATA_EXPECTED, mIsLowDataExpected); in onReset()
634 sendDeviceState(POWER_SAVE_MODE, mIsPowerSaveOn); in onReset()
661 private void sendDeviceState(int type, boolean state) { in sendDeviceState() method in DeviceStateMonitor
663 mPhone.mCi.sendDeviceState(type, state, null); in sendDeviceState()
DRadioModemProxy.java295 public void sendDeviceState(int serial, int deviceStateType, boolean state) in sendDeviceState() method in RadioModemProxy
299 mModemProxy.sendDeviceState(serial, deviceStateType, state); in sendDeviceState()
301 mRadioProxy.sendDeviceState(serial, deviceStateType, state); in sendDeviceState()
DCommandsInterface.java2311 void sendDeviceState(int stateType, boolean state, Message result); in sendDeviceState() method
DRIL.java4403 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in RIL
4417 modemProxy.sendDeviceState(rr.mSerial, stateType, state); in sendDeviceState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java606 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in ImsPhoneCommandInterface