Home
last modified time | relevance | path

Searched refs:append_bytes (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/media/formats/common/
Dstream_parser_test_base.cc47 int append_bytes) { in ParseFile() argument
51 AppendDataInPieces(buffer->data(), buffer->data_size(), append_bytes)); in ParseFile()
Dstream_parser_test_base.h40 std::string ParseFile(const std::string& filename, int append_bytes);
/external/chromium_org/media/formats/mp4/
Dmp4_stream_parser_unittest.cc153 bool ParseMP4File(const std::string& filename, int append_bytes) { in ParseMP4File() argument
159 append_bytes)); in ParseMP4File()
/external/chromium_org/media/formats/mp2t/
Dmp2t_stream_parser_unittest.cc207 bool ParseMpeg2TsFile(const std::string& filename, int append_bytes) { in ParseMpeg2TsFile() argument
211 append_bytes)); in ParseMpeg2TsFile()
/external/qemu/android/camera/
Dcamera-service.c131 const size_t append_bytes = strlen(str) + 1; in _append_string() local
138 if ((offset + append_bytes) > *str_buf_size) { in _append_string()
143 const size_t required_mem = offset + append_bytes + 256; in _append_string()
153 memcpy(*str_buf + offset, str, append_bytes); in _append_string()