HomeSort by relevance Sort by last modified time
    Searched refs:leaked (Results 1 - 15 of 15) sorted by null

  /system/core/libmemunreachable/tests/
LeakFolding_test.cpp 56 allocator::vector<LeakFolding::Leak> leaked(heap_);
59 ASSERT_EQ(true, folding.Leaked(leaked, &num_leaks, &leaked_bytes));
63 ASSERT_EQ(1U, leaked.size());
64 EXPECT_EQ(0U, leaked[0].referenced_count);
65 EXPECT_EQ(0U, leaked[0].referenced_size);
81 allocator::vector<LeakFolding::Leak> leaked(heap_);
84 ASSERT_EQ(true, folding.Leaked(leaked, &num_leaks, &leaked_bytes));
88 ASSERT_EQ(2U, leaked.size())
    [all...]
HeapWalker_test.cpp 88 allocator::vector<Range> leaked(heap_);
91 ASSERT_EQ(true, heap_walker.Leaked(leaked, 100, &num_leaks, &leaked_bytes));
95 ASSERT_EQ(1U, leaked.size());
96 EXPECT_EQ(buffer_begin(buffer2), leaked[0].begin);
97 EXPECT_EQ(buffer_end(buffer2), leaked[0].end);
116 allocator::vector<Range> leaked(heap_);
119 ASSERT_EQ(true, heap_walker.Leaked(leaked, 100, &num_leaks, &leaked_bytes));
123 EXPECT_EQ(0U, leaked.size())
    [all...]
  /external/valgrind/memcheck/tests/
error_counts.c 13 int* leaked __attribute__((unused)); local
43 leaked = malloc(77);
44 leaked = 0;
leak_cpp_interior.stderr.exp 34 To see details of leaked memory, give 'full' arg to leak_check
46 To see details of leaked memory, give 'full' arg to leak_check
58 To see details of leaked memory, give 'full' arg to leak_check
70 To see details of leaked memory, give 'full' arg to leak_check
84 To see details of leaked memory, give 'full' arg to leak_check
98 To see details of leaked memory, give 'full' arg to leak_check
112 To see details of leaked memory, give 'full' arg to leak_check
lks.stderr.exp 10 Rerun with --leak-check=full to see details of leaked memory
12 leaked: 80 bytes in 5 blocks
leak-segv-jmp.stderr.exp 89 Rerun with --leak-check=full to see details of leaked memory
91 leaked: 1000 bytes in 1 blocks
  /external/clang/test/Modules/
explicit-build-flags.cpp 45 #error FOO leaked from module
  /external/compiler-rt/test/lsan/TestCases/
swapcontext.cc 22 int *leaked = new int[666]; local
47 // CHECK: SUMMARY: {{(Leak|Address)}}Sanitizer: 2664 byte(s) leaked in 1 allocation(s)
  /external/valgrind/memcheck/
memcheck.h 194 which there was an increase in leaked bytes or leaked nr of blocks
201 increased or decreased leaked bytes/blocks since previous leak
212 /* Return number of leaked, dubious, reachable and suppressed bytes found by
214 #define VALGRIND_COUNT_LEAKS(leaked, dubious, reachable, suppressed) \
217 specified, which works no matter what type 'leaked', 'dubious', etc
228 leaked = _qzz_leaked; \
234 /* Return number of leaked, dubious, reachable and suppressed bytes found by
236 #define VALGRIND_COUNT_LEAK_BLOCKS(leaked, dubious, reachable, suppressed) \
239 specified, which works no matter what type 'leaked', 'dubious', et
    [all...]
  /external/jemalloc/msvc/projects/vc2015/test_threads/
test_threads.cpp 82 size_t leaked = allocated2 - allocated1; local
83 printf("\nDone. Leaked: %zd bytes\n", leaked);
84 bool failed = leaked > 65536; // in case C++ runtime allocated something (e.g. iostream locale or facet)
  /system/core/libmemunreachable/
HeapWalker.cpp 119 bool HeapWalker::Leaked(allocator::vector<Range>& leaked, size_t limit,
121 leaked.clear();
136 leaked.push_back(it->first);
LeakFolding.h 36 bool Leaked(allocator::vector<Leak>& leaked,
LeakFolding.cpp 75 // Find all leaked allocations insert them into leak_map_ and leak_graph_
87 // Find references between leaked allocations and connect them in leak_graph_
113 bool LeakFolding::Leaked(allocator::vector<LeakFolding::Leak>& leaked,
126 leaked.emplace_back(Leak{leak.range,
MemUnreachable.cpp 134 heap_walker_.Leaked(leaked1, 0, num_leaks, leak_bytes);
145 allocator::vector<LeakFolding::Leak> leaked{allocator_};
147 if (!folding.Leaked(leaked, num_leaks, leak_bytes)) {
155 leaks.reserve(leaked.size());
157 for (auto& it: leaked) {
  /external/v8/test/mjsunit/
track-fields.js 129 // Ensure double storage is not leaked in the case of polymorphic loads.

Completed in 128 milliseconds