/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | DeviceStateMonitorTest.java | 101 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()
|
D | RILTest.java | 1018 mRILUnderTest.sendDeviceState(stateType, state, obtainMessage()); in testSendDeviceState() 1019 verify(mRadioProxy).sendDeviceState( in testSendDeviceState()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | DeviceStateMonitor.java | 475 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()
|
D | CommandsInterface.java | 2209 void sendDeviceState(int stateType, boolean state, Message result); in sendDeviceState() method
|
D | RIL.java | 4288 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/ |
D | SipCommandInterface.java | 630 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SipCommandInterface
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCommandInterface.java | 630 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in ImsPhoneCommandInterface
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
D | SimulatedCommands.java | 2222 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommands 2223 SimulatedCommandsVerifier.getInstance().sendDeviceState(stateType, state, result); in sendDeviceState()
|
D | SimulatedCommandsVerifier.java | 1384 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommandsVerifier
|