Searched defs:soname (Results 1 - 14 of 14) 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/include/
H A Dpub_tool_debuginfo.h198 HChar soname[16]; /* first 15 chars of name (asciiz) */ member in struct:__anon16372
/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/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_dumper.cc145 const void* elf_base, char* soname, size_t soname_size) {
179 my_strlcpy(soname, str, maxsize < soname_size ? maxsize : soname_size);
190 // |soname| and return true. The size of the buffer is |soname_size|.
193 const MappingInfo& mapping, char* soname, size_t soname_size) {
216 return ElfFileSoNameFromMappedFile(mapped_file.data(), soname, soname_size);
144 ElfFileSoNameFromMappedFile( const void* elf_base, char* soname, size_t soname_size) argument
192 ElfFileSoName( const MappingInfo& mapping, char* soname, size_t soname_size) argument
/external/valgrind/coregrind/m_debuginfo/
H A Dreadmacho.c712 /* 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) sonam
[all...]
H A Dpriv_storage.h636 /* The file's soname. */
637 HChar* soname; member in struct:_DebugInfo
/external/elfutils/src/libdwfl/
H A Ddwfl_segment_report_module.c776 void *soname = NULL; local
802 && ! read_portion (&soname, &soname_size,
804 name = soname;
831 finish_portion (&soname, &soname_size);
/external/valgrind/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,
764 /* First figure out which of the specs match the seginfo's soname.
798 continue; /* soname doesn't match */
859 "%sin an object with soname matching: %s\n", v, sp->from_sopatt);
863 "%ssymbols from the object with soname
1551 handle_maybe_load_notifier( const HChar* soname, const HChar* symbol, Addr addr ) argument
[all...]
/external/elfutils/src/src/
H A Dld.h84 const char *soname; member in struct:usedfiles
1050 const char *soname; member in struct:ld_state
/external/valgrind/helgrind/
H A Dhg_main.c4467 const HChar* soname; local
4473 soname = VG_(DebugInfo_get_soname)(dinfo);
4474 tl_assert(soname);
4475 if (0) VG_(printf)("%s\n", soname);
4478 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_3)) return True;
4479 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_2)) return True;
4480 if (VG_STREQ(soname, VG_U_LD_LINUX_X86_64_SO_2)) return True;
4481 if (VG_STREQ(soname, VG_U_LD64_SO_1)) return True;
4482 if (VG_STREQ(soname, VG_U_LD64_SO_2)) return True;
4483 if (VG_STREQ(soname, VG_U_LD_SO_
[all...]
/external/valgrind/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 1405 milliseconds