Lines Matching defs:pathname
72 char pathname[MAXPATHLEN];
78 if (pathnamelen >= sizeof(pathname))
90 memcpy(pathname, dir, dirlen);
91 pathname[dirlen] = '/';
92 memcpy(pathname + dirlen + 1, name, namelen);
93 pathname[pathnamelen] = '\0';
95 dbg((" Trying \"%s\"", pathname));
96 obj = _rtld_load_object(pathname, flags);
102 path->sp_path = xstrdup(pathname);
110 * Find the library with the given name, and return its full pathname.
123 const char *pathname;
127 if (strchr(name, '/') != NULL) { /* Hard coded pathname */
130 "absolute pathname required for shared object \"%s\"",
134 pathname = name;
188 obj = _rtld_load_object(pathname, flags);