HomeSort by relevance Sort by last modified time
    Searched defs:soname (Results 1 - 24 of 24) sorted by null

  /external/v8/test/cctest/
test-version.cc 40 bool candidate, const char* soname) {
46 Version::soname_ = soname;
60 // Test version without specific SONAME.
67 // Test version with specific SONAME.
68 const char* soname = "libv8.so.1"; local
69 SetVersion(major, minor, build, patch, candidate, soname);
73 CHECK_EQ(0, strcmp(soname, soname_str.start()));
  /bionic/libc/malloc_debug/
backtrace.cpp 150 const char* soname = (entry != nullptr) ? entry->name.c_str() : info.dli_fname; local
151 if (soname == nullptr) {
152 soname = "<unknown>";
161 rel_pc, soname, best_name, frames[frame_num] - offset);
165 " #%02zd pc %" PAD_PTR " %s\n", frame_num, rel_pc, soname);
  /external/valgrind/include/
pub_tool_debuginfo.h 199 HChar soname[16]; /* first 15 chars of name (asciiz) */ member in struct:__anon26801
  /external/ltrace/
library.h 163 const char *soname; member in struct:library
187 /* Set library soname. Frees the old name if necessary. */
ltrace-elf.h 58 const char *soname; member in struct:ltelf
library.c 288 lib->soname = NULL;
330 const char *soname = NULL; local
335 if (strdup_if(&soname, lib->soname, lib->own_soname) < 0
338 free((char *)soname);
343 library_set_soname(retp, soname, lib->own_soname);
432 free((char *)lib->soname);
433 lib->soname = new_name;
492 if (name == lib->soname
493 || strcmp(lib->soname, (char *)name) == 0
    [all...]
ltrace-elf.c 707 lte->soname = lte->dynstr + soname_offset;
995 name, lib->soname, strerror(errno));
1002 name, lib->soname, strerror(errno));
1033 "for tracing.\n", name, lib->soname);
1120 debug(DEBUG_FUNCTION, "-l matches %s", lib->soname);
1199 /* Note that we set soname and pathname as soon as they are
1211 if (lte.soname != NULL) {
1212 char *soname = strdup(lte.soname); local
1213 if (soname == NULL
1217 const char *soname = rindex(lib->pathname, '\/'); local
    [all...]
  /bionic/tests/
dlfcn_test.cpp 189 static const char* soname = "libdlext_test_soname.so"; local
191 // 1. Make sure there is no library with soname in default search path
192 void* handle = dlopen(soname, RTLD_NOW);
199 // 3. Find library by soname
200 void* handle_soname = dlopen(soname, RTLD_NOW | RTLD_NOLOAD);
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testshared/
shared_test.go 34 var soname = "libruntime,sync-atomic.so" var
160 _, err := os.Stat(filepath.Join(gorootInstallDir, soname))
180 if contents != soname {
312 AssertIsLinkedTo(t, "./bin/trivial", soname)
327 AssertIsLinkedTo(t, filepath.Join(gopathInstallDir, "libdep.so"), soname)
329 AssertIsLinkedTo(t, "./bin/exe", soname)
397 if note.desc != soname {
  /prebuilts/go/linux-x86/misc/cgo/testshared/
shared_test.go 34 var soname = "libruntime,sync-atomic.so" var
160 _, err := os.Stat(filepath.Join(gorootInstallDir, soname))
180 if contents != soname {
312 AssertIsLinkedTo(t, "./bin/trivial", soname)
327 AssertIsLinkedTo(t, filepath.Join(gopathInstallDir, "libdep.so"), soname)
329 AssertIsLinkedTo(t, "./bin/exe", soname)
397 if note.desc != soname {
  /external/elfutils/libdwfl/
dwfl_segment_report_module.c 796 void *soname = NULL; local
822 && ! read_portion (&soname, &soname_size,
824 name = soname;
851 finish_portion (&soname, &soname_size);
  /external/valgrind/coregrind/m_debuginfo/
readmacho.c 712 /* mmap the object file to look for di->soname and di->text_bias
750 // Read di->soname from LC_ID_DYLIB if present,
787 HChar* soname = VG_(strrchr)(dylibname, '/'); local
788 if (!soname) soname = dylibname;
789 else soname++;
790 di->soname = ML_(dinfo_strdup)("di.readmacho.dylibname",
791 soname);
801 HChar* soname = VG_(strrchr)(dylinkername, '/'); local
802 if (!soname) soname = dylinkername
    [all...]
priv_storage.h 636 /* The file's soname. */
637 HChar* soname; member in struct:_DebugInfo
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
dynobj.h 49 soname() const function in class:gold::Dynobj
object.cc 2903 const char* soname = dynobj->soname(); local
    [all...]
  /toolchain/binutils/binutils-2.25/ld/
ld.h 184 /* Name to give runtime libary from the -soname argument. */
185 char *soname; member in struct:__anon76212
ldlang.h 497 const char *soname; member in struct:asneeded_minfo
  /frameworks/compile/mclinker/include/mcld/
GeneralOptions.h 98 const std::string& soname() const { return m_SOName; } function in class:mcld::GeneralOptions::HashStyle
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 1033 String soname = libname; local
1037 String soname = libfile.GetLibName(); local
1038 if (soname.empty())
1039 soname = libname;
1040 else if (soname != libname) {
1042 _T("WARNING: Library has invalid soname ('%s'): %s\n"),
1043 soname.c_str(),
1050 LOG(_T("%s depends on:"), soname.c_str());
1059 deps[soname] = node;
    [all...]
  /external/elfutils/src/
ld.h 83 the SONAME. If it is missing it's normally the fname above. */
84 const char *soname; member in struct:usedfiles
85 /* Handle for the SONAME in the string table. */
1049 /* If DSO is generated, this is the SONAME. */
1050 const char *soname; member in struct:ld_state
    [all...]
  /external/valgrind/helgrind/
hg_main.c 4591 const HChar* soname; local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
elf64-ia64-vms.c 2824 char *soname; local
    [all...]
elflink.c 3472 const char *soname = NULL; local
4425 const char *soname = elf_dt_name (abfd); local
    [all...]
  /external/valgrind/perf/
tinycc.c 20219 const char *name, *soname, *p; local
    [all...]

Completed in 946 milliseconds