Home
last modified time | relevance | path

Searched refs:getMountPoint (Results 1 – 22 of 22) sorted by relevance

/tools/tradefederation/contrib/src/com/android/media/tests/
DPanoramaBenchMarkTest.java57 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()
DVideoEditingMemoryTest.java130 mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
148 mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in uploadHeapDumpFiles()
DMediaMemoryTest.java142 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
157 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in uploadHeapDumpFiles()
DCameraShotToShotLatencyTest.java106 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanupDevice()
DVideoEditingPerformanceTest.java160 mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
DMediaStressTest.java96 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
DCameraSettingsTest.java126 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanupDevice()
DMediaPlayerStressTest.java119 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
DCameraLatencyTest.java188 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DDeviceStateMonitorTest.java527 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()
DTestDeviceFuncTest.java225 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()
DTestDeviceFileFuncTest.java60 mExternalStorage = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in setUp()
DTestDeviceTest.java1098 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/
DIDeviceStateMonitor.java191 public String getMountPoint(String mountName) throws DeviceNotAvailableException; in getMountPoint() method
DStubDevice.java104 public String getMountPoint(String name) { in getMountPoint() method in StubDevice
DINativeDevice.java966 public String getMountPoint(String mountName); in getMountPoint() method
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDeviceStateMonitor.java397 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()
DNativeDevice.java1489 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/
DWifiStressTest.java381 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanOutputFiles()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DPushFilePreparer.java386 String mountPoint = device.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in setUp()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceSetup.java1258 String fullRemotePath = device.getIDevice().getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in syncTestData()
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DDeviceSetupTest.java1573 when(mMockIDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).thenReturn(mntPoint); in doSyncDataExpectations()