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

  /external/chromium/net/http/
http_byte_range.h 21 int64 first_byte_position() const { return first_byte_position_; } function in class:net::HttpByteRange
http_byte_range_unittest.cc 10 int64 first_byte_position; member in struct:__anon2474
28 range.set_first_byte_position(tests[i].first_byte_position);
37 int64 first_byte_position; member in struct:__anon2475
60 range.set_first_byte_position(tests[i].first_byte_position);
67 EXPECT_EQ(tests[i].expected_lower_bound, range.first_byte_position());
73 EXPECT_EQ(tests[i].expected_lower_bound, range.first_byte_position());
http_response_headers_unittest.cc 1344 int64 first_byte_position; local
    [all...]
http_util.cc 239 int64 first_byte_position = -1; local
240 if (!StringToInt64(first_byte_pos, &first_byte_position))
242 range.set_first_byte_position(first_byte_position);
  /external/chromium/net/url_request/
url_request_unittest.cc 689 const size_t first_byte_position = 500; local
690 const size_t last_byte_position = buffer_size - first_byte_position;
691 const size_t content_length = last_byte_position - first_byte_position + 1;
692 std::string partial_buffer_string(buffer.get() + first_byte_position,
701 first_byte_position, last_byte_position));
730 const size_t first_byte_position = 500; local
732 const size_t content_length = last_byte_position - first_byte_position + 1;
733 std::string partial_buffer_string(buffer.get() + first_byte_position,
741 first_byte_position));
    [all...]

Completed in 270 milliseconds