Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
dart::bin::BufferListBase::BufferListNode Class Reference

#include <process.h>

Public Member Functions

 BufferListNode (intptr_t size)
 
 ~BufferListNode ()
 
bool Valid () const
 
uint8_t * data () const
 
BufferListNodenext () const
 
void set_next (BufferListNode *n)
 

Detailed Description

Definition at line 230 of file process.h.

Constructor & Destructor Documentation

◆ BufferListNode()

dart::bin::BufferListBase::BufferListNode::BufferListNode ( intptr_t  size)
inlineexplicit

Definition at line 232 of file process.h.

232 {
233 data_ = new uint8_t[size];
234 // We check for a failed allocation below in Allocate()
235 next_ = nullptr;
236 }
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

◆ ~BufferListNode()

dart::bin::BufferListBase::BufferListNode::~BufferListNode ( )
inline

Definition at line 238 of file process.h.

238{ delete[] data_; }

Member Function Documentation

◆ data()

uint8_t * dart::bin::BufferListBase::BufferListNode::data ( ) const
inline

Definition at line 242 of file process.h.

242{ return data_; }

◆ next()

BufferListNode * dart::bin::BufferListBase::BufferListNode::next ( ) const
inline

Definition at line 243 of file process.h.

243{ return next_; }

◆ set_next()

void dart::bin::BufferListBase::BufferListNode::set_next ( BufferListNode n)
inline

Definition at line 244 of file process.h.

244{ next_ = n; }

◆ Valid()

bool dart::bin::BufferListBase::BufferListNode::Valid ( ) const
inline

Definition at line 240 of file process.h.

240{ return data_ != nullptr; }

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