/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | DeviceStateMonitorTest.java | 439 EasyMock.expect(mMockDevice.getMountPoint((String) EasyMock.anyObject())) in testgetMountPoint() 443 assertEquals(expectedMountPoint, mMonitor.getMountPoint("")); in testgetMountPoint() 454 EasyMock.expect(mMockDevice.getMountPoint((String) EasyMock.anyObject())) in testgetMountPoint_nonCached() 470 assertEquals("NONCACHED", mMonitor.getMountPoint("")); in testgetMountPoint_nonCached() 500 public String getMountPoint(String mountName) { in testWaitForStoreMount() 547 public String getMountPoint(String mountName) { in testWaitForStoreMount_PermDenied() 597 public String getMountPoint(String mountName) { in testWaitForStoreMount_becomeAvailable() 648 public String getMountPoint(String mountName) { in testWaitForStoreMount_outputBecomeValid() 685 public String getMountPoint(String mountName) { in testWaitForStoreMount_timeout()
|
D | TestDeviceFuncTest.java | 213 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPushPull_normal() 290 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPull_noexist() 309 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPull_nopermissions() 339 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPush_noexist() 420 doTestSyncFiles(mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)); in testSyncFiles_normal() 495 externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPushDir()
|
D | TestDeviceStressTest.java | 113 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPushFolderWithManyFiles() 145 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testSyncDataWithManyFiles()
|
D | TestDeviceTest.java | 830 EasyMock.expect(mMockStateMonitor.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).andReturn( in testGetExternalStoreFreeSpace_emptyOutput() 852 EasyMock.expect(mMockStateMonitor.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).andReturn( in assertGetExternalStoreFreeSpace()
|
/tools/tradefederation/contrib/src/com/android/media/tests/ |
D | PanoramaBenchMarkTest.java | 57 String dataStore = mTestDevice.getMountPoint(IDevice.MNT_DATA); in run() 58 String externalStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in run() 109 String externalStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanupDevice()
|
D | VideoEditingMemoryTest.java | 130 mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile() 148 mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in uploadHeapDumpFiles()
|
D | MediaMemoryTest.java | 142 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile() 157 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in uploadHeapDumpFiles()
|
D | CameraShotToShotLatencyTest.java | 106 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanupDevice()
|
D | MediaPlayerStressTest.java | 119 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
|
D | MediaStressTest.java | 96 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
|
D | CameraSettingsTest.java | 126 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanupDevice()
|
D | VideoEditingPerformanceTest.java | 160 mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
|
D | CameraLatencyTest.java | 188 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
|
D | CameraStressTest.java | 223 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDeviceStateMonitor.java | 303 final String externalStore = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in waitForStoreMount() 356 public String getMountPoint(String mountName) { in getMountPoint() method in NativeDeviceStateMonitor 357 String mountPoint = getIDevice().getMountPoint(mountName); in getMountPoint()
|
D | NativeDevice.java | 1175 String externalPath = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in pullFileFromExternal() 1188 final String esPath = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in interpolatePathVariables() 1302 String externalStorePath = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in getExternalStoreFreeSpace() 1443 public String getMountPoint(String mountName) { in getMountPoint() method in NativeDevice 1444 return mStateMonitor.getMountPoint(mountName); in getMountPoint()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | IDeviceStateMonitor.java | 173 public String getMountPoint(String mountName); in getMountPoint() method
|
D | StubDevice.java | 141 public String getMountPoint(String name) { in getMountPoint() method in StubDevice
|
D | INativeDevice.java | 801 public String getMountPoint(String mountName); in getMountPoint() method
|
/tools/tradefederation/contrib/src/com/android/wireless/tests/ |
D | WifiStressTest.java | 381 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanOutputFiles()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | PushFilePreparer.java | 354 String mountPoint = device.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in setUp()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | DeviceSetup.java | 945 String fullRemotePath = device.getIDevice().getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in syncTestData()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/ |
D | DeviceSetupTest.java | 1355 EasyMock.expect(mMockIDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).andReturn( in doSyncDataExpectations()
|