Lines Matching defs:path

35  *		alternative path (dldump(3dl) image) processed.
76 enteralt(Crle_desc *crle, const char *path, const char *file, Half flags,
88 if (strcmp(path, obj->o_path))
116 * If we're overriding an existing alternative with the real path, free
407 * Assign directory and directory id, and any real (full) path
446 enternoexistfile(Crle_desc *crle, const char *path, const char *file,
456 if ((rent = get_hash(crle->c_strtbl, (Addr)path, 0,
469 if (_enterfile(crle, path, 0, rent, 0, dent, obj) == 0)
473 if ((obj->o_path = strdup(path)) == NULL)
481 off = file - path;
597 * If the original path name is not equivalent to the real path name,
598 * then we had an alias (typically it's a symlink). Add the path name
648 inspect_file(Crle_desc *crle, const char *path, const char *file, Half flags,
675 if ((ent = enterfile(crle, path, file, flags, dent,
686 if (enteralt(crle, path, file, flags, obj) == 0)
695 if ((fd = open(path, O_RDONLY, 0)) == -1) {
699 crle->c_name, path, strerror(err));
710 crle->c_name, path, elf_errmsg(-1));
721 crle->c_name, path);
757 crle->c_name, path);
770 crle->c_name, crle->c_app, path);
779 if ((ent = enterfile(crle, path, file, flags, dent, status)) == NULL) {
795 if (enteralt(crle, path, file, flags, obj) == 0) {
818 ent = get_hash(crle->c_strtbl, (Addr)path, 0,
831 if (depend(crle, path, flags, &ehdr)) {
853 char path[PATH_MAX], * dst;
876 for (dst = path, dst--, src = name; *src; src++)
902 * Complete full pathname, and reassign file to the new path.
908 if (stat(path, &_status) == -1)
914 if (inspect_file(crle, path, file, flags, ent, &_status, 0)) {