Home
last modified time | relevance | path

Searched refs:body_start (Results 1 – 4 of 4) sorted by relevance

/external/wpa_supplicant_8/src/wps/
Dwps_upnp_web.c308 char *body_start; in web_connection_parse_get() local
392 body_start = wpabuf_put(buf, 0); in web_connection_parse_get()
404 body_length = (char *) wpabuf_put(buf, 0) - body_start; in web_connection_parse_get()
764 char *body_start = NULL; in web_connection_send_reply() local
816 body_start = wpabuf_put(buf, 0); in web_connection_send_reply()
850 if (body_start && put_length_here) { in web_connection_send_reply()
851 int body_length = (char *) wpabuf_put(buf, 0) - body_start; in web_connection_send_reply()
/external/libwebm/webm_parser/demo/
Ddemo.cc625 const std::uint64_t body_start = header_end; in PrintElementMetadata() local
634 << ") body: [" << body_start << ", "; in PrintElementMetadata()
636 const std::uint64_t body_end = body_start + metadata.size; in PrintElementMetadata()
/external/python/cpython2/Lib/
Dmailbox.py1413 body_start = message.find('\n\n') + 2
1414 if body_start - 2 != -1:
1415 self._file.write(message[:body_start].replace('\n',
1418 self._file.write(message[:body_start].replace('\n',
1420 self._file.write(message[body_start:].replace('\n',
/external/python/cpython3/Lib/
Dmailbox.py1440 body_start = message.find(b'\n\n') + 2
1441 if body_start - 2 != -1:
1442 self._file.write(message[:body_start].replace(b'\n', linesep))
1444 self._file.write(message[:body_start].replace(b'\n', linesep))
1445 self._file.write(message[body_start:].replace(b'\n', linesep))