Flutter Engine
The Flutter Engine
io_buffer.h
Go to the documentation of this file.
1// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5#ifndef RUNTIME_BIN_IO_BUFFER_H_
6#define RUNTIME_BIN_IO_BUFFER_H_
7
8#include "include/dart_api.h"
9#include "platform/globals.h"
10
11namespace dart {
12namespace bin {
13
14class IOBuffer {
15 public:
16 // Allocate an IO buffer dart object (of type Uint8List) backed by
17 // an external byte array.
18 static Dart_Handle Allocate(intptr_t size, uint8_t** buffer);
19
20 // Allocate IO buffer storage.
21 static uint8_t* Allocate(intptr_t size);
22
23 // Reallocate IO buffer storage.
24 static uint8_t* Reallocate(uint8_t* buffer, intptr_t new_size);
25
26 // Function for disposing of IO buffer storage. All backing storage
27 // for IO buffers must be freed using this function.
28 static void Free(void* buffer) { free(buffer); }
29
30 // Function for finalizing external byte arrays used as IO buffers.
31 static void Finalizer(void* isolate_callback_data, void* buffer) {
32 Free(buffer);
33 }
34
35 private:
36 DISALLOW_ALLOCATION();
37 DISALLOW_IMPLICIT_CONSTRUCTORS(IOBuffer);
38};
39
40} // namespace bin
41} // namespace dart
42
43#endif // RUNTIME_BIN_IO_BUFFER_H_
static void Free(void *buffer)
Definition: io_buffer.h:28
static void Finalizer(void *isolate_callback_data, void *buffer)
Definition: io_buffer.h:31
static Dart_Handle Allocate(intptr_t size, uint8_t **buffer)
Definition: io_buffer.cc:12
static uint8_t * Reallocate(uint8_t *buffer, intptr_t new_size)
Definition: io_buffer.cc:34
struct _Dart_Handle * Dart_Handle
Definition: dart_api.h:258
Definition: dart_vm.cc:33
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