Searched refs:content_length (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.3-release/contrib/subversion/subversion/libsvn_repos/
H A Dload.c185 svn_filesize_t content_length,
197 while (content_length != *actual_length)
302 svn_filesize_t content_length,
330 if (content_length == 0)
339 while (content_length)
341 if (content_length >= (svn_filesize_t)buflen)
344 rlen = (apr_size_t) content_length;
348 content_length -= rlen;
462 const char *content_length;
549 content_length
183 parse_property_block(svn_stream_t *stream, svn_filesize_t content_length, const svn_repos_parse_fns3_t *parse_fns, void *record_baton, void *parse_baton, svn_boolean_t is_node, svn_filesize_t *actual_length, apr_pool_t *pool) argument
300 parse_text_block(svn_stream_t *stream, svn_filesize_t content_length, svn_boolean_t is_delta, const svn_repos_parse_fns3_t *parse_fns, void *record_baton, char *buffer, apr_size_t buflen, apr_pool_t *pool) argument
460 const char *content_length; local
[all...]
H A Ddump.c288 svn_filesize_t content_length = 0;
550 content_length += proplen;
601 content_length += textlen;
629 content_length));
286 svn_filesize_t content_length = 0; local
/freebsd-10.3-release/contrib/wpa/src/wps/
H A Dhttpread.c81 int content_length; /* body length, iff got_content_length */ member in struct:httpread
199 h->content_length = atol(hbp);
428 h->content_length);
482 if (h->got_content_length && h->content_length == 0) {
531 new_alloc_nbytes < (h->content_length + 1))
532 new_alloc_nbytes = h->content_length + 1;
596 h->body_nbytes >= h->content_length) {
620 ncopy = h->content_length - h->body_nbytes;
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp378 size_t content_length = 0; local
387 content_length = total_length = 1; // The command is one byte long...
402 content_length = hash_pos - 1;
409 content_length = std::string::npos;
448 if (content_length == std::string::npos)
457 assert (content_length <= m_bytes.size());
459 assert (content_length <= total_length);
485 for (std::string::const_iterator c = m_bytes.begin() + content_start; c != m_bytes.begin() + content_start + content_length; ++c)
/freebsd-10.3-release/contrib/ntp/sntp/libevent/
H A Dhttp.c498 /* Add a "Content-Length" header with value 'content_length' to headers,
502 size_t content_length)
508 EV_SIZE_ARG(content_length));
2022 const char *content_length; local
2025 content_length = evhttp_find_header(headers, "Content-Length");
2028 if (content_length == NULL && connection == NULL)
2030 else if (content_length == NULL &&
2037 } else if (content_length == NULL) {
2041 ev_int64_t ntoread = evutil_strtoll(content_length, &endp, 10);
2042 if (*content_length
501 evhttp_maybe_add_content_length_header(struct evkeyvalq *headers, size_t content_length) argument
[all...]

Completed in 69 milliseconds