MCPcopy Create free account
hub / github.com/apache/arrow / fuzzing_memory_pool

Function fuzzing_memory_pool

cpp/src/arrow/util/fuzz_internal.cc:31–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29namespace arrow::internal {
30
31MemoryPool* fuzzing_memory_pool() {
32 static auto pool = std::make_shared<::arrow::CappedMemoryPool>(
33 ::arrow::default_memory_pool(), /*bytes_allocated_limit=*/kFuzzingMemoryLimit);
34 return pool.get();
35}
36
37void LogFuzzStatus(const Status& st, const uint8_t* data, int64_t size) {
38 static const int kVerbosity = []() {

Callers 3

FuzzingOptionsFunction · 0.85
FuzzReaderFunction · 0.85
poolFunction · 0.85

Calls 2

default_memory_poolFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected