Lines Matching refs:concat_name
6010 char *concat_name;
6022 concat_name = xstrdup (wrapper);
6023 if (check_executable (concat_name))
6024 return concat_name;
6025 XFREE (concat_name);
6032 concat_name = xstrdup (wrapper);
6033 if (check_executable (concat_name))
6034 return concat_name;
6035 XFREE (concat_name);
6069 concat_name =
6071 memcpy (concat_name, tmp, tmp_len);
6072 concat_name[tmp_len] = '/';
6073 strcpy (concat_name + tmp_len + 1, wrapper);
6077 concat_name =
6079 memcpy (concat_name, p, p_len);
6080 concat_name[p_len] = '/';
6081 strcpy (concat_name + p_len + 1, wrapper);
6083 if (check_executable (concat_name))
6084 return concat_name;
6085 XFREE (concat_name);
6095 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
6096 memcpy (concat_name, tmp, tmp_len);
6097 concat_name[tmp_len] = '/';
6098 strcpy (concat_name + tmp_len + 1, wrapper);
6100 if (check_executable (concat_name))
6101 return concat_name;
6102 XFREE (concat_name);