Lines Matching refs:concat_name
6225 char *concat_name;
6237 concat_name = xstrdup (wrapper);
6238 if (check_executable (concat_name))
6239 return concat_name;
6240 XFREE (concat_name);
6247 concat_name = xstrdup (wrapper);
6248 if (check_executable (concat_name))
6249 return concat_name;
6250 XFREE (concat_name);
6284 concat_name =
6286 memcpy (concat_name, tmp, tmp_len);
6287 concat_name[tmp_len] = '/';
6288 strcpy (concat_name + tmp_len + 1, wrapper);
6292 concat_name =
6294 memcpy (concat_name, p, p_len);
6295 concat_name[p_len] = '/';
6296 strcpy (concat_name + p_len + 1, wrapper);
6298 if (check_executable (concat_name))
6299 return concat_name;
6300 XFREE (concat_name);
6310 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
6311 memcpy (concat_name, tmp, tmp_len);
6312 concat_name[tmp_len] = '/';
6313 strcpy (concat_name + tmp_len + 1, wrapper);
6315 if (check_executable (concat_name))
6316 return concat_name;
6317 XFREE (concat_name);