Searched refs:lib_name (Results 1 – 11 of 11) sorted by relevance
/development/vndk/tools/header-checker/utils/ |
D | utils.py | 285 for lib_name in libs: 286 if not (lib_name in lsdump_paths and 287 arch_cpu in lsdump_paths[lib_name]): 289 (lib_name, arch_cpu)) 290 result.extend(lsdump_paths[lib_name][arch_cpu].items()) 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] 302 output_name = os.path.join(tmp, lib_name) + '.abidiff'
|
D | create_reference_dumps.py | 192 if any(lib_name.endswith(SOURCE_ABI_DUMP_EXT_END) or 193 lib_name.endswith(SO_EXT) for lib_name in args.libs):
|
/development/vndk/tools/header-checker/src/repr/protobuf/proto/ |
D | abi_diff.proto | 80 optional string lib_name = 1; field 118 optional string lib_name = 1; field
|
/development/vndk/tools/header-checker/src/diff/ |
D | header_abi_diff.cpp | 45 static llvm::cl::opt<std::string> lib_name( variable 208 HeaderAbiDiff judge(lib_name, arch, old_dump, new_dump, compatibility_report, in main() 252 << lib_name in main()
|
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()
|
/development/vndk/tools/definition-tool/tests/ |
D | test_elfdump.py | 127 def _test_libtest(self, expected_file_name, lib_name): argument 128 lib_file = os.path.join(self.test_dir, lib_name)
|
/development/vndk/snapshot/ |
D | check_gpl_license.py | 185 lib_name = os.path.splitext( 187 gpl_projects.append(lib_name)
|
/development/scripts/ |
D | stack_core.py | 389 lib_name, lib = self.GetLibFromApk(apk, so_offset) 392 lib_name = None 406 if lib_name: 407 source_location += "(" + lib_name + ")"
|
D | cargo2android.py | 607 lib_name = groups.group(1) 609 lib_name = re.sub(' .*$', '', lib) 612 rust_libs += ' "' + altered_name('lib' + lib_name) + '",\n' 614 so_libs.append(lib_name) 616 rust_libs += ' // ERROR: unknown type of lib ' + lib_name + '\n' 942 lib_name = file_base_name(lib.lib) 943 if lib_name not in dumped_libs: 944 dumped_libs.add(lib_name)
|
/development/vndk/tools/header-checker/src/diff_merge/ |
D | merge_abi_diff.cpp | 98 added_tu_diff->set_lib_name(diff_tu.lib_name()); in MergeDiffReports()
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 1587 lib_name = os.path.basename(path) 1588 return lib_name in self._lib_names
|