Lines Matching refs:tmp_pathspec
6131 char *tmp_pathspec;
6198 tmp_pathspec = find_executable (argv[0]);
6199 if (tmp_pathspec == NULL)
6203 tmp_pathspec);
6205 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
6209 XFREE (tmp_pathspec);
6216 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
6218 actual_cwrapper_name = tmp_pathspec;
6219 tmp_pathspec = 0;
6224 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
6226 target_name = tmp_pathspec;
6227 tmp_pathspec = 0;
6245 tmp_pathspec = xstrdup (newargz[0]);
6251 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
6252 XFREE (tmp_pathspec);
6253 tmp_pathspec = NULL;
6512 char *tmp_pathspec = xstrdup (pathspec);
6515 while (strlen (tmp_pathspec) && !has_symlinks)
6519 tmp_pathspec);
6520 if (lstat (tmp_pathspec, &s) == 0)
6529 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6530 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6532 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6543 tmp_pathspec, nonnull (strerror (errno)));
6546 XFREE (tmp_pathspec);
6553 tmp_pathspec = realpath (pathspec, buf);
6554 if (tmp_pathspec == 0)
6559 return xstrdup (tmp_pathspec);