Flutter Engine
 
Loading...
Searching...
No Matches
flutter::ByteBufferStreamReader Class Reference

#include <byte_buffer_streams.h>

Inheritance diagram for flutter::ByteBufferStreamReader:
flutter::ByteStreamReader

Public Member Functions

 ByteBufferStreamReader (const uint8_t *bytes, size_t size)
 
virtual ~ByteBufferStreamReader ()=default
 
uint8_t ReadByte () override
 
void ReadBytes (uint8_t *buffer, size_t length) override
 
void ReadAlignment (uint8_t alignment) override
 
- Public Member Functions inherited from flutter::ByteStreamReader
 ByteStreamReader ()=default
 
virtual ~ByteStreamReader ()=default
 
int32_t ReadInt32 ()
 
int64_t ReadInt64 ()
 
double ReadDouble ()
 

Detailed Description

Definition at line 19 of file byte_buffer_streams.h.

Constructor & Destructor Documentation

◆ ByteBufferStreamReader()

flutter::ByteBufferStreamReader::ByteBufferStreamReader ( const uint8_t *  bytes,
size_t  size 
)
inlineexplicit

Definition at line 23 of file byte_buffer_streams.h.

24 : bytes_(bytes), size_(size) {}
it will be possible to load the file into Perfetto s trace viewer use test Running tests that layout and measure text will not yield consistent results across various platforms Enabling this option will make font resolution default to the Ahem test font on all disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size

◆ ~ByteBufferStreamReader()

virtual flutter::ByteBufferStreamReader::~ByteBufferStreamReader ( )
virtualdefault

Member Function Documentation

◆ ReadAlignment()

void flutter::ByteBufferStreamReader::ReadAlignment ( uint8_t  alignment)
inlineoverridevirtual

Implements flutter::ByteStreamReader.

Definition at line 48 of file byte_buffer_streams.h.

48 {
49 uint8_t mod = location_ % alignment;
50 if (mod) {
51 location_ += alignment - mod;
52 }
53 }

◆ ReadByte()

uint8_t flutter::ByteBufferStreamReader::ReadByte ( )
inlineoverridevirtual

Implements flutter::ByteStreamReader.

Definition at line 29 of file byte_buffer_streams.h.

29 {
30 if (location_ >= size_) {
31 std::cerr << "Invalid read in StandardCodecByteStreamReader" << std::endl;
32 return 0;
33 }
34 return bytes_[location_++];
35 }

Referenced by flutter::StandardMethodCodec::DecodeAndProcessResponseEnvelopeInternal().

◆ ReadBytes()

void flutter::ByteBufferStreamReader::ReadBytes ( uint8_t *  buffer,
size_t  length 
)
inlineoverridevirtual

Implements flutter::ByteStreamReader.

Definition at line 38 of file byte_buffer_streams.h.

38 {
39 if (location_ + length > size_) {
40 std::cerr << "Invalid read in StandardCodecByteStreamReader" << std::endl;
41 return;
42 }
43 std::memcpy(buffer, &bytes_[location_], length);
44 location_ += length;
45 }
size_t length

References flutter::buffer, and length.


The documentation for this class was generated from the following file: