Home
last modified time | relevance | path

Searched refs:retstr (Results 1 – 4 of 4) sorted by relevance

/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDpath.c910 svn_stringbuf_t *retstr; in uri_escape() local
914 retstr = svn_stringbuf_create_ensure(strlen(path), pool); in uri_escape()
928 svn_stringbuf_appendbytes(retstr, path + copied, in uri_escape()
936 svn_stringbuf_ensure(retstr, retstr->len + 4); in uri_escape()
937 apr_snprintf(retstr->data + retstr->len, 4, "%%%02X", (unsigned char)c); in uri_escape()
938 retstr->len += 3; in uri_escape()
945 if (retstr->len == 0) in uri_escape()
950 svn_stringbuf_appendbytes(retstr, path + copied, i - copied); in uri_escape()
955 return retstr->data; in uri_escape()
1034 svn_stringbuf_t *retstr; in svn_path_uri_decode() local
[all …]
/NextBSD/crypto/openssl/util/
HDpod2man.pl1094 my $retstr = "the ";
1097 $retstr .= "C<$items[$i]>";
1098 $retstr .= ", " if @items > 2 && $i != $#items;
1099 $retstr .= " and " if $i+2 == @items;
1102 $retstr .= " entr" . ( @items > 1 ? "ies" : "y" )
1106 $retstr .= " " if length $trailing_and;
1107 $retstr .= $trailing_and;
1109 return $retstr;
/NextBSD/lib/libedit/
HDfilecomplete.c292 char **match_list = NULL, *retstr, *prevstr; in completion_matches() local
298 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) { in completion_matches()
313 match_list[++matches] = retstr; in completion_matches()
330 retstr = el_malloc((max_equal + 1) * sizeof(*retstr)); in completion_matches()
331 if (retstr == NULL) { in completion_matches()
335 (void)strncpy(retstr, match_list[1], max_equal); in completion_matches()
336 retstr[max_equal] = '\0'; in completion_matches()
337 match_list[0] = retstr; in completion_matches()
/NextBSD/cddl/compat/opensolaris/misc/
HDmnttab.c50 char *retstr; in mntopt() local
55 retstr = cp; in mntopt()
65 return (retstr); in mntopt()