/tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/ |
D | AllocateDeviceOp.java | 28 private static final String SERIAL = "serial"; field in AllocateDeviceOp 43 return new AllocateDeviceOp(json.getString(SERIAL)); in createFromJson() 53 j.put(SERIAL, mDeviceSerial); in packIntoJson()
|
D | FreeDeviceOp.java | 26 private static final String SERIAL = "serial"; field in FreeDeviceOp 44 return new FreeDeviceOp(json.getString(SERIAL)); in createFromJson() 54 j.put(SERIAL, mDeviceSerial); in packIntoJson()
|
D | GetLastCommandResultOp.java | 35 private static final String SERIAL = "serial"; field in GetLastCommandResultOp 57 return new GetLastCommandResultOp(json.getString(SERIAL)); in createFromJson() 73 json.put(SERIAL, mSerial); in packIntoJson()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | ReconnectingRecoveryTest.java | 30 private static final String SERIAL = "serial"; field in ReconnectingRecoveryTest 47 EasyMock.expect(mMockMonitor.getSerialNumber()).andStubReturn(SERIAL); in setUp() 125 return new String[] { EasyMock.eq("adb"), EasyMock.eq("disconnect"), EasyMock.eq(SERIAL) }; in disconnectCommand() 129 return new String[] { EasyMock.eq("adb"), EasyMock.eq("connect"), EasyMock.eq(SERIAL) }; in connectCommand()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/ |
D | InstallApkSetupTest.java | 42 private static final String SERIAL = "SERIAL"; field in InstallApkSetupTest 56 EasyMock.expect(mMockTestDevice.getSerialNumber()).andStubReturn(SERIAL); in setUp() 141 SERIAL, testFile.getAbsolutePath()); in testInstallFailureThrow()
|
D | AppSetupTest.java | 53 private static final String SERIAL = "serial"; field in AppSetupTest 63 EasyMock.expect(mMockDevice.getSerialNumber()).andStubReturn(SERIAL); in setUp() 111 tmpFile.getName(), SERIAL), expected.getMessage()); in testSetup_failToInstall() 341 assertEquals("Failed to uninstall apps on " + SERIAL, expected.getMessage()); in testSetup_uninstallAll_fails()
|
D | TestAppInstallSetupTest.java | 43 private static final String SERIAL = "SERIAL"; field in TestAppInstallSetupTest 90 EasyMock.expect(mMockTestDevice.getSerialNumber()).andStubReturn(SERIAL); in setUp() 159 "fakeApk.apk", SERIAL, failure); in testInstallFailure()
|
D | InstallAllTestZipAppsSetupTest.java | 44 private static final String SERIAL = "SERIAL"; field in InstallAllTestZipAppsSetupTest 77 EasyMock.expect(mMockTestDevice.getSerialNumber()).andStubReturn(SERIAL); in setUp() 191 file, SERIAL, failure); in testInstallFailure()
|
/tools/tradefederation/core/atest/ |
D | constants_default.py | 34 SERIAL = 'SERIAL' variable
|
D | atest.py | 409 extra_args[constants.SERIAL] = args.serial
|
/tools/tradefederation/core/atest/test_runners/ |
D | vts_tf_test_runner.py | 84 if constants.SERIAL == arg:
|
D | atest_tf_test_runner.py | 131 if constants.SERIAL == arg:
|
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/ |
D | TestInvocationTest.java | 110 private static final String SERIAL = "serial"; field in TestInvocationTest 198 EasyMock.expect(mMockDevice.getSerialNumber()).andStubReturn(SERIAL); in setUp() 205 mFakeDescriptor = new DeviceDescriptor(SERIAL, false, DeviceAllocationState.Available, in setUp() 461 DeviceNotAvailableException exception = new DeviceNotAvailableException("ERROR", SERIAL); in testInvoke_deviceNotAvail() 520 mMockBuildInfo.setDeviceSerial(SERIAL); in testInvoke_resume() 526 EasyMock.expectLastCall().andThrow(new DeviceNotAvailableException("ERROR", SERIAL)); in testInvoke_resume() 591 mMockBuildInfo.setDeviceSerial(SERIAL); in testInvoke_resume() 717 DeviceNotAvailableException exception = new DeviceNotAvailableException("ERROR", SERIAL); in testInvoke_tearDown_deviceNotAvail() 1010 mMockBuildInfo.setDeviceSerial(SERIAL); in testInvoke_testtag() 1041 mMockBuildInfo.setDeviceSerial(SERIAL); in testInvoke_testtag_notset() [all …]
|