HomeSort by relevance Sort by last modified time
    Searched full:content_length (Results 1 - 8 of 8) sorted by null

  /external/webkit/WebCore/manual-tests/resources/multiFileResources/
post-echo-and-notify-done.cgi 6 read(STDIN, $request, $ENV{'CONTENT_LENGTH'})
  /external/webkit/WebKitTools/simplejson/
jsonfilter.py 18 args = [_ for _ in [environ.get('CONTENT_LENGTH')] if _]
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
FileChannelTest.java 87 private static final int CONTENT_LENGTH = CONTENT.length();
343 ByteBuffer readBuffer = ByteBuffer.allocate(CONTENT_LENGTH);
345 assertEquals(CONTENT_LENGTH, readOnlyFileChannel.position());
398 assertEquals(CONTENT_LENGTH, writeOnlyFileChannel.position());
414 ByteBuffer readBuffer = ByteBuffer.allocate(CONTENT_LENGTH);
416 assertEquals(CONTENT_LENGTH, readWriteFileChannel.position());
420 assertEquals(CONTENT_LENGTH * 2, readWriteFileChannel.position());
545 ByteBuffer readBuffer = ByteBuffer.allocate(CONTENT_LENGTH);
547 assertEquals(CONTENT_LENGTH - POSITION, count);
583 byte[] result = new byte[POSITION + CONTENT_LENGTH];
    [all...]
  /external/v8/src/
debug-agent.cc 217 int content_length = 0; local
275 content_length = 10 * content_length + (value[i] - '0');
284 if (content_length == 0) {
289 char* buffer = NewArray<char>(content_length + 1);
290 received = ReceiveAll(conn, buffer, content_length);
291 if (received < content_length) {
295 buffer[content_length] = '\0';
  /external/bluetooth/glib/gio/win32/
gwinhttpfile.c 478 wchar_t *content_length; local
535 content_length = NULL;
540 &content_length,
546 if (swscanf (content_length, L"%I64d%n", &cl, &n) == 1 &&
547 n == wcslen (content_length))
550 g_free (content_length);
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 87 int content_length; /* body length, iff got_content_length */ member in struct:httpread
205 h->content_length = atol(hbp);
434 h->content_length);
488 if (h->got_content_length && h->content_length == 0) {
537 new_alloc_nbytes < (h->content_length + 1))
538 new_alloc_nbytes = h->content_length + 1;
602 h->body_nbytes >= h->content_length) {
626 ncopy = h->content_length - h->body_nbytes;
  /external/qemu/proxy/
proxy_http_rewriter.c 615 char* content_length; local
643 content_length = http_request_find_header(r, "Content-Length");
644 if (content_length != NULL) {
646 int64_t body_len = strtoll( content_length, &end, 10 );
647 if (*end != '\0' || *content_length == '\0' || body_len < 0) {
648 PROXY_LOG("%s: bad content length: %s", root->name, content_length);
    [all...]
  /external/clearsilver/cgi/
cgi.c 42 {"CONTENT_LENGTH", "ContentLength"},
    [all...]

Completed in 1293 milliseconds