Home | History | Annotate | Download | only in libusb

Lines Matching refs:tmp_pathspec

3367   char *tmp_pathspec;
3401 tmp_pathspec = find_executable (argv[0]);
3402 if (tmp_pathspec == NULL)
3405 tmp_pathspec));
3407 actual_cwrapper_path = chase_symlinks (tmp_pathspec);
3410 XFREE (tmp_pathspec);
3417 tmp_pathspec = lt_extend_str (actual_cwrapper_name, ".exe", 1);
3419 actual_cwrapper_name = tmp_pathspec;
3420 tmp_pathspec = 0;
3425 tmp_pathspec = lt_extend_str (target_name, ".exe", 1);
3427 target_name = tmp_pathspec;
3428 tmp_pathspec = 0;
3445 tmp_pathspec = xstrdup (newargz[0]);
3451 lt_argv_zero = lt_extend_str (tmp_pathspec, target_name, 1);
3452 XFREE (tmp_pathspec);
3453 tmp_pathspec = NULL;
3768 char *tmp_pathspec = xstrdup (pathspec);
3771 while (strlen (tmp_pathspec) && !has_symlinks)
3774 tmp_pathspec));
3775 if (lstat (tmp_pathspec, &s) == 0)
3784 p = tmp_pathspec + strlen (tmp_pathspec) - 1;
3785 while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
3787 if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p)))
3797 lt_fatal ("Error accessing file %s (%s)", tmp_pathspec, errstr);
3800 XFREE (tmp_pathspec);
3807 tmp_pathspec = realpath (pathspec, buf);
3808 if (tmp_pathspec == 0)
3812 return xstrdup (tmp_pathspec);