Searched refs:fullPath (Results 1 – 10 of 10) sorted by relevance
/tools/tradefederation/core/src/com/android/tradefed/testtype/ |
D | GTest.java | 151 String getFileName(String fullPath) { in getFileName() argument 152 int pos = fullPath.lastIndexOf('/'); in getFileName() 154 return fullPath; in getFileName() 156 String fileName = fullPath.substring(pos + 1); in getFileName() 169 protected boolean shouldSkipFile(String fullPath) throws DeviceNotAvailableException { in shouldSkipFile() argument 170 if (fullPath == null || fullPath.isEmpty()) { in shouldSkipFile() 174 if (!mDevice.isExecutable(fullPath)) { in shouldSkipFile() 182 if (fullPath.matches(regex)) { in shouldSkipFile() 183 CLog.i("File %s matches exclusion file regex %s, skipping", fullPath, regex); in shouldSkipFile() 213 protected String getGTestCmdLine(String fullPath, String flags) { in getGTestCmdLine() argument [all …]
|
D | GoogleBenchmarkTest.java | 216 protected boolean shouldSkipFile(String fullPath) { in shouldSkipFile() argument 217 if (fullPath == null || fullPath.isEmpty()) { in shouldSkipFile() 224 if (fullPath.matches(regex)) { in shouldSkipFile() 226 fullPath, regex)); in shouldSkipFile()
|
D | NativeStressTest.java | 160 String fullPath = rootEntry.getFullEscapedPath(); in doRunAllTestsInSubdirectory() local 161 Log.i(LOG_TAG, String.format("Running native stress test %s on %s", fullPath, in doRunAllTestsInSubdirectory() 164 testDevice.executeShellCommand(String.format("chmod 755 %s", fullPath)); in doRunAllTestsInSubdirectory() 176 testDevice.executeShellCommand(String.format("%s -s %d -e %d", fullPath, in doRunAllTestsInSubdirectory()
|
D | NativeBenchmarkTest.java | 183 String fullPath = rootEntry.getFullEscapedPath(); in doRunAllTestsInSubdirectory() local 190 testDevice.executeShellCommand(String.format("chmod 755 %s", fullPath)); in doRunAllTestsInSubdirectory() 203 String cmd = String.format("%s -n %d -d %f -c %d -s %d", fullPath, in doRunAllTestsInSubdirectory()
|
D | HostGTest.java | 154 final IShellOutputReceiver resultParser, final String fullPath, final String flags) { in runTest() argument 165 String cmd = getGTestCmdLine(fullPath, flags); in runTest()
|
D | GTestBase.java | 481 protected String getGTestCmdLine(String fullPath, String flags) { in getGTestCmdLine() argument 492 gTestCmdLine.append(String.format("%s %s", fullPath, flags)); in getGTestCmdLine()
|
/tools/tradefederation/contrib/src/com/android/graphics/tests/ |
D | SkiaTest.java | 93 String fullPath = mNativeTestDevicePath + "/" + mSkiaApp + "/" + mSkiaApp; in run() local 94 IFileEntry app = mDevice.getFileEntry(fullPath); in run() 98 CLog.w("Could not find test %s in %s!", fullPath, mDevice.getSerialNumber()); in run() 99 listener.testFailed(testId, "Device does not have " + fullPath); in run() 237 String fullPath = app.getFullEscapedPath(); in runTest() local 239 mDevice.executeShellCommand(String.format("chmod 755 %s", fullPath)); in runTest() 248 String cmd = fullPath + " " + mFlags; in runTest()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/device/ |
D | MockFileUtil.java | 50 String fullPath = rootPath + FileListingService.FILE_SEPARATOR + childName; in setMockDirContents() local 51 EasyMock.expect(childMockEntry.getFullEscapedPath()).andStubReturn(fullPath); in setMockDirContents()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | NativeDevice.java | 1092 String fullPath = (new File(externalPath, remoteFilePath)).getPath(); in pullFileFromExternal() local 1093 return pullFile(fullPath); in pullFileFromExternal() 1422 public boolean isExecutable(String fullPath) throws DeviceNotAvailableException { in isExecutable() argument 1423 String fileMode = executeShellCommand(String.format("ls -l %s", fullPath)); in isExecutable() 1571 String fullPath = item.getFullPath(); in pullDir() local 1572 if (!pullFile(fullPath, localFile)) { in pullDir() 1573 CLog.w("Failed to pull file %s from device, aborting", fullPath); in pullDir()
|
D | INativeDevice.java | 695 public boolean isExecutable(String fullPath) throws DeviceNotAvailableException; in isExecutable() argument
|