Home
last modified time | relevance | path

Searched refs:newState (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DDeviceMonitorMultiplexer.java57 DeviceAllocationState newState) { in notifyDeviceStateChange() argument
59 monitor.notifyDeviceStateChange(serial, oldState, newState); in notifyDeviceStateChange()
DIDeviceMonitor.java59 DeviceAllocationState newState); in notifyDeviceStateChange() argument
DDeviceUtilStatsMonitor.java244 DeviceAllocationState newState) { in notifyDeviceStateChange() argument
249 if (DeviceAllocationState.Allocated.equals(newState)) { in notifyDeviceStateChange()
DDeviceManager.java1026 TestDeviceState newState = TestDeviceState.getStateByDdms(idevice.getState()); in deviceChanged() local
1027 testDevice.setDeviceState(newState); in deviceChanged()
1028 if (newState == TestDeviceState.ONLINE) { in deviceChanged()
1065 TestDeviceState newState = in deviceConnected()
1067 testDevice.setDeviceState(newState); in deviceConnected()
1068 if (newState == TestDeviceState.ONLINE) { in deviceConnected()
DNativeDeviceStateMonitor.java485 public void stateChanged(TestDeviceState newState) { in stateChanged() argument
486 if (mExpectedState.equals(newState)) { in stateChanged()
DNativeDevice.java3443 DeviceAllocationState newState; in handleAllocationEvent() local
3449 newState = mAllocationState.handleDeviceEvent(event); in handleAllocationEvent()
3450 if (oldState != newState) { in handleAllocationEvent()
3453 mAllocationState = newState; in handleAllocationEvent()
3460 mAllocationMonitor.notifyDeviceStateChange(getSerialNumber(), oldState, newState); in handleAllocationEvent() local
3462 return new DeviceEventResponse(newState, stateChanged); in handleAllocationEvent()