Searched refs:new_str (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/sys/boot/common/
H A Dinterp_backslash.c41 char *new_str; local
45 if ((new_str = strdup(str)) == NULL)
53 new_str[i++] = '\\';
61 new_str[i++] = '\\';
62 new_str[i++] = *str++;
66 new_str[i++] = '\b';
71 new_str[i++] = '\f';
76 new_str[i++] = '\r';
81 new_str[i++] = '\n';
86 new_str[
[all...]
/freebsd-10.0-release/contrib/libarchive/tar/
H A Dsubst.c168 char *new_str; local
176 new_str = malloc(old_len + len + 1);
177 if (new_str == NULL)
180 memcpy(new_str, *str, old_len);
181 memcpy(new_str + old_len, append, len);
182 new_str[old_len + len] = '\0';
184 *str = new_str;
190 char *new_str; local
198 new_str = malloc(old_len + strlen(append) + 1);
199 if (new_str
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dexpand_path.c470 char * new_str = realloc(*ppath_out, len + append_len + 1); local
472 if (new_str == NULL) {
482 *ppath_out = new_str;
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dgetopt.c340 char *new_str = (char *) malloc (top + 1);
341 if (new_str == NULL)
345 memset (mempcpy (new_str, __getopt_nonoption_flags,
349 __getopt_nonoption_flags = new_str;
337 char *new_str = (char *) malloc (top + 1); local
/freebsd-10.0-release/contrib/subversion/subversion/svnsync/
H A Dsync.c65 svn_string_t *new_str; local
77 new_str = NULL;
78 SVN_ERR(svn_subst_translate_string2(&new_str, NULL, was_normalized,
81 *str = new_str;
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c906 svn_stringbuf_t *new_str = svn_stringbuf_create_empty(pool);
913 svn_stringbuf_appendbytes(new_str, string, strlen(string));
914 svn_stringbuf_appendbytes(new_str, separator, sep_len);
916 return new_str->data;
901 svn_stringbuf_t *new_str = svn_stringbuf_create_empty(pool); local
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/
H A Dreps-strings.c559 const char *new_str = NULL;
577 SVN_ERR(svn_fs_bdb__string_append(fs, &new_str, 0, NULL, trail, pool));
578 rep = make_fulltext_rep(new_str, txn_id,
555 const char *new_str = NULL; local
/freebsd-10.0-release/contrib/gcc/
H A Dgenattrtab.c580 char *new_str; local
596 new_str = obstack_alloc (hash_obstack, len + 1);
597 memcpy (new_str, str, len);
598 new_str[len] = '\0';
599 attr_hash_add_string (hashcode, new_str);
601 return new_str; /* Return the new string. */
H A Domp-low.c3934 char *new_str;
3938 new_str = ACONCAT ((".gomp_critical_user_",
3940 DECL_NAME (decl) = get_identifier (new_str);
3932 char *new_str; local

Completed in 120 milliseconds