Home | History | Annotate | Download | only in dist

Lines Matching refs:tmp_pathspec

5736   char *tmp_pathspec;
5803 tmp_pathspec = find_executable (argv[0]);
5804 if (tmp_pathspec == NULL)
5808 tmp_pathspec);
5810 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
5814 XFREE (tmp_pathspec);
5821 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
5823 actual_cwrapper_name = tmp_pathspec;
5824 tmp_pathspec = 0;
5829 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
5831 target_name = tmp_pathspec;
5832 tmp_pathspec = 0;
5850 tmp_pathspec = xstrdup (newargz[0]);
5856 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
5857 XFREE (tmp_pathspec);
5858 tmp_pathspec = NULL;
6117 char *tmp_pathspec = xstrdup (pathspec);
6120 while (strlen (tmp_pathspec) && !has_symlinks)
6124 tmp_pathspec);
6125 if (lstat (tmp_pathspec, &s) == 0)
6134 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6135 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6137 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6148 tmp_pathspec, nonnull (strerror (errno)));
6151 XFREE (tmp_pathspec);
6158 tmp_pathspec = realpath (pathspec, buf);
6159 if (tmp_pathspec == 0)
6164 return xstrdup (tmp_pathspec);