Searched refs:soname (Results 1 – 9 of 9) sorted by relevance
/system/bt/build/toolchain/gcc/ |
D | BUILD.gn | 54 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/ |
D | BUILD.gn | 73 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/ |
D | unwind_symbols.cpp | 68 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()
|
D | unwind_info.cpp | 115 std::string soname(elf.GetSoname()); in GetElfInfo() local 116 if (!soname.empty()) { in GetElfInfo() 117 printf("Soname: %s\n", soname.c_str()); in GetElfInfo()
|
D | unwind_reg_info.cpp | 188 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/ |
D | vndk_test.cc | 37 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/ |
D | ElfFake.h | 89 void FakeSetSoname(const char* soname) { fake_soname_ = soname; } in FakeSetSoname() argument
|
/system/unwinding/libunwindstack/ |
D | Unwinder.cpp | 115 std::string soname = elf->GetSoname(); in FillInFrame() local 116 if (!soname.empty()) { in FillInFrame() 120 map_with_soname += soname; in FillInFrame()
|
D | AndroidVersions.md | 77 * 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`
|