/external/webrtc/webrtc/base/ |
bytebuffer_unittest.cc | 176 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3)); 186 EXPECT_TRUE(buffer.ReadBytes(read_bytes, 3));
|
/external/libchrome/base/ |
pickle.h | 60 // number of bytes to read, and ReadBytes will validate this length. The 64 bool ReadBytes(const char** data, int length) WARN_UNUSED_RESULT;
|
pickle_unittest.cc | 503 // Check that ReadBytes works properly with an iterator initialized to NULL. 504 TEST(PickleTest, ReadBytes) { 511 EXPECT_TRUE(iter.ReadBytes(&outdata_char, sizeof(data))); 570 EXPECT_TRUE(iter.ReadBytes(&out_data, out_data_length));
|
pickle.cc | 200 return ReadBytes(data, *length); 203 bool PickleIterator::ReadBytes(const char** data, int length) {
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
wire_format_lite.h | 315 static bool ReadBytes(input, string* value); 316 static bool ReadBytes(input, string** p); 680 // call ReadBytes(). 684 return ReadBytes(input, value); 689 return ReadBytes(input, p);
|
/prebuilts/go/darwin-x86/src/bufio/ |
bufio.go | 301 // ReadBytes or ReadString instead. 341 // ReadBytes('\n') or ReadString('\n') instead or use a Scanner. 391 // ReadBytes reads until the first occurrence of delim in the input, 393 // If ReadBytes encounters an error before finding a delimiter, 395 // ReadBytes returns err != nil if and only if the returned data does not end in 398 func (b *Reader) ReadBytes(delim byte) (line []byte, err error) { 446 bytes, err := b.ReadBytes(delim)
|
/prebuilts/go/linux-x86/src/bufio/ |
bufio.go | 301 // ReadBytes or ReadString instead. 341 // ReadBytes('\n') or ReadString('\n') instead or use a Scanner. 391 // ReadBytes reads until the first occurrence of delim in the input, 393 // If ReadBytes encounters an error before finding a delimiter, 395 // ReadBytes returns err != nil if and only if the returned data does not end in 398 func (b *Reader) ReadBytes(delim byte) (line []byte, err error) { 446 bytes, err := b.ReadBytes(delim)
|
/external/libchrome/base/trace_event/ |
trace_event_argument.cc | 56 bool res = pickle_iterator.ReadBytes(&type, 1); 358 while (it.ReadBytes(&type, 1)) {
|
/external/webrtc/talk/media/base/ |
testutils.cc | 71 ret &= buf->ReadBytes(payload, sizeof(payload)); 106 ret &= buf->ReadBytes(payload, sizeof(payload));
|
/external/sfntly/cpp/src/sfntly/ |
font_factory.cc | 205 rfd->ReadBytes(0, &(tag[0]), 0, tag.size());
|
/external/sfntly/cpp/src/sfntly/table/core/ |
os2_table.cc | 171 data_->ReadBytes(Offset::kPanose, &((*value)[0]), 0, 10); 194 data_->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4); 420 InternalReadData()->ReadBytes(Offset::kPanose, 473 InternalReadData()->ReadBytes(Offset::kAchVendId, &((*b)[0]), 0, 4);
|
/prebuilts/go/darwin-x86/src/bytes/ |
buffer.go | 360 // ReadBytes reads until the first occurrence of delim in the input, 362 // If ReadBytes encounters an error before finding a delimiter, 364 // ReadBytes returns err != nil if and only if the returned data does not end in 366 func (b *Buffer) ReadBytes(delim byte) (line []byte, err error) { 374 // readSlice is like ReadBytes but returns a reference to internal buffer data.
|
buffer_test.go | 381 bytes, err = buf.ReadBytes(test.delim) 439 readBytes, _ := buf.Read(tmp) 451 if !Equal(buf.Bytes()[0:startLen-readBytes], xBytes[readBytes:]) { 454 if !Equal(buf.Bytes()[startLen-readBytes:startLen-readBytes+growLen], yBytes) { 478 _, err := b.ReadBytes('m') 480 t.Fatalf("ReadBytes: %v", err)
|
/prebuilts/go/linux-x86/src/bytes/ |
buffer.go | 360 // ReadBytes reads until the first occurrence of delim in the input, 362 // If ReadBytes encounters an error before finding a delimiter, 364 // ReadBytes returns err != nil if and only if the returned data does not end in 366 func (b *Buffer) ReadBytes(delim byte) (line []byte, err error) { 374 // readSlice is like ReadBytes but returns a reference to internal buffer data.
|
buffer_test.go | 381 bytes, err = buf.ReadBytes(test.delim) 439 readBytes, _ := buf.Read(tmp) 451 if !Equal(buf.Bytes()[0:startLen-readBytes], xBytes[readBytes:]) { 454 if !Equal(buf.Bytes()[startLen-readBytes:startLen-readBytes+growLen], yBytes) { 478 _, err := b.ReadBytes('m') 480 t.Fatalf("ReadBytes: %v", err)
|
/external/sfntly/cpp/src/sfntly/data/ |
readable_font_data.cc | 82 int32_t ReadableFontData::ReadBytes(int32_t index,
|
/external/webrtc/webrtc/p2p/base/ |
stun.cc | 515 if (!buf->ReadBytes(reinterpret_cast<char*>(&v4addr), sizeof(v4addr))) { 525 if (!buf->ReadBytes(reinterpret_cast<char*>(&v6addr), sizeof(v6addr))) { 742 if (!buf->ReadBytes(bytes_, length())) {
|
/art/runtime/ |
trace.cc | 627 static uint64_t ReadBytes(uint8_t* buf, size_t bytes) { 640 uint32_t tmid = ReadBytes(ptr + 2, sizeof(tmid)); [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zIn.cpp | 194 void CInByte2::ReadBytes(Byte *data, size_t size)
456 ReadBytes((Byte *)coder.Props, (size_t)propsSize);
1242 ReadBytes(db.NamesBuf, rem);
[all...] |
/external/google-breakpad/src/google_breakpad/processor/ |
minidump.h | [all...] |
/external/protobuf/src/google/protobuf/ |
wire_format_lite.cc | 462 bool WireFormatLite::ReadBytes(io::CodedInputStream* input,
|
wire_format_lite.h | 301 static bool ReadBytes (input, string* value);
|
/external/v8/src/ |
utils.cc | 247 byte* ReadBytes(const char* filename, int* size, bool verbose) {
|
/external/sfntly/cpp/src/sfntly/table/truetype/ |
glyph_table.cc | 604 data_->ReadBytes(index, &((*transformation)[0]), 0, tsize);
|
/external/sonivox/jet_tools/JetCreator/ |
midifile.py | 264 def ReadBytes (stream, length):
631 msg = ReadBytes(stream, length)
663 msg = ReadBytes(stream, length)
697 msg = ReadBytes(stream, length)
[all...] |