Searched defs:soname (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/v8/test/cctest/
H A Dtest-version.cc40 bool candidate, const char* soname) {
46 Version::soname_ = soname;
67 const char* soname = "libv8.so.1"; local
68 SetVersion(major, minor, build, patch, candidate, soname);
72 CHECK_EQ(soname, soname_str.start());
39 SetVersion(int major, int minor, int build, int patch, bool candidate, const char* soname) argument
/external/valgrind/main/include/
H A Dpub_tool_debuginfo.h165 HChar soname[16]; /* first 15 chars of name (asciiz) */ member in struct:__anon32000
/external/ltrace/
H A Dlibrary.h163 const char *soname; member in struct:library
187 /* Set library soname. Frees the old name if necessary. */
H A Dltrace-elf.h58 const char *soname; member in struct:ltelf
H A Dlibrary.c288 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, (cha
[all...]
H A Dltrace-elf.c707 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
1217 const char *soname = rindex(lib->pathname, '/'); local
[all...]
/external/elfutils/0.153/libdwfl/
H A Ddwfl_segment_report_module.c536 void *soname = NULL; local
562 && ! read_portion (&soname, &soname_size,
564 name = soname;
585 finish_portion (&soname, &soname_size);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c706 /* mmap the object file to look for di->soname and di->text_bias
744 // Read di->soname from LC_ID_DYLIB if present,
781 HChar* soname = VG_(strrchr)(dylibname, '/'); local
782 if (!soname) soname = dylibname;
783 else soname++;
784 di->soname = ML_(dinfo_strdup)("di.readmacho.dylibname",
785 soname);
795 HChar* soname = VG_(strrchr)(dylinkername, '/'); local
796 if (!soname) sonam
[all...]
H A Dpriv_storage.h577 /* The file's soname. */
578 HChar* soname; member in struct:_DebugInfo
/external/valgrind/main/coregrind/
H A Dm_redir.c85 set of functions. The set of functions is specified by a (soname
113 Specs - a set of (soname pattern, fnname pattern) -> redir addr
131 sopatt = spec.soname pattern
218 both the "from" soname and function name may contain wildcards, the
232 HChar* from_sopatt; /* from soname pattern */
313 static void handle_maybe_load_notifier( const HChar* soname,
739 /* First figure out which of the specs match the seginfo's soname.
773 continue; /* soname doesn't match */
822 "%sin an object with soname matching: %s\n", v, sp->from_sopatt);
826 "%ssymbols from the object with soname
1465 handle_maybe_load_notifier( const HChar* soname, HChar* symbol, Addr addr ) argument
[all...]
/external/elfutils/0.153/src/
H A Dld.h92 const char *soname; member in struct:usedfiles
1058 const char *soname; member in struct:ld_state
/external/valgrind/main/helgrind/
H A Dhg_main.c4454 const HChar* soname; local
4460 soname = VG_(DebugInfo_get_soname)(dinfo);
4461 tl_assert(soname);
4462 if (0) VG_(printf)("%s\n", soname);
4465 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_3)) return True;
4466 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_2)) return True;
4467 if (VG_STREQ(soname, VG_U_LD_LINUX_X86_64_SO_2)) return True;
4468 if (VG_STREQ(soname, VG_U_LD64_SO_1)) return True;
4469 if (VG_STREQ(soname, VG_U_LD_SO_1)) return True;
4471 if (VG_STREQ(soname, VG_U_DYL
[all...]
/external/valgrind/main/perf/
H A Dtinycc.c20221 const char *name, *soname, *p;
20260 soname = filename;
20261 p = strrchr(soname, '/');
20263 soname = p + 1;
20267 soname = dynstr + dt->d_un.d_val;
20274 if (!strcmp(soname, dllref->name)) {
20283 // printf("loading dll '%s'\n", soname);
20286 dllref = tcc_malloc(sizeof(DLLReference) + strlen(soname));
20288 strcpy(dllref->name, soname);
20219 const char *name, *soname, *p; local

Completed in 1901 milliseconds