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

/external/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.h163 HChar soname[16]; /* first 15 chars of name (asciiz) */ member in struct:__anon13965
/external/elfutils/libdwfl/
H A Ddwfl_segment_report_module.c525 void *soname = NULL; local
536 && ! read_portion (&soname, &soname_size,
538 name = soname;
559 finish_portion (&soname, &soname_size);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c680 /* mmap the object file to look for di->soname and di->text_bias
704 // Read di->soname from LC_ID_DYLIB if present,
730 UChar *soname = VG_(strrchr)(dylibname, '/'); local
731 if (!soname) soname = dylibname;
732 else soname++;
733 di->soname = ML_(dinfo_strdup)("di.readmacho.dylibname",
734 soname);
739 UChar *soname = VG_(strrchr)(dylinkername, '/'); local
740 if (!soname) sonam
[all...]
H A Dpriv_storage.h518 /* The file's soname. FIXME: ensure this is always allocated in
520 UChar* soname; member in struct:_DebugInfo
/external/valgrind/main/coregrind/
H A Dm_redir.c82 set of functions. The set of functions is specified by a (soname
110 Specs - a set of (soname pattern, fnname pattern) -> redir addr
128 sopatt = spec.soname pattern
215 both the "from" soname and function name may contain wildcards, the
229 HChar* from_sopatt; /* from soname pattern */
310 static void handle_maybe_load_notifier( const UChar* soname,
606 /* First figure out which of the specs match the seginfo's soname.
640 continue; /* soname doesn't match */
689 "%sin an object with soname matching: %s\n", v, sp->from_sopatt);
693 "%ssymbols from the object with soname
1271 handle_maybe_load_notifier( const UChar* soname, HChar* symbol, Addr addr ) argument
[all...]
/external/elfutils/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.c4266 const UChar* soname; local
4272 soname = VG_(DebugInfo_get_soname)(dinfo);
4273 tl_assert(soname);
4274 if (0) VG_(printf)("%s\n", soname);
4277 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_3)) return True;
4278 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_2)) return True;
4279 if (VG_STREQ(soname, VG_U_LD_LINUX_X86_64_SO_2)) return True;
4280 if (VG_STREQ(soname, VG_U_LD64_SO_1)) return True;
4281 if (VG_STREQ(soname, VG_U_LD_SO_1)) return True;
4283 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 406 milliseconds