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.java101 verify(mSimulatedCommandsVerifier, times(1)).sendDeviceState(eq(LOW_DATA_EXPECTED), in testTethering()
112 verify(mSimulatedCommandsVerifier, times(1)).sendDeviceState(eq(CHARGING_STATE), in testCharging()
123 verify(mSimulatedCommandsVerifier, times(1)).sendDeviceState(eq(LOW_DATA_EXPECTED), in testCharging()
126 verify(mSimulatedCommandsVerifier, times(1)).sendDeviceState(eq(CHARGING_STATE), in testCharging()
DRILTest.java1018 mRILUnderTest.sendDeviceState(stateType, state, obtainMessage()); in testSendDeviceState()
1019 verify(mRadioProxy).sendDeviceState( in testSendDeviceState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DDeviceStateMonitor.java475 sendDeviceState(CHARGING_STATE, mIsCharging); in onUpdateDeviceState()
484 sendDeviceState(POWER_SAVE_MODE, mIsPowerSaveOn); in onUpdateDeviceState()
504 sendDeviceState(LOW_DATA_EXPECTED, mIsLowDataExpected); in onUpdateDeviceState()
540 sendDeviceState(CHARGING_STATE, mIsCharging); in onReset()
541 sendDeviceState(LOW_DATA_EXPECTED, mIsLowDataExpected); in onReset()
542 sendDeviceState(POWER_SAVE_MODE, mIsPowerSaveOn); in onReset()
570 private void sendDeviceState(int type, boolean state) { in sendDeviceState() method in DeviceStateMonitor
572 mPhone.mCi.sendDeviceState(type, state, null); in sendDeviceState()
DCommandsInterface.java2209 void sendDeviceState(int stateType, boolean state, Message result); in sendDeviceState() method
DRIL.java4288 public void sendDeviceState(int stateType, boolean state, in sendDeviceState() method in RIL
4301 radioProxy.sendDeviceState(rr.mSerial, stateType, state); in sendDeviceState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
DSipCommandInterface.java630 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SipCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhoneCommandInterface.java630 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in ImsPhoneCommandInterface
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommands.java2222 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommands
2223 SimulatedCommandsVerifier.getInstance().sendDeviceState(stateType, state, result); in sendDeviceState()
DSimulatedCommandsVerifier.java1384 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommandsVerifier