Home
last modified time | relevance | path

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

/external/protobuf/csharp/src/Google.Protobuf/
DCodedInputStream.cs482 byte[] rawBytes = ReadRawBytes(4); in ReadFloat()
559 return CodedOutputStream.Utf8Encoding.GetString(ReadRawBytes(length), 0, length); in ReadString()
602 return ByteString.AttachBytes(ReadRawBytes(length)); in ReadBytes()
1083 internal byte[] ReadRawBytes(int size) in ReadRawBytes() method in Google.Protobuf.CodedInputStream
/external/v8/src/
Dvalue-serializer.h220 bool ReadRawBytes(size_t length, const void** data) WARN_UNUSED_RESULT;
232 Maybe<Vector<const uint8_t>> ReadRawBytes(int size) WARN_UNUSED_RESULT;
Dvalue-serializer.cc1011 Maybe<Vector<const uint8_t>> ValueDeserializer::ReadRawBytes(int size) { in ReadRawBytes() function in v8::internal::ValueDeserializer
1030 bool ValueDeserializer::ReadRawBytes(size_t length, const void** data) { in ReadRawBytes() function in v8::internal::ValueDeserializer
1181 !ReadRawBytes(utf8_length).To(&utf8_bytes)) { in ReadUtf8String()
1194 !ReadRawBytes(byte_length).To(&bytes)) { in ReadOneByteString()
1207 !ReadRawBytes(byte_length).To(&bytes)) { in ReadTwoByteString()
1237 !ReadRawBytes(byte_length).To(&bytes)) { in ReadExpectedString()
1602 if (!ReadRawBytes(sizeof(WasmEncodingTag)).To(&encoding_tag) || in ReadWasmModule()
1618 !ReadRawBytes(wire_bytes_length).To(&wire_bytes) || in ReadWasmModule()
1621 !ReadRawBytes(compiled_bytes_length).To(&compiled_bytes)) { in ReadWasmModule()
Dapi.cc3341 bool ValueDeserializer::ReadRawBytes(size_t length, const void** data) { in ReadRawBytes() function in v8::ValueDeserializer
3342 return private_->deserializer.ReadRawBytes(length, data); in ReadRawBytes()
/external/v8/include/
Dv8.h1906 V8_WARN_UNUSED_RESULT bool ReadRawBytes(size_t length, const void** data);