Flutter Engine
The Flutter Engine
Public Member Functions | List of all members
SkHeifStreamWrapper Struct Reference
Inheritance diagram for SkHeifStreamWrapper:
HeifStream

Public Member Functions

 SkHeifStreamWrapper (SkStream *stream)
 
 ~SkHeifStreamWrapper () override
 
size_t read (void *buffer, size_t size) override
 
bool rewind () override
 
bool seek (size_t position) override
 
bool hasLength () const override
 
size_t getLength () const override
 
- Public Member Functions inherited from HeifStream
virtual ~HeifStream ()
 
virtual size_t read (void *, size_t)=0
 
virtual bool rewind ()=0
 
virtual bool seek (size_t)=0
 
virtual bool hasLength () const =0
 
virtual size_t getLength () const =0
 

Detailed Description

Definition at line 112 of file SkHeifCodec.cpp.

Constructor & Destructor Documentation

◆ SkHeifStreamWrapper()

SkHeifStreamWrapper::SkHeifStreamWrapper ( SkStream stream)
inline

Definition at line 113 of file SkHeifCodec.cpp.

◆ ~SkHeifStreamWrapper()

SkHeifStreamWrapper::~SkHeifStreamWrapper ( )
inlineoverride

Definition at line 115 of file SkHeifCodec.cpp.

115{}

Member Function Documentation

◆ getLength()

size_t SkHeifStreamWrapper::getLength ( ) const
inlineoverridevirtual

Implements HeifStream.

Definition at line 133 of file SkHeifCodec.cpp.

133 {
134 return fStream->getLength();
135 }

◆ hasLength()

bool SkHeifStreamWrapper::hasLength ( ) const
inlineoverridevirtual

Implements HeifStream.

Definition at line 129 of file SkHeifCodec.cpp.

129 {
130 return fStream->hasLength();
131 }

◆ read()

size_t SkHeifStreamWrapper::read ( void *  buffer,
size_t  size 
)
inlineoverridevirtual

Implements HeifStream.

Definition at line 117 of file SkHeifCodec.cpp.

117 {
118 return fStream->read(buffer, size);
119 }
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
it will be possible to load the file into Perfetto s trace viewer 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
Definition: switches.h:259

◆ rewind()

bool SkHeifStreamWrapper::rewind ( )
inlineoverridevirtual

Implements HeifStream.

Definition at line 121 of file SkHeifCodec.cpp.

121 {
122 return fStream->rewind();
123 }

◆ seek()

bool SkHeifStreamWrapper::seek ( size_t  position)
inlineoverridevirtual

Implements HeifStream.

Definition at line 125 of file SkHeifCodec.cpp.

125 {
126 return fStream->seek(position);
127 }

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