/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 | VideoEditingPerformanceTest.java | 160 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 | MediaPlayerStressTest.java | 119 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
|
D | CameraLatencyTest.java | 188 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
|
/tools/tradefederation/core/javatests/com/android/tradefed/device/ |
D | DeviceStateMonitorTest.java | 527 when(mMockDevice.getMountPoint((String) any())).thenReturn(expectedMountPoint); in testgetMountPoint() 530 assertEquals(expectedMountPoint, mMonitor.getMountPoint("")); in testgetMountPoint() 541 when(mMockDevice.getMountPoint((String) any())).thenReturn(null); in testgetMountPoint_nonCached() 556 assertEquals("NONCACHED", mMonitor.getMountPoint("")); in testgetMountPoint_nonCached() 585 public String getMountPoint(String mountName) { in testWaitForStoreMount() 635 public String getMountPoint(String mountName) { in testWaitForStoreMount_permDenied() 682 public String getMountPoint(String mountName) { in testWaitForStoreMount_becomeAvailable() 739 public String getMountPoint(String mountName) { in testWaitForStoreMount_outputBecomeValid() 773 public String getMountPoint(String mountName) { in testWaitForStoreMount_timeout() 819 when(mMockDevice.getMountPoint((String) any())).thenReturn("/sdcard"); in testWaitForDeviceAvailable_mounted()
|
D | TestDeviceFuncTest.java | 225 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPushPull_normal() 304 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPull_noexist() 324 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPull_nopermissions() 355 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPush_noexist() 438 doTestSyncFiles(mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)); in testSyncFiles_normal() 519 externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPushDir()
|
D | TestDeviceFileFuncTest.java | 60 mExternalStorage = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in setUp()
|
D | TestDeviceTest.java | 1098 when(mMockStateMonitor.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).thenReturn(mntPoint); in testGetExternalStoreFreeSpace_emptyOutput() 1120 when(mMockStateMonitor.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).thenReturn(mntPoint); in assertGetExternalStoreFreeSpace()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | IDeviceStateMonitor.java | 191 public String getMountPoint(String mountName) throws DeviceNotAvailableException; in getMountPoint() method
|
D | StubDevice.java | 104 public String getMountPoint(String name) { in getMountPoint() method in StubDevice
|
D | INativeDevice.java | 966 public String getMountPoint(String mountName); in getMountPoint() method
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDeviceStateMonitor.java | 397 final String externalStore = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in waitForStoreMount() 471 public String getMountPoint(String mountName) throws DeviceNotAvailableException { in getMountPoint() method in NativeDeviceStateMonitor 472 String mountPoint = getIDevice().getMountPoint(mountName); in getMountPoint()
|
D | NativeDevice.java | 1489 String externalPath = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in pullFileFromExternal() 1541 final String esPath = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in interpolatePathVariables() 1749 String externalStorePath = getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in getExternalStoreFreeSpace() 1890 public String getMountPoint(String mountName) { in getMountPoint() method in NativeDevice 1892 return mStateMonitor.getMountPoint(mountName); in getMountPoint()
|
/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 | 386 String mountPoint = device.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in setUp()
|
/tools/tradefederation/core/src/com/android/tradefed/targetprep/ |
D | DeviceSetup.java | 1258 String fullRemotePath = device.getIDevice().getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in syncTestData()
|
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/ |
D | DeviceSetupTest.java | 1573 when(mMockIDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).thenReturn(mntPoint); in doSyncDataExpectations()
|