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

  /external/libmicrohttpd/src/examples/
mhd2spdy_spdy.c 110 memcpy(newbody, proxy->received_body + length, proxy->received_body_size - length);
112 memcpy(buf, proxy->received_body, ret);
113 free(proxy->received_body);
114 proxy->received_body = newbody;
mhd2spdy_structures.h 115 void *received_body; member in struct:Proxy
mhd2spdy_http.c 231 if(!copy_buffer(upload_data, *upload_data_size, &proxy->received_body, &proxy->received_body_size))
  /external/libmicrohttpd/src/spdy2http/
proxy.c 170 void *received_body; member in struct:Proxy
414 if(!store_in_buffer(buf, size, &proxy->received_body, &proxy->received_body_size))
754 ret = get_from_buffer(&(proxy->received_body), &(proxy->received_body_size), ptr, max);
775 memcpy(newbody, proxy->received_body + max, proxy->received_body_size - max);
777 memcpy(ptr, proxy->received_body, ret);
778 free(proxy->received_body);
779 proxy->received_body = newbody;
    [all...]

Completed in 34 milliseconds