Home | History | Annotate | Download | only in libevent

Lines Matching full:strlen

208 	EVUTIL_ASSERT(strlen(del) == 1);
265 old_size = strlen(html);
870 if (strlen(p) == 0) {
1773 old_len = strlen(header->value);
1774 line_len = strlen(line);
2686 end = uri+strlen(uri);
2756 if ((ret = mm_malloc(strlen(uri) + 1)) == NULL) {
2758 (unsigned long)(strlen(uri) + 1));
2762 evhttp_decode_uri_internal(uri, strlen(uri),
2774 if ((ret = mm_malloc(strlen(uri) + 1)) == NULL) {
2776 (unsigned long)(strlen(uri) + 1));
2780 n = evhttp_decode_uri_internal(uri, strlen(uri),
2819 if (!query_part || !strlen(query_part)) {
2840 if ((decoded_value = mm_malloc(strlen(value) + 1)) == NULL) {
2844 evhttp_decode_uri_internal(value, strlen(value),
2884 offset = strlen(path);
3613 p = host + strlen(host) - 1;
4160 cp += strlen(cp);
4355 #define _URI_ADD(f) evbuffer_add(tmp, uri->f, strlen(uri->f))
4464 if (scheme && !scheme_ok(scheme, scheme+strlen(scheme)))
4473 if (userinfo && !userinfo_ok(userinfo, userinfo+strlen(userinfo)))
4483 if (! bracket_addr_ok(host, host+strlen(host)))
4486 if (! regname_ok(host, host+strlen(host)))
4508 if (path && end_of_cpath(path, PART_PATH, uri->flags) != path+strlen(path))
4517 if (query && end_of_cpath(query, PART_QUERY, uri->flags) != query+strlen(query))
4525 if (fragment && end_of_cpath(fragment, PART_FRAGMENT, uri->flags) != fragment+strlen(fragment))