Searched refs:ReadRawBytes (Results 1 – 8 of 8) sorted by relevance
/third_party/node/src/ |
D | node_serdes.cc | 85 static void ReadRawBytes(const FunctionCallbackInfo<Value>& args); 430 void DeserializerContext::ReadRawBytes( in ReadRawBytes() function in node::serdes::DeserializerContext 440 bool ok = ctx->deserializer_.ReadRawBytes(length, &data); in ReadRawBytes() 509 isolate, des, "_readRawBytes", DeserializerContext::ReadRawBytes); in Initialize() 537 registry->Register(DeserializerContext::ReadRawBytes); in RegisterExternalReferences()
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | CodedInputStream.cs | 674 internal byte[] ReadRawBytes(int size) in ReadRawBytes() method in Google.Protobuf.CodedInputStream 677 return ParsingPrimitives.ReadRawBytes(ref span, ref state, size); in ReadRawBytes()
|
D | ParsingPrimitives.cs | 434 …public static byte[] ReadRawBytes(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, in… in ReadRawBytes() method in Google.Protobuf.ParsingPrimitives 571 … return ByteString.AttachBytes(ParsingPrimitives.ReadRawBytes(ref buffer, ref state, length)); in ReadBytes() 666 …return WritingPrimitives.Utf8Encoding.GetString(ReadRawBytes(ref buffer, ref state, length), 0, le… in ReadStringSlow()
|
/third_party/node/deps/v8/src/objects/ |
D | value-serializer.h | 241 bool ReadRawBytes(size_t length, const void** data) V8_WARN_UNUSED_RESULT; 257 Maybe<base::Vector<const uint8_t>> ReadRawBytes(size_t size)
|
D | value-serializer.cc | 1344 Maybe<base::Vector<const uint8_t>> ValueDeserializer::ReadRawBytes( in ReadRawBytes() function in v8::internal::ValueDeserializer 1366 bool ValueDeserializer::ReadRawBytes(size_t length, const void** data) { in ReadRawBytes() function in v8::internal::ValueDeserializer 1559 if (!ReadRawBytes(bytelength).To(&digits_storage)) { in ReadBigInt() 1571 if (!ReadRawBytes(utf8_length).To(&utf8_bytes)) return {}; in ReadUtf8String() 1582 if (!ReadRawBytes(byte_length).To(&bytes)) return {}; in ReadOneByteString() 1593 !ReadRawBytes(byte_length).To(&bytes)) { in ReadTwoByteString() 1628 if (!ReadRawBytes(byte_length).To(&bytes)) { in ReadExpectedString()
|
/third_party/node/deps/v8/include/ |
D | v8-value-serializer.h | 267 V8_WARN_UNUSED_RESULT bool ReadRawBytes(size_t length, const void** data);
|
/third_party/node/deps/v8/src/web-snapshot/ |
D | web-snapshot.cc | 1386 if (!deserializer_.ReadRawBytes(sizeof(kMagicNumber), &magic_bytes) || in DeserializeSnapshot()
|
/third_party/node/deps/v8/src/api/ |
D | api.cc | 3537 bool ValueDeserializer::ReadRawBytes(size_t length, const void** data) { in ReadRawBytes() function in v8::ValueDeserializer 3538 return private_->deserializer.ReadRawBytes(length, data); in ReadRawBytes()
|