Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
FuzzAPICreateDDL.cpp File Reference
#include "fuzz/Fuzz.h"
#include "tools/fonts/FontToolUtils.h"

Go to the source code of this file.

Functions

void fuzz_CreateDDL (Fuzz *f)
 
int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
 

Function Documentation

◆ fuzz_CreateDDL()

void fuzz_CreateDDL ( Fuzz f)

◆ LLVMFuzzerTestOneInput()

int LLVMFuzzerTestOneInput ( const uint8_t *  data,
size_t  size 
)

Definition at line 13 of file FuzzAPICreateDDL.cpp.

13 {
14 if (size > 4000) {
15 return 0;
16 }
18 auto fuzz = Fuzz(data, size);
19 fuzz_CreateDDL(&fuzz);
20 return 0;
21}
void fuzz_CreateDDL(Fuzz *f)
Definition Fuzz.h:24
void UsePortableFontMgr()