Searched defs:content_length (Results 1 - 13 of 13) sorted by relevance

/external/curl/tests/libtest/
H A Dlib566.c31 double content_length = 3; local
53 &content_length);
56 fprintf(moo, "CL: %.0f\n", content_length);
H A Dlib599.c46 double content_length = 0.0; local
82 &content_length);
85 fprintf(moo, "CL: %.0f\n", content_length);
/external/webrtc/webrtc/examples/peerconnection/server/
H A Ddata_socket.h85 size_t content_length() const { return content_length_; } function in class:DataSocket
/external/syslinux/core/fs/pxe/
H A Dhttp.c176 uint32_t content_length; /* same as inode->size */ local
191 inode->size = content_length = -1;
282 content_length = 0;
284 if ((content_length * 10) < content_length)
286 content_length = (content_length * 10) + (*next - '0');
292 content_length = -1;
/external/syslinux/gpxe/src/net/tcp/
H A Dhttp.c80 size_t content_length; member in struct:http_request
117 if ( http->content_length &&
118 ( http->content_length != http->rx_len ) ) {
120 http, http->rx_len, http->content_length );
220 http->content_length = strtoul ( value, &endp, 10 );
228 xfer_seek ( &http->xfer, http->content_length, SEEK_SET );
341 if ( http->content_length &&
342 ( http->rx_len >= http->content_length ) ) {
/external/google-breakpad/src/common/windows/
H A Dhttp_upload.cc199 wchar_t content_length[32]; local
200 DWORD content_length_size = sizeof(content_length);
205 static_cast<LPVOID>(&content_length),
208 claimed_size = wcstol(content_length, NULL, 10);
/external/webrtc/webrtc/examples/peerconnection/client/
H A Dpeer_connection_client.cc296 size_t* content_length) {
309 if (GetHeaderValue(*data, i, "\r\nContent-Length: ", content_length)) {
310 size_t total_response_size = (i + 4) + *content_length;
333 size_t content_length = 0; local
334 if (ReadIntoBuffer(socket, &control_data_, &content_length)) {
336 bool ok = ParseServerResponse(control_data_, content_length, &peer_id,
346 if (content_length) {
385 size_t content_length = 0; local
386 if (ReadIntoBuffer(socket, &notification_data_, &content_length)) {
388 bool ok = ParseServerResponse(notification_data_, content_length,
294 ReadIntoBuffer(rtc::AsyncSocket* socket, std::string* data, size_t* content_length) argument
456 ParseServerResponse(const std::string& response, size_t content_length, size_t* peer_id, size_t* eoh) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dhttpread.c69 int content_length; /* body length, iff got_content_length */ member in struct:httpread
168 h->content_length = atol(hbp);
169 if (h->content_length < 0 || h->content_length > h->max_bytes) {
172 h->content_length);
401 h->content_length);
455 if (h->got_content_length && h->content_length == 0) {
504 new_alloc_nbytes < (h->content_length + 1))
505 new_alloc_nbytes = h->content_length + 1;
595 h->body_nbytes >= h->content_length) {
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dhttpread.c69 int content_length; /* body length, iff got_content_length */ member in struct:httpread
168 h->content_length = atol(hbp);
169 if (h->content_length < 0 || h->content_length > h->max_bytes) {
172 h->content_length);
401 h->content_length);
455 if (h->got_content_length && h->content_length == 0) {
504 new_alloc_nbytes < (h->content_length + 1))
505 new_alloc_nbytes = h->content_length + 1;
595 h->body_nbytes >= h->content_length) {
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dhttpread.c69 int content_length; /* body length, iff got_content_length */ member in struct:httpread
168 h->content_length = atol(hbp);
169 if (h->content_length < 0 || h->content_length > h->max_bytes) {
172 h->content_length);
401 h->content_length);
455 if (h->got_content_length && h->content_length == 0) {
504 new_alloc_nbytes < (h->content_length + 1))
505 new_alloc_nbytes = h->content_length + 1;
595 h->body_nbytes >= h->content_length) {
[all...]
/external/webrtc/webrtc/base/
H A Dhttpcommon.cc488 size_t content_length = 0; local
489 if (this->document->GetAvailable(&content_length)) {
491 sprintfn(buffer, sizeof(buffer), "%d", content_length);
/external/libevent/
H A Dhttp.c499 /* Add a "Content-Length" header with value 'content_length' to headers,
503 size_t content_length)
509 EV_SIZE_ARG(content_length));
2116 const char *content_length; local
2119 content_length = evhttp_find_header(headers, "Content-Length");
2122 if (content_length == NULL && connection == NULL)
2124 else if (content_length == NULL &&
2131 } else if (content_length == NULL) {
2135 ev_int64_t ntoread = evutil_strtoll(content_length, &endp, 10);
2136 if (*content_length
502 evhttp_maybe_add_content_length_header(struct evkeyvalq *headers, size_t content_length) argument
[all...]
/external/guice/extensions/struts2/lib/
H A Djetty-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/jetty/ org/mortbay/jetty/webapp/ ...

Completed in 447 milliseconds