Home | History | Annotate | Download | only in dist

Lines Matching refs:concat_name

6408   char *concat_name;
6420 concat_name = xstrdup (wrapper);
6421 if (check_executable (concat_name))
6422 return concat_name;
6423 XFREE (concat_name);
6430 concat_name = xstrdup (wrapper);
6431 if (check_executable (concat_name))
6432 return concat_name;
6433 XFREE (concat_name);
6467 concat_name =
6469 memcpy (concat_name, tmp, tmp_len);
6470 concat_name[tmp_len] = '/';
6471 strcpy (concat_name + tmp_len + 1, wrapper);
6475 concat_name =
6477 memcpy (concat_name, p, p_len);
6478 concat_name[p_len] = '/';
6479 strcpy (concat_name + p_len + 1, wrapper);
6481 if (check_executable (concat_name))
6482 return concat_name;
6483 XFREE (concat_name);
6493 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
6494 memcpy (concat_name, tmp, tmp_len);
6495 concat_name[tmp_len] = '/';
6496 strcpy (concat_name + tmp_len + 1, wrapper);
6498 if (check_executable (concat_name))
6499 return concat_name;
6500 XFREE (concat_name);