Home | History | Annotate | Download | only in interface

Lines Matching refs:tmp_pathspec

5825   char *tmp_pathspec;
5892 tmp_pathspec = find_executable (argv[0]);
5893 if (tmp_pathspec == NULL)
5897 tmp_pathspec);
5899 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
5903 XFREE (tmp_pathspec);
5910 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
5912 actual_cwrapper_name = tmp_pathspec;
5913 tmp_pathspec = 0;
5918 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
5920 target_name = tmp_pathspec;
5921 tmp_pathspec = 0;
5939 tmp_pathspec = xstrdup (newargz[0]);
5945 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
5946 XFREE (tmp_pathspec);
5947 tmp_pathspec = NULL;
6206 char *tmp_pathspec = xstrdup (pathspec);
6209 while (strlen (tmp_pathspec) && !has_symlinks)
6213 tmp_pathspec);
6214 if (lstat (tmp_pathspec, &s) == 0)
6223 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6224 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6226 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6237 tmp_pathspec, nonnull (strerror (errno)));
6240 XFREE (tmp_pathspec);
6247 tmp_pathspec = realpath (pathspec, buf);
6248 if (tmp_pathspec == 0)
6253 return xstrdup (tmp_pathspec);