/development/vndk/snapshot/ |
D | gen_buildfiles.py | 112 arch = utils.snapshot_arch_from_path(txt_path) 115 lib_map[arch] = f.read().strip().split('\n') 161 def gen_for_variant(arch, is_binder32=False): argument 176 self._vndk_version, arch, binder32_suffix)) 178 variant_subpath = arch 182 variant_subpath = os.path.join(arch, utils.BINDER32) 187 self._vndk_core[arch], arch, is_binder32=is_binder32) 189 self._vndk_sp[arch], 190 arch, 197 bpfile.write(self._gen_bp_phony(arch, is_binder32)) [all …]
|
D | update.py | 106 for arch in utils.get_snapshot_archs(install_dir): 107 notices_dir_per_arch = os.path.join(arch, utils.NOTICE_FILES_DIR_NAME)
|
/development/vndk/tools/header-checker/tests/ |
D | module.py | 41 def __init__(self, name, arch, cflags, export_include_dirs): argument 43 self.arch = arch 45 self.arch_cflags = ARCH_TARGET_CFLAGS.get(self.arch, tuple()) 62 if self.arch: 83 arch='', dumper_flags=tuple()): argument 84 super(SdumpModule, self).__init__(name, arch, cflags, 105 cflags=tuple(), arch='', api='current', dumper_flags=tuple(), argument 107 super(LsdumpModule, self).__init__(name, arch, cflags, 134 self.arch, self.linker_flags) 146 arch='', [all …]
|
D | test.py | 26 dump_dir = os.path.join(reference_dump_dir, module.arch) 72 def run_and_compare_abi_diff(self, old_dump, new_dump, lib, arch, argument 74 actual_output = run_abi_diff(old_dump, new_dump, arch, lib, flags) 86 return os.path.join(REF_DUMP_DIR, module.arch, module.get_dump_name()) 96 self.assertEqual(old_module.arch, new_module.arch) 102 old_ref_dump_path, new_ref_dump_path, new_module.arch, 111 self.assertEqual(old_module.arch, new_module.arch)
|
/development/vndk/tools/header-checker/utils/ |
D | utils.py | 127 def run_header_abi_linker(output_path, inputs, version_script, api, arch, argument 131 '-api', api, '-arch', arch] 189 target.arch, target.arch_variant, target.cpu_variant, '_core_shared') 192 target.arch, target.arch_variant, target.cpu_variant, '_vendor_shared') 231 def get_module_variant_dir_name(arch, arch_variant, cpu_variant, argument 237 if not arch_variant or arch_variant == arch: 247 return 'android_' + arch + arch_variant + cpu_variant + variant_suffix 263 def run_abi_diff(old_test_dump_path, new_test_dump_path, arch, lib_name, argument 266 old_test_dump_path, '-arch', arch, '-lib', lib_name]
|
D | create_reference_dumps.py | 33 self.arch = build_vars[1] 43 if target.arch_variant != target.arch: 45 return target.arch + target_arch_variant_str 52 target.arch, target.arch_variant, target.cpu_variant, 110 if target.arch == '' or target.arch_variant == '': 158 if target.arch == '' or target.arch_variant == '': 161 print('Creating dumps for target_arch:', target.arch, 'and variant ',
|
/development/scripts/ |
D | gdbclient.py | 31 def get_gdbserver_path(root, arch): argument 33 if arch.endswith("64"): 34 return path.format(root, arch, "64") 36 return path.format(root, arch, "") 306 arch = gdbrunner.get_binary_arch(binary_file) 307 is64bit = arch.endswith("64") 319 gdbserver_local_path = get_gdbserver_path(root, arch) 320 gdbserver_remote_path = "/data/local/tmp/{}-gdbserver".format(arch)
|
D | symbol.py | 499 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN_2ND_ARCH", 32) 500 if not arch: 501 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN", 32) 502 if not arch: 504 return arch 509 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN", 64) 510 if not arch: 512 return arch
|
/development/vndk/tools/header-checker/src/repr/symbol/ |
D | version_script_parser.cpp | 35 inline std::string GetIntroducedArchTag(const std::string &arch) { in GetIntroducedArchTag() argument 36 return "introduced-" + arch + "="; in GetIntroducedArchTag() 45 void VersionScriptParser::SetArch(const std::string &arch) { in SetArch() argument 46 arch_ = arch; in SetArch() 47 introduced_arch_tag_ = GetIntroducedArchTag(arch); in SetArch()
|
D | version_script_parser.h | 71 void SetArch(const std::string &arch);
|
/development/apps/DumpViewer/app/src/main/ |
D | Android.mk | 11 androidx.arch.core_core-common \
|
/development/vndk/tools/header-checker/src/repr/ |
D | ir_diff_dumper.h | 48 virtual void AddArchIR(const std::string &arch) = 0;
|
/development/vndk/tools/header-checker/src/repr/protobuf/proto/ |
D | abi_diff.proto | 81 optional string arch = 2; field 119 optional string arch = 2; field
|
/development/vndk/tools/header-checker/src/repr/protobuf/ |
D | ir_diff_dumper.h | 48 void AddArchIR(const std::string &arch) override;
|
D | ir_diff_dumper.cpp | 39 void ProtobufIRDiffDumper::AddArchIR(const std::string &arch) { in AddArchIR() argument 40 diff_tu_->set_arch(arch); in AddArchIR()
|
/development/vndk/tools/header-checker/src/diff/ |
D | abi_diff.h | 35 HeaderAbiDiff(const std::string &lib_name, const std::string &arch, in HeaderAbiDiff() argument 44 : lib_name_(lib_name), arch_(arch), old_dump_(old_dump), in HeaderAbiDiff()
|
D | header_abi_diff.cpp | 49 static llvm::cl::opt<std::string> arch( variable 207 HeaderAbiDiff judge(lib_name, arch, old_dump, new_dump, compatibility_report, in main()
|
/development/vndk/tools/definition-tool/tests/ |
D | ndk_toolchain.py | 55 def get_gcc_dir(ndk_dir, arch, host): argument 56 return os.path.join(ndk_dir, 'toolchains', arch, 'prebuilt', host)
|
/development/vndk/tools/header-checker/src/linker/ |
D | header_abi_linker.cpp | 76 static llvm::cl::opt<std::string> arch( variable 112 const std::string &arch, in HeaderAbiLinker() argument 118 out_dump_name_(linked_dump), arch_(arch), api_(api), in HeaderAbiLinker() 477 so_file, linked_dump, arch, api, in main()
|
/development/vndk/tools/header-checker/src/diff_merge/ |
D | merge_abi_diff.cpp | 99 added_tu_diff->set_arch(diff_tu.arch()); in MergeDiffReports()
|
/development/ide/eclipse/ |
D | README.importing-to-eclipse.txt | 29 ${ProjDirPath}/build/core/combo/include/arch/linux-arm/AndroidConfig.h
|