Lines Matching refs:tmp_pathspec
4355 char *tmp_pathspec;
4422 tmp_pathspec = find_executable (argv[0]);
4423 if (tmp_pathspec == NULL)
4427 tmp_pathspec);
4429 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
4433 XFREE (tmp_pathspec);
4440 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
4442 actual_cwrapper_name = tmp_pathspec;
4443 tmp_pathspec = 0;
4448 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
4450 target_name = tmp_pathspec;
4451 tmp_pathspec = 0;
4469 tmp_pathspec = xstrdup (newargz[0]);
4475 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
4476 XFREE (tmp_pathspec);
4477 tmp_pathspec = NULL;
4736 char *tmp_pathspec = xstrdup (pathspec);
4739 while (strlen (tmp_pathspec) && !has_symlinks)
4743 tmp_pathspec);
4744 if (lstat (tmp_pathspec, &s) == 0)
4753 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
4754 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
4756 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
4767 tmp_pathspec, nonnull (strerror (errno)));
4770 XFREE (tmp_pathspec);
4777 tmp_pathspec = realpath (pathspec, buf);
4778 if (tmp_pathspec == 0)
4783 return xstrdup (tmp_pathspec);