Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/tests/
DTestUtils.cpp29 size_t last_allocated_bytes = 0; in TestCheckForLeaks() local
36 } else if (last_allocated_bytes > first_allocated_bytes) { in TestCheckForLeaks()
38 ASSERT_LE(last_allocated_bytes - first_allocated_bytes, kMaxAllowedLeakBytes) in TestCheckForLeaks()
41 last_allocated_bytes = allocated_bytes; in TestCheckForLeaks()
DDexFileTest.cpp39 static void CheckForLeak(size_t loop, size_t* first_allocated_bytes, size_t* last_allocated_bytes) { in CheckForLeak() argument
43 } else if (*last_allocated_bytes > *first_allocated_bytes) { in CheckForLeak()
45 ASSERT_LE(*last_allocated_bytes - *first_allocated_bytes, kMaxAllowedLeakBytes) in CheckForLeak()
47 << " last_allocated_bytes " << *last_allocated_bytes; in CheckForLeak()
49 *last_allocated_bytes = allocated_bytes; in CheckForLeak()
60 size_t last_allocated_bytes = 0; in TEST() local
65 ASSERT_NO_FATAL_FAILURE(CheckForLeak(i, &first_allocated_bytes, &last_allocated_bytes)); in TEST()
75 size_t last_allocated_bytes = 0; in TEST() local
78 ASSERT_NO_FATAL_FAILURE(CheckForLeak(i, &first_allocated_bytes, &last_allocated_bytes)); in TEST()
/system/unwinding/libbacktrace/
Dbacktrace_test.cpp1863 size_t last_allocated_bytes = 0; in CheckForLeak() local
1874 } else if (last_allocated_bytes > first_allocated_bytes) { in CheckForLeak()
1876 ASSERT_LE(last_allocated_bytes - first_allocated_bytes, MAX_LEAK_BYTES); in CheckForLeak()
1878 last_allocated_bytes = allocated_bytes; in CheckForLeak()