Home
last modified time | relevance | path

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

/system/bt/build/toolchain/gcc/
DBUILD.gn54 soname = "{{target_output_name}}{{output_extension}}" # e.g. "libfoo.so".
55 rspfile = soname + ".rsp"
58 "$cxx -shared {{ldflags}} -o $soname -Wl,-soname=$soname @$rspfile"
61 description = "SOLINK $soname"
69 soname,
71 link_output = soname
72 depend_output = soname
/system/bt/build/toolchain/clang/
DBUILD.gn73 soname = "{{target_output_name}}{{output_extension}}" # e.g. "libfoo.so".
74 rspfile = soname + ".rsp"
77 "$clangxx -shared {{ldflags}} -o $soname -Wl,-soname=$soname @$rspfile"
80 description = "SOLINK $soname"
88 soname,
90 link_output = soname
91 depend_output = soname
/system/core/libunwindstack/
DElfInterface.h85 bool GetSonameWithTemplate(std::string* soname);
122 bool GetSoname(std::string* soname) override { in GetSoname() argument
123 return ElfInterface::GetSonameWithTemplate<Elf32_Dyn>(soname); in GetSoname()
143 bool GetSoname(std::string* soname) override { in GetSoname() argument
144 return ElfInterface::GetSonameWithTemplate<Elf64_Dyn>(soname); in GetSoname()
DElfInterface.cpp161 bool ElfInterface::GetSonameWithTemplate(std::string* soname) { in GetSonameWithTemplate() argument
166 *soname = soname_; in GetSonameWithTemplate()
204 *soname = soname_; in GetSonameWithTemplate()
/system/core/libnativeloader/
Dnative_loader.cpp288 for (const auto& soname : sonames) { in Initialize() local
289 LOG_ALWAYS_FATAL_IF(dlopen(soname.c_str(), RTLD_NOW | RTLD_NODELETE) == nullptr, in Initialize()
291 soname.c_str(), dlerror()); in Initialize()