Lines Matching refs:tmp_pathspec
5990 char *tmp_pathspec;
6057 tmp_pathspec = find_executable (argv[0]);
6058 if (tmp_pathspec == NULL)
6062 tmp_pathspec);
6064 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
6068 XFREE (tmp_pathspec);
6075 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
6077 actual_cwrapper_name = tmp_pathspec;
6078 tmp_pathspec = 0;
6083 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
6085 target_name = tmp_pathspec;
6086 tmp_pathspec = 0;
6104 tmp_pathspec = xstrdup (newargz[0]);
6110 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
6111 XFREE (tmp_pathspec);
6112 tmp_pathspec = NULL;
6371 char *tmp_pathspec = xstrdup (pathspec);
6374 while (strlen (tmp_pathspec) && !has_symlinks)
6378 tmp_pathspec);
6379 if (lstat (tmp_pathspec, &s) == 0)
6388 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6389 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6391 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6402 tmp_pathspec, nonnull (strerror (errno)));
6405 XFREE (tmp_pathspec);
6412 tmp_pathspec = realpath (pathspec, buf);
6413 if (tmp_pathspec == 0)
6418 return xstrdup (tmp_pathspec);