Home
last modified time | relevance | path

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

/development/vndk/snapshot/
Dgen_buildfiles.py142 arch = utils.snapshot_arch_from_path(txt_path)
145 lib_map[arch] = f.read().strip().split('\n')
146 if lib_map[arch] == ['']:
147 lib_map[arch].clear()
195 def gen_for_variant(arch, is_binder32=False): argument
210 self._vndk_version, arch, binder32_suffix))
212 src_root = os.path.join(self._install_dir, arch)
228 variant_subpath = arch
230 variant_subpath = os.path.join(arch, utils.BINDER32)
235 self._vndk_core[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.py40 def __init__(self, name, arch, cflags, export_include_dirs): argument
42 self.arch = arch
44 self.arch_cflags = ARCH_TARGET_CFLAGS.get(self.arch, tuple())
61 if self.arch:
82 arch='', dumper_flags=tuple()): argument
83 super(SdumpModule, self).__init__(name, arch, cflags,
104 cflags=tuple(), arch='', api='current', dumper_flags=tuple(), argument
106 super(LsdumpModule, self).__init__(name, arch, cflags,
132 self.version_script, self.api, self.arch,
151 arch='',
[all …]
Dtest.py26 dump_dir = os.path.join(reference_dump_dir, module.arch)
79 def run_and_compare_abi_diff(self, old_dump, new_dump, lib, arch, argument
81 actual_output = run_abi_diff(old_dump, new_dump, arch, lib, flags)
93 return os.path.join(REF_DUMP_DIR, module.arch, module.get_dump_name())
103 self.assertEqual(old_module.arch, new_module.arch)
109 old_ref_dump_path, new_ref_dump_path, new_module.arch,
118 self.assertEqual(old_module.arch, new_module.arch)
/development/vendor_snapshot/
Dupdate.py153 def is_64bit_arch(arch): argument
154 return '64' in arch # arm64, x86_64
166 for arch in arch_props:
167 arch_props[arch]['shared_libs'] = [name]
168 arch_props[arch]['export_shared_lib_headers'] = [name]
193 for arch in arch_props:
196 for k in arch_props[arch]:
197 common_prop[k] = arch_props[arch][k]
200 if k not in arch_props[arch] or common_prop[k] != arch_props[arch][k]:
213 for arch in arch_props:
[all …]
/development/scripts/
Dlldbclient.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, "")
73 def get_lldb_server_path(root, clang_base, clang_version, arch): argument
74 arch = {
79 }[arch]
81 clang_version, "runtimes_ndk_cxx", arch, "lldb-server")
470 arch = gdbrunner.get_binary_arch(binary_file)
471 is64bit = arch.endswith("64")
[all …]
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, "")
73 def get_lldb_server_path(root, clang_base, clang_version, arch): argument
74 arch = {
79 }[arch]
81 clang_version, "runtimes_ndk_cxx", arch, "lldb-server")
470 arch = gdbrunner.get_binary_arch(binary_file)
471 is64bit = arch.endswith("64")
[all …]
Dstack40 if args.arch:
41 symbol.ARCH = args.arch
Dsymbol.py485 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN_2ND_ARCH", 32)
486 if not arch:
487 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN", 32)
488 if not arch:
490 return arch
495 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN", 64)
496 if not arch:
498 return arch
/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/vndk/tools/header-checker/utils/
Dcreate_reference_dumps.py42 binder_bitness, arch): argument
44 binder_bitness, arch)
64 if target.arch == '' or target.arch_variant == '':
110 if target.arch == '' or target.arch_variant == '':
113 print('Creating dumps for target_arch:', target.arch, 'and variant ',
Dutils.py51 self.arch = build_vars[1]
62 if not self.arch_variant or self.arch_variant == self.arch:
67 return self.arch + arch_variant
134 def run_header_abi_linker(inputs, output_path, version_script, api, arch, argument
138 '-api', api, '-arch', arch]
285 def run_abi_diff(old_test_dump_path, new_test_dump_path, arch, lib_name, argument
288 old_test_dump_path, '-arch', arch, '-lib', lib_name]
/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.cpp84 static llvm::cl::opt<std::string> arch( variable
126 const std::string &arch, in HeaderAbiLinker() argument
132 out_dump_name_(linked_dump), arch_(arch), api_(api), in HeaderAbiLinker()
479 so_file, linked_dump, arch, api, in main()
/development/ide/eclipse/
DREADME.importing-to-eclipse.txt29 ${ProjDirPath}/build/core/combo/include/arch/linux-arm/AndroidConfig.h