HomeSort by relevance Sort by last modified time
    Searched refs:http_body_size (Results 1 - 5 of 5) sorted by null

  /external/libmicrohttpd/src/examples/
mhd2spdy_http.c 97 if(0 == proxy->http_body_size && (proxy->done || !proxy->spdy_active))
103 if(!proxy->http_body_size)//nothing to write now
117 if(max >= proxy->http_body_size)
119 ret = proxy->http_body_size;
125 if(NULL == (newbody = au_malloc(proxy->http_body_size - max)))
130 memcpy(newbody, proxy->http_body + max, proxy->http_body_size - max);
135 proxy->http_body_size -= ret;
mhd2spdy_structures.c 121 if(NULL != proxy->http_body && proxy->http_body_size > 0)
122 UPDATE_STAT(glob_stat.spdy_bytes_received_and_dropped, proxy->http_body_size);
mhd2spdy_structures.h 116 size_t http_body_size; member in struct:Proxy
mhd2spdy_spdy.c 438 if(!copy_buffer(data, len, &proxy->http_body, &proxy->http_body_size))
448 proxy->http_body = realloc(proxy->http_body, proxy->http_body_size + len);
455 memcpy(proxy->http_body + proxy->http_body_size, data, len);
456 proxy->http_body_size += len;
  /external/libmicrohttpd/src/spdy2http/
proxy.c 172 size_t http_body_size; member in struct:Proxy
459 if(!proxy->http_body_size)//nothing to write now
466 ret = get_from_buffer(&(proxy->http_body), &(proxy->http_body_size), buffer, max);
474 if((proxy->curl_done || proxy->curl_error) && 0 == proxy->http_body_size) *more = false;
697 if(!store_in_buffer(contents, realsize, &proxy->http_body, &proxy->http_body_size))
707 proxy->http_body = realloc(proxy->http_body, proxy->http_body_size + realsize);
714 memcpy(proxy->http_body + proxy->http_body_size, contents, realsize);
715 proxy->http_body_size += realsize;
    [all...]

Completed in 343 milliseconds