Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceStateMonitorTest.java439 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()
DTestDeviceFuncTest.java213 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()
DTestDeviceStressTest.java113 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testPushFolderWithManyFiles()
145 String externalStorePath = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in testSyncDataWithManyFiles()
DTestDeviceTest.java830 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/
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()
DMediaPlayerStressTest.java119 String extStore = 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()
DVideoEditingPerformanceTest.java160 mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanResultFile()
DCameraLatencyTest.java188 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
DCameraStressTest.java223 String extStore = mTestDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in cleanTmpFiles()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDeviceStateMonitor.java303 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()
DNativeDevice.java1175 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/
DIDeviceStateMonitor.java173 public String getMountPoint(String mountName); in getMountPoint() method
DStubDevice.java141 public String getMountPoint(String name) { in getMountPoint() method in StubDevice
DINativeDevice.java801 public String getMountPoint(String mountName); in getMountPoint() method
/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.java354 String mountPoint = device.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in setUp()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceSetup.java945 String fullRemotePath = device.getIDevice().getMountPoint(IDevice.MNT_EXTERNAL_STORAGE); in syncTestData()
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DDeviceSetupTest.java1355 EasyMock.expect(mMockIDevice.getMountPoint(IDevice.MNT_EXTERNAL_STORAGE)).andReturn( in doSyncDataExpectations()