OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:leaked
(Results
76 - 100
of
379
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Analysis/
retain-release-path-notes.m
46
id
leaked
= [[NSObject alloc] init]; // expected-warning{{leak}} expected-note{{Method returns an Objective-C object with a +1 retain count}}
47
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}}
51
CFTypeRef
leaked
= CFCreateSomething(); // expected-warning{{leak}} expected-note{{Call to function 'CFCreateSomething' returns a Core Foundation object with a +1 retain count}}
52
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}}
56
id
leaked
= [foo methodWithValue]; // expected-warning{{leak}} expected-note{{Method returns an Objective-C object with a +0 retain count}}
57
[
leaked
retain]; // expected-note{{Reference count incremented. The object now has a +1 retain count}}
58
[
leaked
retain]; // expected-note{{Reference count incremented. The object now has a +2 retain count}}
59
[
leaked
release]; // expected-note{{Reference count decremented. The object now has a +1 retain count}
[
all
...]
malloc-annotations.c
148
// then returned is not
leaked
. In the absence of known contracts for functions
157
// which is then returned is not
leaked
. In the absence of known contracts for
/cts/hostsidetests/appsecurity/test-apps/AppAccessData/src/com/android/cts/appaccessdata/
AccessPrivateDataTest.java
116
fail("Other apps detailed traffic stats
leaked
");
/external/chromium/chrome/browser/printing/
printer_query.cc
26
// If this fires, it is that this pending printer context has
leaked
.
/external/chromium/net/url_request/
url_request_job_tracker.h
20
// This allows us to warn on
leaked
jobs and also allows an observer to track
/external/chromium/testing/gmock/
CHANGES
58
* New feature: --gmock_catch_leaked_mocks for detecting
leaked
mocks.
/external/chromium/testing/gmock/test/
gmock_leak_test_.cc
34
// This program is for verifying that a
leaked
mock object can be
gmock_output_test_.cc
267
// Both foo1 and foo2 are deliberately
leaked
.
277
// foo is deliberately
leaked
.
/external/chromium_org/chrome/browser/printing/
printer_query.cc
28
// If this fires, it is that this pending printer context has
leaked
.
/external/chromium_org/chrome/browser/ui/startup/
session_crashed_infobar_delegate.cc
52
// info bars are
leaked
if they get closed while they're in background tabs.)
/external/chromium_org/content/browser/
notification_service_impl.cc
145
VLOG(1) << observer_counts_[i] << " notification observer(s)
leaked
"
/external/chromium_org/content/browser/webui/
url_data_source_impl.h
30
// has stopped by the time this happens the URLDataSources would be
leaked
.
/external/chromium_org/content/public/test/
mock_render_process_host.h
123
// the destructor and prevent them from being
leaked
.
/external/chromium_org/crypto/
p224_spake.h
21
// the password is
leaked
. (However, you must be sure to limit the number of
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.h
52
// a reference to the InjectedScriptHost may be
leaked
to the page being inspected. Thus, the
/external/chromium_org/third_party/libjingle/source/talk/base/
linuxfdwalk_unittest.cc
66
// I have observed that the open set when starting a test is [0, 6].
Leaked
/external/chromium_org/ui/shell_dialogs/
select_file_dialog.cc
31
// Optional dialog factory.
Leaked
.
/external/llvm/include/llvm/Support/
LeakDetector.h
12
// for example, are deleted when they are supposed to be, and not
leaked
away.
/external/llvm/lib/IR/
LeaksContext.h
71
errs() << "
Leaked
" << Name << " objects found: " << Message << ":\n";
/external/qemu/docs/
ANDROID-MEMCHECK.TXT
33
leaked
blocks the process left behind.
/external/valgrind/main/gdbserver_tests/
mcleak.stderr.exp
19
leaked
: 32 bytes in 1 blocks
/external/webrtc/src/system_wrappers/interface/
static_instance.h
47
// reachable from statics
leaked
so no noise is added by doing this.
/cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorProcessTest.java
239
// make sure red heard us get
leaked
240
assertContains("
leaked
", red.checkListener());
/external/chromium_org/base/containers/
mru_cache_unittest.cc
217
// There should be no objects
leaked
.
251
// There should be no objects
leaked
.
/external/chromium_org/ppapi/proxy/
plugin_var_tracker.h
182
// that the plugin owns is not
leaked
. We may not receive normal Deallocate
183
// calls from WebKit because the object could be
leaked
(attached to the DOM
Completed in 480 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>