Home
last modified time | relevance | path

Searched refs:soname (Results 1 – 9 of 9) 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/unwinding/libunwindstack/tools/
Dunwind_symbols.cpp68 std::string soname(elf.GetSoname()); in main() local
69 if (!soname.empty()) { in main()
70 printf("Soname: %s\n\n", soname.c_str()); in main()
Dunwind_info.cpp115 std::string soname(elf.GetSoname()); in GetElfInfo() local
116 if (!soname.empty()) { in GetElfInfo()
117 printf("Soname: %s\n", soname.c_str()); in GetElfInfo()
Dunwind_reg_info.cpp188 std::string soname(elf.GetSoname()); in GetInfo() local
189 if (!soname.empty()) { in GetInfo()
190 printf("Soname: %s\n\n", soname.c_str()); in GetInfo()
/system/linkerconfig/contents/tests/configuration/
Dvndk_test.cc37 std::string Search(const Namespace& ns, std::string_view soname, fsmap fs) { in Search() argument
41 if (std::find(std::begin(libs), std::end(libs), soname) != std::end(libs)) { in Search()
/system/unwinding/libunwindstack/tests/
DElfFake.h89 void FakeSetSoname(const char* soname) { fake_soname_ = soname; } in FakeSetSoname() argument
/system/unwinding/libunwindstack/
DUnwinder.cpp115 std::string soname = elf->GetSoname(); in FillInFrame() local
116 if (!soname.empty()) { in FillInFrame()
120 map_with_soname += soname; in FillInFrame()
DAndroidVersions.md77 * Add support for displaying the soname from an apk frame. Previously,
79 in the apk has set a soname, the map name will be `app.apk!libexample.so`