Searched refs:check_point (Results 1 – 1 of 1) sorted by relevance
69 const ListNode *check_point; // Check point of the test if there's a member1343 static int display_allocated_blocks(const ListNode * const check_point) { in display_allocated_blocks() argument1347 assert_true(check_point); in display_allocated_blocks()1348 assert_true(check_point->next); in display_allocated_blocks()1350 for (node = check_point->next; node != head; node = node->next) { in display_allocated_blocks()1367 static void free_allocated_blocks(const ListNode * const check_point) { in free_allocated_blocks() argument1370 assert_true(check_point); in free_allocated_blocks()1372 node = check_point->next; in free_allocated_blocks()1384 static void fail_if_blocks_allocated(const ListNode * const check_point, in fail_if_blocks_allocated() argument1386 const int allocated_blocks = display_allocated_blocks(check_point); in fail_if_blocks_allocated()[all …]