HomeSort by relevance Sort by last modified time
    Searched refs:leak (Results 76 - 100 of 223) sorted by null

1 2 34 5 6 7 8 9

  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
AbstractCollection.java 17 package com.android.systemui.util.leak;
RotationUtils.java 15 package com.android.systemui.util.leak;
TrackedObjects.java 17 package com.android.systemui.util.leak;
TrackedCollections.java 17 package com.android.systemui.util.leak;
WeakIdentityHashMap.java 17 package com.android.systemui.util.leak;
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/leak/
ReferenceTestUtils.java 17 package com.android.systemui.util.leak;
LeakDetectorTest.java 17 package com.android.systemui.util.leak;
24 import com.android.systemui.util.leak.ReferenceTestUtils.CollectionWaiter;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9110.go 7 // Scenario that used to leak arbitrarily many SudoG structs.
88 if int(stats2.HeapObjects)-int(stats1.HeapObjects) > 20 { // normally at most 1 or 2; was 300 with leak
89 print("BUG: object leak: ", stats.HeapObjects, " -> ", stats1.HeapObjects, " -> ", stats2.HeapObjects, "\n")
issue19743.go 18 // Bug was failure to leak param b.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9110.go 7 // Scenario that used to leak arbitrarily many SudoG structs.
88 if int(stats2.HeapObjects)-int(stats1.HeapObjects) > 20 { // normally at most 1 or 2; was 300 with leak
89 print("BUG: object leak: ", stats.HeapObjects, " -> ", stats1.HeapObjects, " -> ", stats2.HeapObjects, "\n")
issue19743.go 18 // Bug was failure to leak param b.
  /system/core/libmemunreachable/
MemUnreachable.cpp 33 #include "Leak.h"
50 const size_t Leak::contents_length;
59 bool GetUnreachableMemory(allocator::vector<Leak>& leaks, size_t limit, size_t* num_leaks,
131 bool MemUnreachable::GetUnreachableMemory(allocator::vector<Leak>& leaks, size_t limit,
152 allocator::vector<LeakFolding::Leak> leaked{allocator_};
158 allocator::unordered_map<Leak::Backtrace, Leak*> backtrace_map{allocator_};
166 Leak* leak = &leaks.back(); local
169 reinterpret_cast<void*>(it.range.begin), leak->backtrace.frames, leak->backtrace.max_frames)
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
LeakTest.java 67 ArrayList<WeakReference<byte[]>> leak = new ArrayList<>(); local
69 leak.add(new WeakReference<byte[]>(new byte[100]));
  /external/clang/test/Analysis/
pr22954.c 116 return 0; // expected-warning{{Potential leak of memory pointed to by 'a0.s2'}}
124 return 0; // expected-warning{{Potential leak of memory pointed to by 'a1.s2'}}
132 return 0; // expected-warning{{Potential leak of memory pointed to by 'a2.s2'}}
141 return 0; // expected-warning{{Potential leak of memory pointed to by 'a3.s2'}}
151 free(b0.a.s2); // expected-warning{{Potential leak of memory pointed to by 'b0.s2'}}
162 free(b0.s2); // expected-warning{{Potential leak of memory pointed to by 'b0.a.s2'}}
265 expected-warning{{Potential leak of memory pointed to by 'g0.s2'}}
286 expected-warning{{Potential leak of memory pointed to by 'h0.s2'}}
308 expected-warning{{Potential leak of memory pointed to by 'i18.s2'}}
325 expected-warning{{Potential leak of memory pointed to by 'i181.s2'}
    [all...]
  /external/valgrind/memcheck/tests/linux/
timerfd-syscall.stderr.exp 53 For a detailed leak analysis, rerun with: --leak-check=full
  /frameworks/support/fragment/src/androidTest/java/androidx/fragment/app/
FragmentTestUtil.java 236 ArrayList<WeakReference<byte[]>> leak = new ArrayList<>(); local
239 leak.add(arr);
240 } while (leak.get((int) (Math.random() * leak.size())).get() != null);
  /external/lz4/tests/
Makefile 353 valgrind --leak-check=yes --error-exitcode=1 ./datagen -g50M > $(VOID)
355 valgrind --leak-check=yes --error-exitcode=1 $(LZ4) -9 -BD -f tmp $(VOID)
358 valgrind --leak-check=yes --error-exitcode=1 $(LZ4) --force --multiple tmp tmp2 tmp3
360 valgrind --leak-check=yes --error-exitcode=1 $(LZ4) -9 -B5D -f tmp tmp2
361 valgrind --leak-check=yes --error-exitcode=1 $(LZ4) -t tmp2
362 valgrind --leak-check=yes --error-exitcode=1 $(LZ4) -bi1 tmp
363 valgrind --leak-check=yes --error-exitcode=1 ./fullbench -i1 tmp tmp2
365 valgrind --leak-check=yes --error-exitcode=1 $(LZ4) -B4D -f -vq tmp $(VOID)
367 valgrind --leak-check=yes --error-exitcode=1 ./fuzzer -i64 -t1
368 valgrind --leak-check=yes --error-exitcode=1 ./frametest -i25
    [all...]
  /prebuilts/go/darwin-x86/src/context/
example_test.go 14 // goroutine leak. By the end of the example function, the goroutine started
20 // they are done consuming generated integers not to leak
29 return // returning not to leak the goroutine
  /prebuilts/go/darwin-x86/test/
escape_array.go 90 // BAD: x need not leak.
108 // BAD: x need not leak.
116 // BAD: x need not leak.
escape_closure.go 49 // BAD: x should not leak here
90 // BAD: x should not leak
116 // BAD: x should not leak
  /prebuilts/go/linux-x86/src/context/
example_test.go 14 // goroutine leak. By the end of the example function, the goroutine started
20 // they are done consuming generated integers not to leak
29 return // returning not to leak the goroutine
  /prebuilts/go/linux-x86/test/
escape_array.go 90 // BAD: x need not leak.
108 // BAD: x need not leak.
116 // BAD: x need not leak.
escape_closure.go 49 // BAD: x should not leak here
90 // BAD: x should not leak
116 // BAD: x should not leak
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
lostcancel.go 17 var ctx, cancel = context.WithCancel() // ERROR "the cancel function is not used on all paths \(possible context leak\)"
31 ctx, _ := context.WithCancel() // ERROR "the cancel function returned by context.WithCancel should be called, not discarded, to avoid a context leak"
32 ctx, _ = context.WithTimeout() // ERROR "the cancel function returned by context.WithTimeout should be called, not discarded, to avoid a context leak"
33 ctx, _ = context.WithDeadline() // ERROR "the cancel function returned by context.WithDeadline should be called, not discarded, to avoid a context leak"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
lostcancel.go 17 var ctx, cancel = context.WithCancel() // ERROR "the cancel function is not used on all paths \(possible context leak\)"
31 ctx, _ := context.WithCancel() // ERROR "the cancel function returned by context.WithCancel should be called, not discarded, to avoid a context leak"
32 ctx, _ = context.WithTimeout() // ERROR "the cancel function returned by context.WithTimeout should be called, not discarded, to avoid a context leak"
33 ctx, _ = context.WithDeadline() // ERROR "the cancel function returned by context.WithDeadline should be called, not discarded, to avoid a context leak"

Completed in 378 milliseconds

1 2 34 5 6 7 8 9