Home
last modified time | relevance | path

Searched refs:lib_name (Results 1 – 5 of 5) sorted by relevance

/system/apex/tools/
Dapexer_with_DCLA_preprocessing.py70 lib_name = os.path.basename(lib_file)
73 shutil.move(lib_file, os.path.join(tmp_dir, lib_name))
75 shutil.move(os.path.join(tmp_dir, lib_name),
76 os.path.join(dest_dir, lib_name))
Dapexer_with_trim_preprocessing.py71 lib_name = os.path.basename(lib_relative_path)
72 libs_trimmed.add(lib_name)
75 link = os.path.join('/apex/sharedlibs', lib_relative_path, digest, lib_name)
/system/linkerconfig/modules/include/linkerconfig/
Dlink.h39 void AddSharedLib(const std::string& lib_name, Args&&... lib_names);
67 void Link::AddSharedLib(const std::string& lib_name, Args&&... lib_names) { in AddSharedLib() argument
69 shared_libs_.push_back(lib_name); in AddSharedLib()
/system/extras/simpleperf/scripts/
Dreport_html.py440 def get_lib_id(self, lib_name: str) -> Optional[int]:
441 return self.lib_name_to_id.get(lib_name)
443 def add_lib(self, lib_name: str, build_id: str) -> int:
446 self.libs.append(LibInfo(lib_name, build_id))
447 self.lib_name_to_id[lib_name] = lib_id
1077 def filter_lib(lib_name: str) -> bool:
1081 if binary in lib_name:
/system/extras/simpleperf/scripts/test/
Dreport_html_test.py163 lib_name = record_data['libList'][lib['libId']]