Home
last modified time | relevance | path

Searched refs:arch (Results 1 – 24 of 24) sorted by relevance

/development/vndk/snapshot/
Dgen_buildfiles.py117 arch = utils.snapshot_arch_from_path(txt_path)
120 lib_map[arch] = f.read().strip().split('\n')
166 def gen_for_variant(arch, is_binder32=False): argument
181 self._vndk_version, arch, binder32_suffix))
183 src_root = os.path.join(self._install_dir, arch)
199 variant_subpath = arch
203 variant_subpath = os.path.join(arch, utils.BINDER32)
208 self._vndk_core[arch],
209 arch,
214 self._vndk_sp[arch],
[all …]
Dbuild.sh51 for arch in $arches; do
52 echo "-----Generating VNDK snapshot for $arch"
53 build/soong/soong_ui.bash --make-mode vndk dist TARGET_PRODUCT=aosp_$arch $additional_option
Dupdate.py106 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/
Dmodule.py41 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 …]
Dtest.py26 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/vendor_snapshot/
Dupdate.py140 for arch in arch_props:
143 for k in arch_props[arch]:
144 common_prop[k] = arch_props[arch][k]
147 if not k in arch_props[arch] or common_prop[k] != arch_props[arch][k]:
156 for arch in arch_props:
158 if k in arch_props[arch]:
159 del arch_props[arch][k]
160 prop['arch'][arch] = arch_props[arch]
203 arch = get_arch(rel_path)
230 variation_dict[module_name][arch] = prop
/development/scripts/
Dgdbclient.py57 def get_gdbserver_path(root, arch): argument
59 if arch.endswith("64"):
60 return path.format(root, arch, "64")
62 return path.format(root, arch, "")
65 def get_lldb_server_path(root, clang_base, clang_version, arch): argument
66 arch = {
71 }[arch]
73 clang_version, "runtimes_ndk_cxx", arch, "lldb-server")
419 arch = gdbrunner.get_binary_arch(binary_file)
420 is64bit = arch.endswith("64")
[all …]
Dstack40 if args.arch:
41 symbol.ARCH = args.arch
Dsymbol.py499 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/utils/
Dcreate_reference_dumps.py43 binder_bitness, arch): argument
45 binder_bitness, arch)
65 if target.arch == '' or target.arch_variant == '':
111 if target.arch == '' or target.arch_variant == '':
114 print('Creating dumps for target_arch:', target.arch, 'and variant ',
Dutils.py54 self.arch = build_vars[1]
65 if not self.arch_variant or self.arch_variant == self.arch:
70 return self.arch + arch_variant
146 def run_header_abi_linker(output_path, inputs, version_script, api, arch, argument
150 '-api', api, '-arch', arch]
297 def run_abi_diff(old_test_dump_path, new_test_dump_path, arch, lib_name, argument
300 old_test_dump_path, '-arch', arch, '-lib', lib_name]
/development/vndk/tools/header-checker/src/repr/symbol/
Dversion_script_parser.cpp37 inline std::string GetIntroducedArchTag(const std::string &arch) { in GetIntroducedArchTag() argument
38 return "introduced-" + arch + "="; in GetIntroducedArchTag()
47 void VersionScriptParser::SetArch(const std::string &arch) { in SetArch() argument
48 arch_ = arch; in SetArch()
49 introduced_arch_tag_ = GetIntroducedArchTag(arch); in SetArch()
Dversion_script_parser.h71 void SetArch(const std::string &arch);
/development/apps/DumpViewer/app/src/main/
DAndroid.mk11 androidx.arch.core_core-common \
/development/vndk/tools/header-checker/src/repr/
Dir_diff_dumper.h48 virtual void AddArchIR(const std::string &arch) = 0;
/development/vndk/tools/header-checker/src/repr/protobuf/proto/
Dabi_diff.proto81 optional string arch = 2; field
119 optional string arch = 2; field
/development/vndk/tools/header-checker/src/repr/protobuf/
Dir_diff_dumper.h48 void AddArchIR(const std::string &arch) override;
Dir_diff_dumper.cpp39 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/
Dabi_diff.h35 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()
Dheader_abi_diff.cpp49 static llvm::cl::opt<std::string> arch( variable
208 HeaderAbiDiff judge(lib_name, arch, old_dump, new_dump, compatibility_report, in main()
/development/vndk/tools/definition-tool/tests/
Dndk_toolchain.py55 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/
Dheader_abi_linker.cpp79 static llvm::cl::opt<std::string> arch( variable
115 const std::string &arch, in HeaderAbiLinker() argument
121 out_dump_name_(linked_dump), arch_(arch), api_(api), in HeaderAbiLinker()
466 so_file, linked_dump, arch, api, in main()
/development/vndk/tools/header-checker/src/diff_merge/
Dmerge_abi_diff.cpp99 added_tu_diff->set_arch(diff_tu.arch()); in MergeDiffReports()
/development/ide/eclipse/
DREADME.importing-to-eclipse.txt29 ${ProjDirPath}/build/core/combo/include/arch/linux-arm/AndroidConfig.h