Home | History | Annotate | Download | only in protobuf

Lines Matching refs:concat_name

3319   char *concat_name;
3331 concat_name = xstrdup (wrapper);
3332 if (check_executable (concat_name))
3333 return concat_name;
3334 XFREE (concat_name);
3341 concat_name = xstrdup (wrapper);
3342 if (check_executable (concat_name))
3343 return concat_name;
3344 XFREE (concat_name);
3377 concat_name =
3379 memcpy (concat_name, tmp, tmp_len);
3380 concat_name[tmp_len] = '/';
3381 strcpy (concat_name + tmp_len + 1, wrapper);
3385 concat_name =
3387 memcpy (concat_name, p, p_len);
3388 concat_name[p_len] = '/';
3389 strcpy (concat_name + p_len + 1, wrapper);
3391 if (check_executable (concat_name))
3392 return concat_name;
3393 XFREE (concat_name);
3402 concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1);
3403 memcpy (concat_name, tmp, tmp_len);
3404 concat_name[tmp_len] = '/';
3405 strcpy (concat_name + tmp_len + 1, wrapper);
3407 if (check_executable (concat_name))
3408 return concat_name;
3409 XFREE (concat_name);