Lines Matching refs:tmp_pathspec
5983 char *tmp_pathspec;
6050 tmp_pathspec = find_executable (argv[0]);
6051 if (tmp_pathspec == NULL)
6055 tmp_pathspec);
6057 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
6061 XFREE (tmp_pathspec);
6068 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
6070 actual_cwrapper_name = tmp_pathspec;
6071 tmp_pathspec = 0;
6076 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
6078 target_name = tmp_pathspec;
6079 tmp_pathspec = 0;
6097 tmp_pathspec = xstrdup (newargz[0]);
6103 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
6104 XFREE (tmp_pathspec);
6105 tmp_pathspec = NULL;
6364 char *tmp_pathspec = xstrdup (pathspec);
6367 while (strlen (tmp_pathspec) && !has_symlinks)
6371 tmp_pathspec);
6372 if (lstat (tmp_pathspec, &s) == 0)
6381 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6382 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6384 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6395 tmp_pathspec, nonnull (strerror (errno)));
6398 XFREE (tmp_pathspec);
6405 tmp_pathspec = realpath (pathspec, buf);
6406 if (tmp_pathspec == 0)
6411 return xstrdup (tmp_pathspec);