Home | History | Annotate | Download | only in ltrace

Lines Matching defs:soname

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);
1213 if (soname == NULL)
1215 library_set_soname(lib, soname, 1);
1217 const char *soname = rindex(lib->pathname, '/');
1218 if (soname != NULL)
1219 soname += 1;
1221 soname = lib->pathname;
1222 library_set_soname(lib, soname, 0);