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

  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.c 121 if(NULL != proxy->http_body && proxy->http_body_size > 0)
123 free(proxy->http_body);
mhd2spdy_http.c 130 memcpy(newbody, proxy->http_body + max, proxy->http_body_size - max);
132 memcpy(buffer, proxy->http_body, ret);
133 free(proxy->http_body);
134 proxy->http_body = newbody;
mhd2spdy_structures.h 114 void *http_body; member in struct:Proxy
mhd2spdy_spdy.c 438 if(!copy_buffer(data, len, &proxy->http_body, &proxy->http_body_size))
445 if(NULL == proxy->http_body)
446 proxy->http_body = au_malloc(len);
448 proxy->http_body = realloc(proxy->http_body, proxy->http_body_size + len);
449 if(NULL == proxy->http_body)
455 memcpy(proxy->http_body + proxy->http_body_size, data, len);
  /external/libmicrohttpd/src/spdy2http/
proxy.c 169 void *http_body; member in struct:Proxy
466 ret = get_from_buffer(&(proxy->http_body), &(proxy->http_body_size), buffer, max);
517 free(proxy->http_body);
518 proxy->http_body = NULL;
697 if(!store_in_buffer(contents, realsize, &proxy->http_body, &proxy->http_body_size))
704 if(NULL == proxy->http_body)
705 proxy->http_body = malloc(realsize);
707 proxy->http_body = realloc(proxy->http_body, proxy->http_body_size + realsize);
708 if(NULL == proxy->http_body)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/
connection.py 88 def http_body(field): function
369 @http_body('FeedContent')
    [all...]

Completed in 88 milliseconds