Searched defs:last_byte_position (Results 1 - 8 of 8) sorted by relevance

/external/chromium/net/http/
H A Dhttp_byte_range.h25 int64 last_byte_position() const { return last_byte_position_; } function in class:net::HttpByteRange
H A Dhttp_byte_range_unittest.cc11 int64 last_byte_position; member in struct:__anon2524
29 range.set_last_byte_position(tests[i].last_byte_position);
38 int64 last_byte_position; member in struct:__anon2525
61 range.set_last_byte_position(tests[i].last_byte_position);
68 EXPECT_EQ(tests[i].expected_upper_bound, range.last_byte_position());
74 EXPECT_EQ(tests[i].expected_upper_bound, range.last_byte_position());
H A Dhttp_response_headers_unittest.cc1344 int64 last_byte_position; local
1347 &last_byte_position,
1351 EXPECT_EQ(tests[i].expected_last_byte_position, last_byte_position);
H A Dhttp_util.cc262 int64 last_byte_position; local
263 if (!base::StringToInt64(last_byte_pos, &last_byte_position))
266 range.set_last_byte_position(last_byte_position);
268 range.set_suffix_length(last_byte_position);
H A Dhttp_response_headers.cc1133 int64* last_byte_position,
1137 *first_byte_position = *last_byte_position = *instance_length = -1;
1199 last_byte_position);
1201 *first_byte_position = *last_byte_position = -1;
1204 if (*first_byte_position < 0 || *last_byte_position < 0 ||
1205 *first_byte_position > *last_byte_position)
1231 if (*first_byte_position < 0 || *last_byte_position < 0 ||
1232 *instance_length < 0 || *instance_length - 1 < *last_byte_position)
1132 GetContentRange(int64* first_byte_position, int64* last_byte_position, int64* instance_length) const argument
/external/chromium/webkit/glue/media/
H A Dbuffered_data_source.cc79 int64 first_byte_position, int64 last_byte_position) {
84 last_byte_position);
78 CreateResourceLoader( int64 first_byte_position, int64 last_byte_position) argument
H A Dbuffered_resource_loader.cc50 int64 last_byte_position)
59 last_byte_position_(last_byte_position),
585 int first_byte_position, last_byte_position, instance_size; local
589 &last_byte_position,
603 // TODO(hclam): I should also check |last_byte_position|, but since
610 int64 last_byte_position) {
614 last_byte_position > kPositionNotSpecified) {
615 if (first_byte_position <= last_byte_position) {
618 last_byte_position);
623 } else if (last_byte_position > kPositionNotSpecifie
47 BufferedResourceLoader( const GURL& url, int64 first_byte_position, int64 last_byte_position) argument
608 GenerateHeaders( int64 first_byte_position, int64 last_byte_position) argument
[all...]
/external/chromium/net/url_request/
H A Durl_request_unittest.cc963 const size_t last_byte_position = buffer_size - first_byte_position; local
964 const size_t content_length = last_byte_position - first_byte_position + 1;
966 buffer.get() + last_byte_position + 1);
976 first_byte_position, last_byte_position));
1007 const size_t last_byte_position = buffer_size - 1; local
1008 const size_t content_length = last_byte_position - first_byte_position + 1;
1010 buffer.get() + last_byte_position + 1);

Completed in 97 milliseconds