Home
last modified time | relevance | path

Searched refs:WriteRawBytes (Results 1 – 14 of 14) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/
DWritingPrimitives.cs185 WriteRawBytes(ref buffer, ref state, bytes); in WriteString()
208 WriteRawBytes(ref buffer, ref state, bytes); in WriteString()
219 WriteRawBytes(ref buffer, ref state, value.Span); in WriteBytes()
418 …public static void WriteRawBytes(ref Span<byte> buffer, ref WriterInternalState state, byte[] valu… in WriteRawBytes() method in Google.Protobuf.WritingPrimitives
420 WriteRawBytes(ref buffer, ref state, new ReadOnlySpan<byte>(value)); in WriteRawBytes()
426 …public static void WriteRawBytes(ref Span<byte> buffer, ref WriterInternalState state, byte[] valu… in WriteRawBytes() method in Google.Protobuf.WritingPrimitives
428 WriteRawBytes(ref buffer, ref state, new ReadOnlySpan<byte>(value, offset, length)); in WriteRawBytes()
434 …public static void WriteRawBytes(ref Span<byte> buffer, ref WriterInternalState state, ReadOnlySpa… in WriteRawBytes() method in Google.Protobuf.WritingPrimitives
DCodedOutputStream.cs523 internal void WriteRawBytes(byte[] value) in WriteRawBytes() method in Google.Protobuf.CodedOutputStream
525 WriteRawBytes(value, 0, value.Length); in WriteRawBytes()
531 internal void WriteRawBytes(byte[] value, int offset, int length) in WriteRawBytes() method in Google.Protobuf.CodedOutputStream
534 WritingPrimitives.WriteRawBytes(ref span, ref state, value, offset, length); in WriteRawBytes()
DByteString.cs414 outputStream.WriteRawBytes(bytes, 0, bytes.Length); in WriteRawBytesTo()
/third_party/node/src/
Dnode_serdes.cc56 static void WriteRawBytes(const FunctionCallbackInfo<Value>& args);
272 void SerializerContext::WriteRawBytes(const FunctionCallbackInfo<Value>& args) { in WriteRawBytes() function in node::serdes::SerializerContext
282 ctx->serializer_.WriteRawBytes(bytes.data(), bytes.length()); in WriteRawBytes()
479 isolate, ser, "writeRawBytes", SerializerContext::WriteRawBytes); in Initialize()
526 registry->Register(SerializerContext::WriteRawBytes); in RegisterExternalReferences()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/
DCodedOutputStreamTest.cs398 cos.WriteRawBytes(new byte[] {0}); in Dispose_DisposesUnderlyingStream()
412 cos.WriteRawBytes(new byte[] {0}); in Dispose_WithLeaveOpen()
DCodedInputStreamTest.cs277 output.WriteRawBytes(new byte[32]); // Pad with a few random bytes. in ReadMaliciouslyLargeBlob()
351 output.WriteRawBytes(new byte[] {0x80}); in ReadInvalidUtf8()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/
DCodedInputStreamTest.cs376 output.WriteRawBytes(new byte[32]); // Pad with a few random bytes. in ReadMaliciouslyLargeBlob()
394 output.WriteRawBytes(new byte[4]); // Pad with a few random bytes. in ReadBlobGreaterThanCurrentLimit()
426 output.WriteRawBytes(new byte[4]); // Pad with a few random bytes. in ReadStringGreaterThanCurrentLimit()
588 output.WriteRawBytes(new byte[] {0x80}); in ReadInvalidUtf8()
DCodedOutputStreamTest.cs492 cos.WriteRawBytes(new byte[] {0}); in Dispose_DisposesUnderlyingStream()
506 cos.WriteRawBytes(new byte[] {0}); in Dispose_WithLeaveOpen()
/third_party/node/deps/v8/include/
Dv8-value-serializer.h157 void WriteRawBytes(const void* source, size_t length);
/third_party/node/deps/v8/src/objects/
Dvalue-serializer.cc290 WriteRawBytes(&raw_tag, sizeof(raw_tag)); in WriteTag()
309 WriteRawBytes(stack_buffer, next_byte - stack_buffer); in WriteVarint()
330 WriteRawBytes(&value, sizeof(value)); in WriteDouble()
335 WriteRawBytes(chars.begin(), chars.length() * sizeof(uint8_t)); in WriteOneByteString()
341 WriteRawBytes(chars.begin(), chars.length() * sizeof(base::uc16)); in WriteTwoByteString()
354 void ValueSerializer::WriteRawBytes(const void* source, size_t length) { in WriteRawBytes() function in v8::internal::ValueSerializer
940 WriteRawBytes(array_buffer->backing_store(), byte_length); in WriteJSArrayBuffer()
Dvalue-serializer.h85 void WriteRawBytes(const void* source, size_t length);
/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.cc392 total_serializer.WriteRawBytes(kMagicNumber, 4); in WriteSnapshot()
420 destination.WriteRawBytes(source.buffer_, source.buffer_size_); in WriteObjects()
447 serializer.WriteRawBytes(chars.begin(), chars.length() * sizeof(uint8_t)); in SerializeString()
455 serializer.WriteRawBytes(buffer.get(), length * sizeof(uint8_t)); in SerializeString()
/third_party/node/deps/v8/src/api/
Dapi.cc3403 void ValueSerializer::WriteRawBytes(const void* source, size_t length) { in WriteRawBytes() function in v8::ValueSerializer
3404 private_->serializer.WriteRawBytes(source, length); in WriteRawBytes()
/third_party/chromium/patch/
D0003-ohos-1115.patch260676 WriteRawBytes(array_buffer->backing_store(), byte_length);