Home | History | Annotate | Download | only in cpp

Lines Matching refs:tmp_pathspec

3868   char *tmp_pathspec;
3902 tmp_pathspec = find_executable (argv[0]);
3903 if (tmp_pathspec == NULL)
3906 tmp_pathspec));
3908 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
3911 XFREE (tmp_pathspec);
3918 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
3920 actual_cwrapper_name = tmp_pathspec;
3921 tmp_pathspec = 0;
3926 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
3928 target_name = tmp_pathspec;
3929 tmp_pathspec = 0;
3946 tmp_pathspec = xstrdup (newargz[0]);
3952 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
3953 XFREE (tmp_pathspec);
3954 tmp_pathspec = NULL;
4269 char *tmp_pathspec = xstrdup (pathspec);
4272 while (strlen (tmp_pathspec) && !has_symlinks)
4275 tmp_pathspec));
4276 if (lstat (tmp_pathspec, &s) == 0)
4285 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
4286 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
4288 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
4298 lt_fatal ("Error accessing file %s (%s)", tmp_pathspec, errstr);
4301 XFREE (tmp_pathspec);
4308 tmp_pathspec = realpath (pathspec, buf);
4309 if (tmp_pathspec == 0)
4313 return xstrdup (tmp_pathspec);