/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | DeviceStateMonitorTest.java | 278 .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 …]
|
D | SimulatedCommandsVerifier.java | 1354 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommandsVerifier
|
D | SimulatedCommands.java | 2312 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in SimulatedCommands 2313 SimulatedCommandsVerifier.getInstance().sendDeviceState(stateType, state, result); in sendDeviceState()
|
D | RILTest.java | 1370 mRILUnderTest.sendDeviceState(stateType, state, obtainMessage()); in testSendDeviceState() 1371 verify(mRadioProxy).sendDeviceState( in testSendDeviceState()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | DeviceStateMonitor.java | 520 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()
|
D | RadioModemProxy.java | 295 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()
|
D | CommandsInterface.java | 2311 void sendDeviceState(int stateType, boolean state, Message result); in sendDeviceState() method
|
D | RIL.java | 4403 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/ |
D | ImsPhoneCommandInterface.java | 606 public void sendDeviceState(int stateType, boolean state, Message result) { in sendDeviceState() method in ImsPhoneCommandInterface
|