/development/vndk/tools/header-checker/tests/ |
D | module.py | 37 def __init__(self, name, arch, srcs, version_script, cflags, argument 40 self.arch = arch 45 if self.arch != '': 46 self.arch_cflags = ARCH_TARGET_CFLAGS.get(self.arch) 54 return self.arch 85 self.arch) 125 arch = '', 136 arch = '', 147 arch = '', 159 arch = '', [all …]
|
D | test.py | 52 def run_and_compare_abi_diff(self, old_dump, new_dump, lib, arch, argument 54 actual_output = run_abi_diff(old_dump, new_dump, arch, lib, flags)
|
/development/vndk/tools/header-checker/header-abi-util/src/ |
D | version_script_parser.cpp | 43 const std::string arch) { in LineSatisfiesArch() argument 51 return (has_arch_tags && StringContains(line, arch)) || !has_arch_tags; in LineSatisfiesArch() 55 const std::string &arch, in VersionScriptParser() argument 57 version_script_(version_script), arch_(arch), api_(ApiStrToInt(api)) { } in VersionScriptParser() 68 const std::string &arch, in SymbolInArchAndApiVersion() argument 72 if (!StringContains(line, "introduced") && LineSatisfiesArch(line, arch)) { in SymbolInArchAndApiVersion() 78 const std::string regex_match_string1 = " *introduced-" + arch + "=([0-9]+)"; in SymbolInArchAndApiVersion() 88 LineSatisfiesArch(line, arch)) { in SymbolInArchAndApiVersion() 97 const std::string &arch, int api) { in SymbolExported() argument 99 if (line.empty() || SymbolInArchAndApiVersion(line, arch, api)) { in SymbolExported()
|
D | ir_representation_protobuf.cpp | 1168 void ProtobufIRDiffDumper::AddArchIR(const std::string &arch) { in AddArchIR() argument 1169 diff_tu_->set_arch(arch); in AddArchIR()
|
/development/scripts/ |
D | gdbclient.py | 29 def get_gdbserver_path(root, arch): argument 31 if arch.endswith("64"): 32 return path.format(root, arch, "64", "64") 34 return path.format(root, arch, "", "") 241 arch = gdbrunner.get_binary_arch(binary_file) 242 is64bit = arch.endswith("64") 250 gdbserver_local_path = get_gdbserver_path(root, arch) 251 gdbserver_remote_path = "/data/local/tmp/{}-gdbserver".format(arch)
|
D | symbol.py | 489 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN_2ND_ARCH", 32) 490 if not arch: 491 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN", 32) 492 if not arch: 494 return arch 499 arch = GetAbiFromToolchain("ANDROID_TOOLCHAIN", 64) 500 if not arch: 502 return arch
|
/development/vndk/tools/header-checker/utils/ |
D | create_reference_dumps.py | 29 self.arch = build_vars[1] 56 if target.arch_variant != target.arch: 58 return target.arch + target_arch_variant_str 63 arch_lsdump_paths = find_lib_lsdumps(target.arch, target.arch_variant, 113 if target.arch == '' or target.arch_variant == '': 163 if target.arch == '' or target.arch_variant == '': 165 print('Creating dumps for target_arch:', target.arch, 'and variant ',
|
D | utils.py | 115 def run_header_abi_linker(output_path, inputs, version_script, api, arch): argument 119 '-api', api, '-arch', arch] 174 def run_abi_diff(old_test_dump_path, new_test_dump_path, arch, lib_name, argument 177 old_test_dump_path, '-arch', arch, '-lib', lib_name]
|
/development/vndk/snapshot/ |
D | test.sh | 171 …snapshot_dir="${SNAPSHOT_TOP}"/"${ARCH}"/"${BINDER_BITNESS_PATH}"/arch-"${ARCH}"-*/shared/"${vndk_… 173 snapshot_dir="${SNAPSHOT_TOP}"/"${ARCH}"/arch-"${ARCH}"-*/shared/"${vndk_type}" 180 … snapshot_dir_2nd="${SNAPSHOT_TOP}"/"${ARCH}"/arch-"${TARGET_2ND_ARCH}"-*/shared/"${vndk_type}"
|
D | gen_buildfiles.py | 303 arch=utils.arch_from_path(
|
/development/vndk/tools/header-checker/header-abi-util/include/ |
D | header_abi_util.h | 49 const std::string &arch, 70 const std::string &arch, int api); 72 bool SymbolExported(const std::string &line, const std::string &arch,
|
D | ir_representation_protobuf.h | 409 void AddArchIR(const std::string &arch) override;
|
D | ir_representation.h | 1409 virtual void AddArchIR(const std::string &arch) = 0;
|
/development/vndk/tools/header-checker/header-abi-diff/src/ |
D | abi_diff.h | 26 HeaderAbiDiff(const std::string &lib_name, const std::string &arch, in HeaderAbiDiff() argument 33 : lib_name_(lib_name), arch_(arch), old_dump_(old_dump), in HeaderAbiDiff()
|
D | header_abi_diff.cpp | 34 static llvm::cl::opt<std::string> arch( variable 145 HeaderAbiDiff judge(lib_name, arch, old_dump, new_dump, compatibility_report, in main()
|
/development/vndk/tools/header-checker/proto/ |
D | abi_diff.proto | 81 optional string arch = 2; field 119 optional string arch = 2; field
|
/development/vndk/tools/definition-tool/tests/ |
D | ndk_toolchain.py | 52 def get_gcc_dir(ndk_dir, arch, host): argument 53 return os.path.join(ndk_dir, 'toolchains', arch, 'prebuilt', host)
|
/development/vndk/tools/header-checker/header-abi-linker/src/ |
D | header_abi_linker.cpp | 56 static llvm::cl::opt<std::string> arch( variable 84 const std::string &arch, in HeaderAbiLinker() argument 88 out_dump_name_(linked_dump), arch_(arch), api_(api) {}; in HeaderAbiLinker() 417 so_file, linked_dump, arch, api); in main()
|
/development/vndk/tools/vtable-dumper/tests/ |
D | test_vndk_vtable_dumper.py | 49 def get_prebuilts_gcc(android_build_top, arch, gcc_version): argument 52 get_prebuilts_host(), arch, gcc_version)
|
/development/vndk/tools/header-checker/merge-abi-diff/src/ |
D | merge_abi_diff.cpp | 105 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
|