Searched refs:ReadRawBytes (Results 1 - 9 of 9) sorted by relevance
/third_party/node/src/ |
H A 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() 441 if (!ok) return ctx->env()->ThrowError("ReadRawBytes() failed"); in ReadRawBytes() 509 isolate, des, "_readRawBytes", DeserializerContext::ReadRawBytes); in Initialize() 537 registry->Register(DeserializerContext::ReadRawBytes); in RegisterExternalReferences()
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | ParsingPrimitives.cs | 434 public static byte[] ReadRawBytes(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, int size) in ReadRawBytes() method in Google.Protobuf.ParsingPrimitives 571 return ByteString.AttachBytes(ParsingPrimitives.ReadRawBytes(ref buffer, ref state, length)); in ReadBytes() 664 // or there is not enough data in the sequence. If there is not enough data then ReadRawBytes will in ReadStringSlow() 666 return WritingPrimitives.Utf8Encoding.GetString(ReadRawBytes(ref buffer, ref state, length), 0, length); in ReadStringSlow()
|
H A 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()
|
/third_party/node/deps/v8/src/objects/ |
H A 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)
|
H A 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() 1569 // utf8_length is checked in ReadRawBytes. in ReadUtf8String() 1571 if (!ReadRawBytes(utf8_length).To(&utf8_bytes)) return {}; in ReadUtf8String() 1581 // byte_length is checked in ReadRawBytes. in ReadOneByteString() 1582 if (!ReadRawBytes(byte_length).To(&bytes)) return {}; in ReadOneByteString() 1591 // byte_length is checked in ReadRawBytes. in ReadTwoByteString() 1593 !ReadRawBytes(byte_length).To(&bytes)) { in ReadTwoByteString() 1625 // Length is also checked in ReadRawBytes in ReadExpectedString() [all...] |
/third_party/node/deps/v8/include/ |
H A D | v8-value-serializer.h | 267 V8_WARN_UNUSED_RESULT bool ReadRawBytes(size_t length, const void** data);
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-value-serializer.h | 304 V8_WARN_UNUSED_RESULT bool ReadRawBytes(size_t length, const void** data);
|
/third_party/node/deps/v8/src/web-snapshot/ |
H A D | web-snapshot.cc | 1386 if (!deserializer_.ReadRawBytes(sizeof(kMagicNumber), &magic_bytes) || in DeserializeSnapshot()
|
/third_party/node/deps/v8/src/api/ |
H A 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()
|
Completed in 32 milliseconds