Home | History | Annotate | Download | only in dist

Lines Matching refs:tmp_pathspec

5982   char *tmp_pathspec;
6049 tmp_pathspec = find_executable (argv[0]);
6050 if (tmp_pathspec == NULL)
6054 tmp_pathspec);
6056 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
6060 XFREE (tmp_pathspec);
6067 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
6069 actual_cwrapper_name = tmp_pathspec;
6070 tmp_pathspec = 0;
6075 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
6077 target_name = tmp_pathspec;
6078 tmp_pathspec = 0;
6096 tmp_pathspec = xstrdup (newargz[0]);
6102 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
6103 XFREE (tmp_pathspec);
6104 tmp_pathspec = NULL;
6363 char *tmp_pathspec = xstrdup (pathspec);
6366 while (strlen (tmp_pathspec) && !has_symlinks)
6370 tmp_pathspec);
6371 if (lstat (tmp_pathspec, &s) == 0)
6380 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6381 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6383 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6394 tmp_pathspec, nonnull (strerror (errno)));
6397 XFREE (tmp_pathspec);
6404 tmp_pathspec = realpath (pathspec, buf);
6405 if (tmp_pathspec == 0)
6410 return xstrdup (tmp_pathspec);