Searched refs:src_string (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/file/src/ |
| H A D | vasprintf.c | 134 const char * src_string; /* current position into input string */ member 181 len = strcspn(s->src_string, "%"); /* reaches the next '%' or end of input string */ in usual_char() 188 memcpy(s->dest_string, s->src_string, len); in usual_char() 189 s->src_string += len; in usual_char() 304 #define SRCTXT (s->src_string) in dispatch() 567 if (s->src_string == NULL) in core() 568 s->src_string = "(null)"; in core() 582 if (*(s->src_string) == 0) { in core() 606 while(*(s->src_string) != 0) { /* up to end of source string */ in core() 628 s.src_string = format_string; in vasprintf()
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | x509parse.c | 865 const svn_string_t *src_string; in x509name_to_utf8_string() local 869 src_string = svn_string_ncreate((const char *)name->val.p, in x509name_to_utf8_string() 875 if (svn_utf__is_valid(src_string->data, src_string->len)) in x509name_to_utf8_string() 876 return nul_escape(src_string, result_pool); in x509name_to_utf8_string() 880 return fuzzy_escape(src_string, result_pool); in x509name_to_utf8_string() 890 if (0 != src_string->len % sizeof(apr_uint16_t)) in x509name_to_utf8_string() 891 return fuzzy_escape(src_string, result_pool); in x509name_to_utf8_string() 899 if (0 != src_string->len % sizeof(apr_int32_t)) in x509name_to_utf8_string() 900 return fuzzy_escape(src_string, result_pool); in x509name_to_utf8_string() 928 return fuzzy_escape(src_string, result_pool); in x509name_to_utf8_string() [all …]
|