Lines Matching refs:concat_name
6102 char *concat_name;
6114 concat_name = xstrdup (wrapper);
6115 if (check_executable (concat_name))
6116 return concat_name;
6117 XFREE (concat_name);
6124 concat_name = xstrdup (wrapper);
6125 if (check_executable (concat_name))
6126 return concat_name;
6127 XFREE (concat_name);
6161 concat_name =
6163 memcpy (concat_name, tmp, tmp_len);
6164 concat_name[tmp_len] = '/';
6165 strcpy (concat_name + tmp_len + 1, wrapper);
6169 concat_name =
6171 memcpy (concat_name, p, p_len);
6172 concat_name[p_len] = '/';
6173 strcpy (concat_name + p_len + 1, wrapper);
6175 if (check_executable (concat_name))
6176 return concat_name;
6177 XFREE (concat_name);
6187 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
6188 memcpy (concat_name, tmp, tmp_len);
6189 concat_name[tmp_len] = '/';
6190 strcpy (concat_name + tmp_len + 1, wrapper);
6192 if (check_executable (concat_name))
6193 return concat_name;
6194 XFREE (concat_name);