Home | History | Annotate | Download | only in cpp

Lines Matching refs:concat_name

4167   char *concat_name;
4179 concat_name = xstrdup (wrapper);
4180 if (check_executable (concat_name))
4181 return concat_name;
4182 XFREE (concat_name);
4189 concat_name = xstrdup (wrapper);
4190 if (check_executable (concat_name))
4191 return concat_name;
4192 XFREE (concat_name);
4225 concat_name =
4227 memcpy (concat_name, tmp, tmp_len);
4228 concat_name[tmp_len] = '/';
4229 strcpy (concat_name + tmp_len + 1, wrapper);
4233 concat_name =
4235 memcpy (concat_name, p, p_len);
4236 concat_name[p_len] = '/';
4237 strcpy (concat_name + p_len + 1, wrapper);
4239 if (check_executable (concat_name))
4240 return concat_name;
4241 XFREE (concat_name);
4250 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
4251 memcpy (concat_name, tmp, tmp_len);
4252 concat_name[tmp_len] = '/';
4253 strcpy (concat_name + tmp_len + 1, wrapper);
4255 if (check_executable (concat_name))
4256 return concat_name;
4257 XFREE (concat_name);