Home
last modified time | relevance | path

Searched refs:rootEntry (Results 1 – 5 of 5) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DMockFileUtil.java40 IFileEntry rootEntry = EasyMock.createMock(IFileEntry.class); in setMockDirContents() local
41 EasyMock.expect(mockDevice.getFileEntry(rootPath)).andStubReturn(rootEntry); in setMockDirContents()
43 EasyMock.expect(rootEntry.isDirectory()).andStubReturn(isDir); in setMockDirContents()
44 EasyMock.expect(rootEntry.getFullEscapedPath()).andStubReturn(rootPath); in setMockDirContents()
45 EasyMock.expect(rootEntry.getName()).andStubReturn(rootPath); in setMockDirContents()
56 EasyMock.expect(rootEntry.getChildren(EasyMock.anyBoolean())) in setMockDirContents()
58 EasyMock.replay(rootEntry); in setMockDirContents()
72 IFileEntry rootEntry = EasyMock.createMock(IFileEntry.class); in setMockDirPath() local
73 EasyMock.expect(mockDevice.getFileEntry(rootPath)).andStubReturn(rootEntry); in setMockDirPath()
74 EasyMock.expect(rootEntry.getFullEscapedPath()).andStubReturn(rootPath); in setMockDirPath()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DNativeStressTest.java148 IFileEntry rootEntry, ITestDevice testDevice, ITestInvocationListener listener) in doRunAllTestsInSubdirectory() argument
151 if (rootEntry.isDirectory()) { in doRunAllTestsInSubdirectory()
153 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()
159 NativeStressTestParser resultParser = createResultParser(rootEntry.getName()); in doRunAllTestsInSubdirectory()
160 String fullPath = rootEntry.getFullEscapedPath(); in doRunAllTestsInSubdirectory()
172 rootEntry.getName(), mNumIterations)); in doRunAllTestsInSubdirectory()
DNativeBenchmarkTest.java171 IFileEntry rootEntry, ITestDevice testDevice, ITestInvocationListener listener) in doRunAllTestsInSubdirectory() argument
174 if (rootEntry.isDirectory()) { in doRunAllTestsInSubdirectory()
176 for (IFileEntry childEntry : rootEntry.getChildren(true)) { in doRunAllTestsInSubdirectory()
182 String runName = (mReportRunName == null ? rootEntry.getName() : mReportRunName); in doRunAllTestsInSubdirectory()
183 String fullPath = rootEntry.getFullEscapedPath(); in doRunAllTestsInSubdirectory()
202 rootEntry.getName(), mNumIterations, delayFloat)); in doRunAllTestsInSubdirectory()
DGoogleBenchmarkTest.java160 String rootEntry = root.substring(root.lastIndexOf("/") + 1); in doRunAllTestsInSubdirectory() local
161 String runName = (mReportRunName == null ? rootEntry : mReportRunName); in doRunAllTestsInSubdirectory()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DNativeBenchmarkTestTest.java107 IFileEntry rootEntry, in testRun_setMaxFrequency()