Searched refs:copy_substring (Results 1 – 1 of 1) sorted by relevance
/third_party/openssl/crypto/http/ |
D | http_lib.c | 25 static int copy_substring(char **dest, const char *start, const char *end) in copy_substring() function 149 if (!copy_substring(pscheme, scheme, scheme_end) in OSSL_parse_url() 150 || !copy_substring(phost, host, host_end) in OSSL_parse_url() 151 || !copy_substring(pport, port, port_end) in OSSL_parse_url() 152 || !copy_substring(puser, user, user_end) in OSSL_parse_url() 153 || !copy_substring(pquery, query, query_end) in OSSL_parse_url() 154 || !copy_substring(pfrag, frag, frag_end)) in OSSL_parse_url() 159 if (!copy_substring(ppath, path, path_end)) in OSSL_parse_url()
|