Home
last modified time | relevance | path

Searched refs:src_string (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/file/src/
H A Dvasprintf.c138 const char * src_string; /* current position into intput string */ member
185 len = strcspn(s->src_string, "%"); /* reachs the next '%' or end of input string */ in usual_char()
192 memcpy(s->dest_string, s->src_string, len); in usual_char()
193 s->src_string += len; in usual_char()
308 #define SRCTXT (s->src_string) in dispatch()
571 if (s->src_string == NULL) in core()
572 s->src_string = "(null)"; in core()
586 if (*(s->src_string) == 0) { in core()
610 while(*(s->src_string) != 0) { /* up to end of source string */ in core()
632 s.src_string = format_string; in vasprintf()
/freebsd-12.1/contrib/subversion/subversion/libsvn_subr/
H A Dx509parse.c865 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 …]