Home | History | Annotate | Download | only in build-aux

Lines Matching refs:tmp_pathspec

5948   char *tmp_pathspec;
6015 tmp_pathspec = find_executable (argv[0]);
6016 if (tmp_pathspec == NULL)
6020 tmp_pathspec);
6022 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
6026 XFREE (tmp_pathspec);
6033 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
6035 actual_cwrapper_name = tmp_pathspec;
6036 tmp_pathspec = 0;
6041 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
6043 target_name = tmp_pathspec;
6044 tmp_pathspec = 0;
6062 tmp_pathspec = xstrdup (newargz[0]);
6068 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
6069 XFREE (tmp_pathspec);
6070 tmp_pathspec = NULL;
6329 char *tmp_pathspec = xstrdup (pathspec);
6332 while (strlen (tmp_pathspec) && !has_symlinks)
6336 tmp_pathspec);
6337 if (lstat (tmp_pathspec, &s) == 0)
6346 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
6347 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6349 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
6360 tmp_pathspec, nonnull (strerror (errno)));
6363 XFREE (tmp_pathspec);
6370 tmp_pathspec = realpath (pathspec, buf);
6371 if (tmp_pathspec == 0)
6376 return xstrdup (tmp_pathspec);