OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:leaked
(Results
51 - 75
of
379
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Analysis/
cfref_PR2519.c
29
// reported as being
leaked
).
retain-release-path-notes-gc.m
43
CFTypeRef
leaked
= CFCreateSomething(); // expected-warning{{leak}} expected-note{{Call to function 'CFCreateSomething' returns a Core Foundation object with a +1 retain count. Core Foundation objects are not automatically garbage collected}}
44
return; // expected-note{{Object
leaked
: object allocated and stored into '
leaked
' is not referenced later in this execution path and has a retain count of +1}}
48
CFTypeRef
leaked
= CFCreateSomething(); // expected-warning{{leak}} expected-note{{Call to function 'CFCreateSomething' returns a Core Foundation object with a +1 retain count. Core Foundation objects are not automatically garbage collected}}
49
CFRetain(
leaked
); // expected-note{{Reference count incremented. The object now has a +2 retain count}}
50
CFMakeCollectable(
leaked
); // expected-note{{In GC mode a call to 'CFMakeCollectable' decrements an object's retain count and registers the object with the garbage collector. An object must have a 0 retain count to be garbage collected. After this call its retain count is +1}}
51
NSMakeCollectable(
leaked
); // expected-note{{In GC mode a call to 'NSMakeCollectable' decrements an object's retain count and registers the object with the garbage collector. Since it now has a 0 retain count the object can be automatically collected by the garbage collector}}
52
CFRetain(
leaked
); // expected-note{{Reference count incremented. The object now has a +1 retain count. The object is not eligible for garbage collection until the retain count reaches 0 again}}
53
return; // expected-note{{Object
leaked
: object allocated and stored into '
leaked
' is not referenced later in this execution path and has a retain count of +1}
[
all
...]
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
stale_stack_leak.cc
39
// CHECK: Directly
leaked
1337 byte object at [[ADDR]]
/external/llvm/lib/Support/
StringPool.cpp
22
assert(InternTable.empty() && "PooledStringPtr
leaked
!");
/external/chromium/testing/gmock/test/
gmock_output_test.py
105
"""Removes the test names of
leaked
mock objects from the test output."""
127
leaked
mocks).
166
# The raw output should contain 2
leaked
mock object errors for
gmock_leak_test.py
32
"""Tests that
leaked
mock objects can be caught be Google Mock."""
/external/chromium_org/ppapi/tests/
test_case.cc
216
output << "FAILED: Test
leaked
" << leaked_resources << " resources.\n";
224
//
leaked
. Worst case, we just won't print the little "Test
leaked
" message,
225
// but we'll still print any non-ignored
leaked
vars we found.
230
output << "Test
leaked
" << leaked_vars << " vars (printing at most "
/external/chromium/chrome/browser/themes/
theme_service_gtk.cc
54
// This bitmap will be
leaked
, but this code should never be hit.
/external/chromium/net/disk_cache/
stats_histogram.cc
35
// To avoid racy destruction at shutdown, the following will be
leaked
.
/external/chromium_org/dbus/
file_descriptor.h
15
// where the descriptor might be easily
leaked
. To guard against this the
/external/chromium_org/third_party/icu/source/test/cintltst/
cctest.c
17
/* This makes sure that a converter isn't
leaked
when an error is passed to
/external/chromium_org/third_party/libxml/src/
testRegexp.c
119
printf(" Parse/free of Expression
leaked
%d\n",
161
printf(" Subsume
leaked
%d\n",
167
printf(" Parse/free
leaked
%d\n",
178
printf(" Parse/free of Expression
leaked
%d\n",
/external/chromium_org/third_party/sqlite/src/test/
malloc8.test
89
# Ensure that no file descriptors were
leaked
.
mallocA.test
71
# Ensure that no file descriptors were
leaked
.
/external/chromium_org/third_party/tcmalloc/vendor/doc/
heap_checker.html
297
If true, generate the addresses of the
leaked
objects in the
363
allocates the
leaked
objects, but also the addresses of the
leaked
objects.
366
made at a certain spot in the code are
leaked
.
368
To get the addresses of all
leaked
objects
451
leaked
objects being erroneously determined to be live. For instance,
452
random bit patterns can happen to look like pointers to
leaked
heap
484
leaked
objects' allocation sites, as well as a pprof command line that can be
512
very recently became unreachable (
leaked
). This can happen when the
/external/chromium_org/tools/gn/
command_gen.cc
45
// Deliberately
leaked
to avoid expensive process teardown.
commands.cc
48
// Deliberately
leaked
to avoid expensive process teardown.
commands.h
59
// Note that a lot of memory is
leaked
to avoid proper teardown under the
/external/compiler-rt/lib/lsan/
lsan_common.cc
115
// chunks (|tag| = kReachable or kIgnored) and finding indirectly
leaked
chunks
133
// Reachable beats ignored beats
leaked
.
224
// ForEachChunk callback. If the chunk is marked as
leaked
, marks all chunks
225
// which are reachable from it as indirectly
leaked
.
266
// Iterate over
leaked
chunks and mark those that are reachable from other
267
//
leaked
chunks.
269
Report("Scanning
leaked
chunks.\n");
307
Printf("%s
leaked
%zu byte object at %p.\n",
490
"LeakSanitizer: %zu byte(s)
leaked
in %zu allocation(s).",
/external/icu4c/test/cintltst/
cctest.c
17
/* This makes sure that a converter isn't
leaked
when an error is passed to
/external/valgrind/main/memcheck/tests/
leak-cycle.stderr.exp
0
leaked
: 288 bytes in 18 blocks
leak.h
34
fprintf(where,"
leaked
: %3ld bytes in %2ld blocks\n", \
/system/extras/tests/bionic/libc/other/
test_vfprintf_leak.c
29
* the initial code
leaked
heap memory each time a formatted double was printed
/external/clang/lib/StaticAnalyzer/Checkers/
SimpleStreamChecker.cpp
177
// A symbol should only be considered
leaked
if it is non-null.
195
// Collect
leaked
symbols.
229
// TODO: Identify the
leaked
file descriptor.
/external/stlport/test/eh/
LeakCheck.h
187
bool
leaked
= gTestController.ReportLeaked();
local
188
EH_ASSERT( !
leaked
);
189
if (
leaked
)
Completed in 225 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>