Home
last modified time | relevance | path

Searched refs:libFile (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/
DTestRunnerUtil.java56 File libFile = new File(testFile.getParentFile().getAbsolutePath(), lib); in getLdLibraryPath() local
57 if (libFile.exists()) { in getLdLibraryPath()
58 paths.add(libFile.getAbsolutePath()); in getLdLibraryPath()
62 libFile = new File(testcasesFolderPath, lib); in getLdLibraryPath()
63 if (libFile.exists()) { in getLdLibraryPath()
64 paths.add(libFile.getAbsolutePath()); in getLdLibraryPath()
69 libFile = new File(androidHostOut, lib); in getLdLibraryPath()
70 if (libFile.exists()) { in getLdLibraryPath()
71 paths.add(libFile.getAbsolutePath()); in getLdLibraryPath()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DIsolatedHostTest.java611 File libFile = new File(path, lib); in compileLdLibraryPathInner() local
613 if (libFile.isDirectory()) { in compileLdLibraryPathInner()
614 result.add(libFile.getAbsolutePath()); in compileLdLibraryPathInner()