Home
last modified time | relevance | path

Searched refs:pushDir (Results 1 – 14 of 14) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DPushFilePreparerTest.java181 when(mMockDevice.pushDir( in testPushDir_RemoteIsDir()
398 when(mMockDevice.pushDir( in testPush_abiDirectory_noBitness()
431 when(mMockDevice.pushDir( in testPush_abiDirectory_noBitness_withModule()
463 when(mMockDevice.pushDir( in testPush_abiDirectory()
501 when(mMockDevice.pushDir( in testPush_moduleName_dirs()
672 when(mMockDevice.pushDir( in testPush_moduleName_ignored()
709 when(mMockDevice.pushDir( in testPush_moduleName_multiAbi()
750 when(mMockDevice.pushDir( in testPush_moduleName_multiabi_files()
789 when(mMockDevice.pushDir( in testPush_moduleName_noMatch()
857 when(mMockDevice.pushDir( in testPush_moduleName_repeating_name()
[all …]
DTestFilePushSetupTest.java111 when(device.pushDir((File) Mockito.any(), (String) Mockito.any())) in testSetup()
DModulePusherTest.java345 when(mMockDevice.pushDir(renamedSplitApk, SPLIT_APK_PACKAGE_ON_DEVICE)).thenReturn(true); in testInstallModulesSuccessWithApks()
365 verify(mMockDevice, times(1)).pushDir(renamedSplitApk, SPLIT_APK_PACKAGE_ON_DEVICE); in testInstallModulesSuccessWithApks()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java823 public boolean pushDir(File localDir, String deviceFilePath) in pushDir() method
836 public boolean pushDir(File localDir, String deviceFilePath, int userId) in pushDir() method
850 public boolean pushDir(File localDir, String deviceFilePath, Set<String> excludedDirectories) in pushDir() method
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DTestDeviceFileFuncTest.java231 boolean didPushSucceed = mTestDevice.pushDir(localDir, remotePath); in testPushPullDir_Basic()
277 boolean didPushSucceed = mTestDevice.pushDir(localDir, remotePath); in testPushPullDir_ExtStorage()
388 boolean didPushSucceed = mTestDevice.pushDir(localDir, remotePath); in testIsDirectory()
428 boolean didPushSucceed = mTestDevice.pushDir(localDir, remotePath); in testGetChildren_Basic()
DNativeDeviceTest.java298 mTestDevice.pushDir(testDir, deviceFilePath, testUserId); in testPushDir_withUserId()
302 .pushDir(Mockito.eq(testDir), Mockito.eq(deviceFilePath), Mockito.any()); in testPushDir_withUserId()
322 mTestDevice.pushDir(testDir, deviceFilePath); in testPushDir_withoutUserId()
326 .pushDir(Mockito.eq(testDir), Mockito.eq(deviceFilePath), Mockito.any()); in testPushDir_withoutUserId()
335 assertFalse(mTestDevice.pushDir(new File(""), "")); in testPushDir_notADir()
355 assertTrue(mTestDevice.pushDir(testDir, "")); in testPushDir_childFile()
379 assertTrue(mTestDevice.pushDir(testDir, "")); in testPushDir_childDir()
409 assertTrue(mTestDevice.pushDir(testDir, "/", filter)); in testPushDir_childDir_filtered()
DTestDeviceFuncTest.java525 assertTrue(mTestDevice.pushDir(rootDir, externalStorePath)); in testPushDir()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DTestFilePushSetup.java155 device.pushDir(localFile, remoteFileName); in setUp()
DPushFilePreparer.java448 if (!device.pushDir(src, remotePath, filter)) { in evaluatePushingPair()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/contentprovider/
DContentProviderHandler.java271 public boolean pushDir(File localFileDir, String deviceFilePath, in pushDir() method in ContentProviderHandler
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/sync/
DIncrementalImageFuncTest.java189 success = getDevice().pushDir(f, "/data/ndb/"); in testBlockCompareUpdate()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java2022 public boolean pushDir(File localFileDir, String deviceFilePath) in pushDir() method in NativeDevice
2024 return pushDir(localFileDir, deviceFilePath, new HashSet<>()); in pushDir()
2029 public boolean pushDir(File localFileDir, String deviceFilePath, int userId) in pushDir() method in NativeDevice
2031 return pushDir(localFileDir, deviceFilePath, new HashSet<>(), userId); in pushDir()
2036 public boolean pushDir( in pushDir() method in NativeDevice
2039 return pushDir( in pushDir()
2043 private boolean pushDir( in pushDir() method in NativeDevice
2052 return handler.pushDir(localFileDir, deviceFilePath, excludedDirectories); in pushDir()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DModulePusher.java537 ? device.pushDir(localFile, filePathOnDevice) in pushPackageToDevice()
/tools/tradefederation/core/src/com/android/tradefed/util/image/
DIncrementalImageUtil.java391 success = mDevice.pushDir(f, "/data/ndb/"); in internalUpdateDevice()