/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/ |
D | PushFilePreparerTest.java | 181 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 …]
|
D | TestFilePushSetupTest.java | 111 when(device.pushDir((File) Mockito.any(), (String) Mockito.any())) in testSetup()
|
D | ModulePusherTest.java | 345 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/ |
D | INativeDevice.java | 823 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/ |
D | TestDeviceFileFuncTest.java | 231 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()
|
D | NativeDeviceTest.java | 298 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()
|
D | TestDeviceFuncTest.java | 525 assertTrue(mTestDevice.pushDir(rootDir, externalStorePath)); in testPushDir()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | TestFilePushSetup.java | 155 device.pushDir(localFile, remoteFileName); in setUp()
|
D | PushFilePreparer.java | 448 if (!device.pushDir(src, remotePath, filter)) { in evaluatePushingPair()
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/contentprovider/ |
D | ContentProviderHandler.java | 271 public boolean pushDir(File localFileDir, String deviceFilePath, in pushDir() method in ContentProviderHandler
|
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/sync/ |
D | IncrementalImageFuncTest.java | 189 success = getDevice().pushDir(f, "/data/ndb/"); in testBlockCompareUpdate()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDevice.java | 2022 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/ |
D | ModulePusher.java | 537 ? device.pushDir(localFile, filePathOnDevice) in pushPackageToDevice()
|
/tools/tradefederation/core/src/com/android/tradefed/util/image/ |
D | IncrementalImageUtil.java | 391 success = mDevice.pushDir(f, "/data/ndb/"); in internalUpdateDevice()
|