Home
last modified time | relevance | path

Searched refs:libDir (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DTestRunnerUtilTest.java49 File libDir = new File(abiDir, lib); in testGetLdLibraryPath() local
50 libDir.mkdirs(); in testGetLdLibraryPath()
51 paths.add(libDir.getAbsolutePath()); in testGetLdLibraryPath()
52 libDir = new File(testcasesDir, lib); in testGetLdLibraryPath()
53 libDir.mkdirs(); in testGetLdLibraryPath()
54 paths.add(libDir.getAbsolutePath()); in testGetLdLibraryPath()
55 libDir = new File(hostOutDir, lib); in testGetLdLibraryPath()
56 libDir.mkdirs(); in testGetLdLibraryPath()
57 paths.add(libDir.getAbsolutePath()); in testGetLdLibraryPath()
/tools/ndkports/buildSrc/src/main/kotlin/com/android/ndkports/
DPrefabSysrootPlugin.kt38 val libDir = installDir.resolve("lib").apply { in <lambda>() constant
41 library.path.toFile().apply { copyTo(libDir.resolve(name)) } in <lambda>()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/python/
DPythonBinaryHostTest.java209 File libDir = new File(testDir, path); in run() local
210 if (libDir.exists()) { in run()
211 ldLibraryPath.add(libDir.getAbsolutePath()); in run()