Home
last modified time | relevance | path

Searched refs:mRemoteClient (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
DRemoteManagerFuncTest.java47 private IRemoteClient mRemoteClient; field in RemoteManagerFuncTest
62 if (mRemoteClient != null) { in tearDown()
63 mRemoteClient.close(); in tearDown()
86 mRemoteClient = RemoteClient.connect(port); in testAllocateFree()
87 mRemoteClient.sendAllocateDevice("serial"); in testAllocateFree()
88 mRemoteClient.sendFreeDevice("serial"); in testAllocateFree()
104 mRemoteClient = RemoteClient.connect(port); in testAddCommand()
105 mRemoteClient.sendAddCommand(3, "arg1", "arg2"); in testAddCommand()
122 mRemoteClient = RemoteClient.connect(port); in testAddCommandFile()
123 mRemoteClient.sendAddCommandFile(cmdFile, extraArgs); in testAddCommandFile()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandScheduler.java142 private IRemoteClient mRemoteClient = null; field in CommandScheduler
1128 if (mRemoteClient != null) { in closeRemoteClient()
1130 mRemoteClient.sendHandoverComplete(); in closeRemoteClient()
1131 mRemoteClient.close(); in closeRemoteClient()
1818 if (mRemoteClient != null || mPerformingHandover) { in handoverShutdown()
1824 mRemoteClient = RemoteClient.connect(handoverPort); in handoverShutdown()
1826 handoverDevices(mRemoteClient); in handoverShutdown()
1828 mRemoteClient.sendHandoverInitComplete(); in handoverShutdown()
1869 if (mPerformingHandover && mRemoteClient != null) { in remoteFreeDevice()
1871 mRemoteClient.sendFreeDevice(device.getSerialNumber()); in remoteFreeDevice()
[all …]