Lines Matching refs:to
27 str_append (char **to, size_t *to_len, const char *buf, const size_t buf_len) in str_append() argument
30 char *new_to = realloc (*to, new_len + 1); in str_append()
35 *to = new_to; in str_append()
40 free (*to); in str_append()
41 *to = 0; in str_append()
71 char *to = __strndup (arg, to_len); in __argz_replace() local
73 while (to && from) in __argz_replace()
75 str_append (&to, &to_len, with, with_len); in __argz_replace()
76 if (to) in __argz_replace()
81 str_append (&to, &to_len, from, match - from); in __argz_replace()
86 str_append (&to, &to_len, from, strlen (from)); in __argz_replace()
92 if (to) in __argz_replace()
104 err = __argz_add (&dst, &dst_len, to); in __argz_replace()
105 free (to); in __argz_replace()