22 void* allocation = ::operator
new(
length);
23 return std::unique_ptr<SkDescriptor>(
new (allocation)
SkDescriptor{});
26void SkDescriptor::operator
delete(
void*
p) { ::operator
delete(
p); }
27void* SkDescriptor::operator
new(size_t) {
28 SK_ABORT(
"Descriptors are created with placement new.");
32 buffer.writePad32(
static_cast<const void*
>(
this), this->fLength);
40 Entry* entry = (
Entry*)((
char*)
this + fLength);
53 fChecksum = SkDescriptor::ComputeChecksum(
this);
60 while (--
count >= 0) {
61 if (entry->
fTag == tag) {
67 entry = (
const Entry*)((
const char*)(entry + 1) + entry->
fLen);
74 memcpy(
desc.get(),
this, fLength);
83 const uint32_t* aa = (
const uint32_t*)
this;
84 const uint32_t* bb = (
const uint32_t*)&other;
85 const uint32_t* stop = (
const uint32_t*)((
const char*)aa + fLength);
98 result.appendf(
" Checksum: %x\n", fChecksum);
106 const uint32_t* ptr = (
const uint32_t*)
desc + 1;
107 size_t len =
desc->fLength -
sizeof(uint32_t);
112 uint32_t
count = fCount;
113 size_t lengthRemaining = this->fLength;
120 while (lengthRemaining > 0 &&
count > 0) {
121 if (lengthRemaining <
sizeof(
Entry)) {
124 lengthRemaining -=
sizeof(
Entry);
126 const Entry* entry = (
const Entry*)(
reinterpret_cast<const char*
>(
this) +
offset);
128 if (lengthRemaining < entry->fLen) {
131 lengthRemaining -= entry->
fLen;
141 return lengthRemaining == 0 &&
count == 0;
156 this->
reset(*that.getDesc());
159 that.fDesc =
nullptr;
164 this->
reset(*that.getDesc());
168 that.fDesc =
nullptr;
185 if (bodyLength >
buffer.available()) {
190 memcpy(ad.fDesc, &descriptorHeader,
sizeof(
SkDescriptor));
191 if (!
buffer.readPad32(SkTAddOffset<void>(ad.fDesc,
sizeof(
SkDescriptor)), bodyLength)) {
198#if defined(SK_BUILD_FOR_FUZZER)
199 SkDescriptor::ComputeChecksum(ad.getDesc());
201 if (SkDescriptor::ComputeChecksum(ad.getDesc()) != ad.getDesc()->fChecksum) {
return {}; }
203 if (!ad.getDesc()->isValid()) {
return {}; }
210 if (
size <=
sizeof(fStorage)) {
223void SkAutoDescriptor::free() {
225 fDesc->~SkDescriptor();
static constexpr T SkAlign4(T x)
#define SK_ABORT(message,...)
#define kRec_SkDescriptorTag
constexpr uint32_t SkToU32(S x)
SkAutoDescriptor & operator=(const SkAutoDescriptor &)
SkDescriptor * getDesc() const
static std::optional< SkAutoDescriptor > MakeFromBuffer(SkReadBuffer &buffer)
void * addEntry(uint32_t tag, size_t length, const void *data=nullptr)
void flatten(SkWriteBuffer &buffer) const
static std::unique_ptr< SkDescriptor > Alloc(size_t length)
std::unique_ptr< SkDescriptor > copy() const
uint32_t getLength() const
const void * findEntry(uint32_t tag, uint32_t *length) const
bool operator==(const SkDescriptor &other) const
uint32_t Hash32(const void *data, size_t bytes, uint32_t seed)
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
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
std::shared_ptr< const fml::Mapping > data