Searched refs:print_errors (Results 1 – 6 of 6) sorted by relevance
/hal_espressif-3.4.0/components/heap/ |
D | multi_heap_poisoning.c | 92 static poison_head_t *verify_allocated_region(void *data, bool print_errors) in verify_allocated_region() argument 99 if (print_errors) { in verify_allocated_region() 115 if (print_errors) { in verify_allocated_region() 135 static bool verify_fill_pattern(void *data, size_t size, bool print_errors, bool expect_free, bool … in verify_fill_pattern() argument 149 if (print_errors) { in verify_fill_pattern() 172 if (print_errors) { in verify_fill_pattern() 391 …ulti_heap_internal_check_block_poisoning(void *start, size_t size, bool is_free, bool print_errors) in multi_heap_internal_check_block_poisoning() argument 395 return verify_fill_pattern(start, size, print_errors, true, false); in multi_heap_internal_check_block_poisoning() 401 poison_head_t *head = verify_allocated_region(data, print_errors); in multi_heap_internal_check_block_poisoning() 405 if (print_errors) { in multi_heap_internal_check_block_poisoning()
|
D | heap_caps.c | 535 bool heap_caps_check_integrity(uint32_t caps, bool print_errors) in heap_caps_check_integrity() argument 544 valid = multi_heap_check(heap->heap, print_errors) && valid; in heap_caps_check_integrity() 551 bool heap_caps_check_integrity_all(bool print_errors) in heap_caps_check_integrity_all() argument 553 return heap_caps_check_integrity(MALLOC_CAP_INVALID, print_errors); in heap_caps_check_integrity_all() 556 bool heap_caps_check_integrity_addr(intptr_t addr, bool print_errors) in heap_caps_check_integrity_addr() argument 562 return multi_heap_check(heap->heap, print_errors); in heap_caps_check_integrity_addr()
|
D | multi_heap_internal.h | 47 …lti_heap_internal_check_block_poisoning(void *start, size_t size, bool is_free, bool print_errors);
|
D | multi_heap.c | 288 bool multi_heap_check(multi_heap_handle_t heap, bool print_errors) in multi_heap_check() argument 290 (void)print_errors; in multi_heap_check()
|
/hal_espressif-3.4.0/components/heap/include/ |
D | esp_heap_caps.h | 259 bool heap_caps_check_integrity_all(bool print_errors); 277 bool heap_caps_check_integrity(uint32_t caps, bool print_errors); 300 bool heap_caps_check_integrity_addr(intptr_t addr, bool print_errors);
|
D | multi_heap.h | 140 bool multi_heap_check(multi_heap_handle_t heap, bool print_errors);
|