Home
last modified time | relevance | path

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

/external/cmockery/cmockery_0_1_2/src/
Dcmockery.c69 const ListNode *check_point; // Check point of the test if there's a member
1343 static int display_allocated_blocks(const ListNode * const check_point) { in display_allocated_blocks() argument
1347 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() argument
1370 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() argument
1386 const int allocated_blocks = display_allocated_blocks(check_point); in fail_if_blocks_allocated()
[all …]