Lines Matching full:pathname
71 /* Pathname support.
101 Relocation simply replaces a pathname starting with the original prefix
102 by the corresponding pathname with the current prefix instead. Both
139 Relocation simply replaces a pathname starting with the original prefix
140 by the corresponding pathname with the current prefix instead. Both
165 file, and the current pathname of this file. Returns NULL upon failure. */
249 /* The last pathname component was the same. opi and cpi now point
280 /* Full pathname of shared library, or NULL. */
285 /* Determine the full pathname of the shared library when it is loaded. */
364 /* Return the full pathname of the current shared library.
383 /* Returns the pathname, relocated according to the current installation
386 relocate (const char *pathname)
419 even for DOS-like filesystems, because the pathname argument was
423 && strncmp (pathname, orig_prefix, orig_prefix_len) == 0)
425 if (pathname[orig_prefix_len] == '\0')
426 /* pathname equals orig_prefix. */
428 if (ISSLASH (pathname[orig_prefix_len]))
430 /* pathname starts with orig_prefix. */
431 const char *pathname_tail = &pathname[orig_prefix_len];
446 return pathname;