Home
last modified time | relevance | path

Searched refs:allocator (Results 1 – 4 of 4) sorted by relevance

/tools/security/fuzzing/orphans/widevine/trusty/
Ddispatch_fuzzer.cpp91 BufferAllocator allocator; in LLVMFuzzerInitialize() local
93 wv_msg_buf_fd.reset(allocator.Alloc(kDmabufSystemHeapName, WV_MESSAGE_BUFFER_SIZE)); in LLVMFuzzerInitialize()
106 wv_shared_buf_fd.reset(allocator.Alloc(kDmabufSystemHeapName, WV_SHARED_BUFFER_SIZE)); in LLVMFuzzerInitialize()
/tools/dexter/dexter/
Ddexter.cc272 Allocator allocator; in CreateNewImage() local
278 new_image = writer.CreateImage(&allocator, &new_image_size); in CreateNewImage()
287 allocator.Free(new_image); in CreateNewImage()
/tools/dexter/slicer/export/slicer/
Dwriter.h186 dex::u1* CreateImage(Allocator* allocator, size_t* new_image_size);
/tools/dexter/slicer/
Dwriter.cc244 dex::u1* Writer::CreateImage(Allocator* allocator, size_t* new_image_size) { in CreateImage() argument
297 dex::u1* image = static_cast<dex::u1*>(allocator->Allocate(image_size)); in CreateImage()