/tools/ndkports/buildSrc/src/main/kotlin/com/android/ndkports/ |
D | Testing.kt | 18 sealed class TestResult(val name: String, val abi: Abi) { constant in com.android.ndkports.TestResult 19 class Success(name: String, abi: Abi) : TestResult(name, abi) { 20 override fun toString(): String = "PASS $abi $name" in toString() 23 class Failure(name: String, abi: Abi, private val output: String) : in toString() 24 TestResult(name, abi) { in toString() 25 override fun toString(): String = "FAIL $abi $name: $output" in toString() 33 class PushBuilder(val abi: Abi, val toolchain: Toolchain) { constant in PushBuilder 41 class ShellTestBuilder(val deviceDirectory: File, val abi: Abi) { in push() constant in ShellTestBuilder 68 private fun deviceDirectoryForAbi(abi: Abi): File = in push() 69 BASE_DEVICE_DIRECTORY.resolve(project.name).resolve(abi.toString()) in push() [all …]
|
D | PortTask.kt | 68 fun buildDirectoryFor(abi: Abi): File = in buildDirectoryFor() 69 buildDir.asFile.get().resolve("build/$abi") in buildDirectoryFor() 72 fun installDirectoryFor(abi: Abi): File = in buildDirectoryFor() 73 installDir.get().asFile.resolve("$abi") in buildDirectoryFor() 77 for (abi in Abi.values()) { in buildDirectoryFor() method 78 val api = abi.adjustMinSdkVersion(minSdkVersion.get()) in buildDirectoryFor() 80 Toolchain(ndk, abi, api), in buildDirectoryFor() 82 buildDirectory = buildDirectoryFor(abi), in buildDirectoryFor() 83 installDirectory = installDirectoryFor(abi), in buildDirectoryFor()
|
D | PrefabPackageBuilder.kt | 105 private fun installLibForAbi(module: ModuleDescription, abi: Abi, libsDir: File) { in installLibForAbi() 112 directory.resolve("$abi/lib/$libName") in installLibForAbi() 118 abi = abi.abiName, in installLibForAbi() 119 api = abi.adjustMinSdkVersion(packageData.minSdkVersion), in installLibForAbi() 173 for (abi in Abi.values()) { in build() method 174 installLibForAbi(module, abi, libsDir) in build()
|
D | Devices.kt | 48 fun compatibleWith(abi: Abi, minSdkVersion: Int) = in compatibleWith() 49 abi in abis && minSdkVersion <= version in compatibleWith() 87 fun findDeviceFor(abi: Abi, minSdkVersion: Int): Device? = in compatibleWith() 88 devices.find { it.compatibleWith(abi, minSdkVersion) } in compatibleWith()
|
D | Toolchain.kt | 19 class Toolchain(val ndk: Ndk, val abi: Abi, val api: Int) { constant in com.android.ndkports.Toolchain 20 val binutilsTriple = when (abi) { 27 private val clangTriple = when (abi) {
|
D | MesonPortTask.kt | 54 val cpuFamily = when (toolchain.abi) { in configure() 61 val cpu = when (toolchain.abi) { in configure()
|
D | CMakePortTask.kt | 49 prefabGenerated.get().asFile.resolve(toolchain.abi.triple) in configure()
|
D | AutoconfPortTask.kt | 43 prefabGenerated.get().asFile.resolve(toolchain.abi.triple) in autoconf()
|
/tools/asuite/atest/tf_proto/ |
D | configuration_description.proto | 32 // Representation of abi 34 // Name of the abi. 37 // The bitness of the abi. Can be 32 or 64. 56 Abi abi = 7; field
|
/tools/security/fuzzing/orphans/libffi/ |
D | fuzz_ffi.cc | 63 ffi_get_struct_offsets(abi, new_type, NULL); in generateCustomType() 340 abi = static_cast<ffi_abi>( in LLVMFuzzerTestOneInput() 344 ffi_prep_types(abi); in LLVMFuzzerTestOneInput() 348 ret = ffi_prep_cif_var(&cif, abi, 1, num_args, rtype, in LLVMFuzzerTestOneInput()
|
D | fuzz_ffi.h | 77 ffi_abi abi = FFI_DEFAULT_ABI; variable
|
/tools/ndkports/jsoncpp/ |
D | build.gradle.kts | 43 buildTask.get().buildDirectoryFor(abi).resolve("jsoncpp_test"), in <lambda>() 47 buildTask.get().installDirectoryFor(abi) in <lambda>()
|
/tools/ndkports/googletest/ |
D | build.gradle.kts | 55 val buildDir = buildTask.get().buildDirectoryFor(abi) in <lambda>() 65 val buildDir = buildTask.get().buildDirectoryFor(abi) in <lambda>()
|
/tools/ndkports/openssl/ |
D | build.gradle.kts | 97 val buildDirectory = buildTask.get().buildDirectoryFor(abi) in <lambda>()
|
/tools/asuite/atest/unittest_data/ |
D | test_record.proto.testonly | 36 module-abix86
|