OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:deallocated
(Results
1 - 25
of
458
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Analysis/
MismatchedDeallocator-checker-test.mm
23
delete p; // expected-warning{{Memory allocated by malloc() should be
deallocated
by free(), not 'delete'}}
29
delete q; // expected-warning{{Memory allocated by realloc() should be
deallocated
by free(), not 'delete'}}
34
delete p; // expected-warning{{Memory allocated by calloc() should be
deallocated
by free(), not 'delete'}}
39
delete p; // expected-warning{{Memory allocated by strdup() should be
deallocated
by free(), not 'delete'}}
44
delete p; // expected-warning{{Memory allocated by my_malloc() should be
deallocated
by free(), not 'delete'}}
49
operator delete(p); // expected-warning{{Memory allocated by malloc() should be
deallocated
by free(), not operator delete}}
54
delete[] p; // expected-warning{{Memory allocated by malloc() should be
deallocated
by free(), not 'delete[]'}}
59
operator delete[](p); // expected-warning{{Memory allocated by malloc() should be
deallocated
by free(), not operator delete[]}}
65
free(p); // expected-warning{{Memory allocated by 'new' should be
deallocated
by 'delete', not free()}}
70
free(p); // expected-warning{{Memory allocated by operator new should be
deallocated
by 'delete', not free()}
[
all
...]
MismatchedDeallocator-path-notes.cpp
10
delete p; // expected-warning {{Memory allocated by 'new[]' should be
deallocated
by 'delete[]', not 'delete'}}
11
// expected-note@-1 {{Memory allocated by 'new[]' should be
deallocated
by 'delete[]', not 'delete'}}
141
// CHECK-NEXT: <string>Memory allocated by 'new[]' should be
deallocated
by 'delete[]', not 'delete'</string>
143
// CHECK-NEXT: <string>Memory allocated by 'new[]' should be
deallocated
by 'delete[]', not 'delete'</string>
146
// CHECK-NEXT: <key>description</key><string>Memory allocated by 'new[]' should be
deallocated
by 'delete[]', not 'delete'</string>
Malloc+MismatchedDeallocator+NewDelete.cpp
40
delete x; // expected-warning{{Memory allocated by malloc() should be
deallocated
by free(), not 'delete'}}
91
delete p; // expected-warning{{Memory allocated by malloc() should be
deallocated
by free(), not 'delete'}}
104
delete arr; // expected-warning{{Memory allocated by 'new[]' should be
deallocated
by 'delete[]', not 'delete'}}
free.c
53
free(p); // expected-warning {{Memory allocated by alloca() should not be
deallocated
}}
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
extension_installed_bubble_bridge.mm
21
// The controller is
deallocated
when the window is closed, so no need to
35
// The controller is
deallocated
when the window is closed, so no need to
/external/chromium_org/content/test/data/npapi/
plugin_delete_in_deallocate.html
39
that the object being
deallocated
is not
deallocated
a second time.
resize_during_paint.html
24
deallocated
memory isn't used.<br />
/cts/tests/tests/renderscript/src/android/renderscript/cts/
GlobalTest.java
22
* allocated/
deallocated
.
/external/chromium/chrome/browser/ui/cocoa/
about_ipc_dialog.mm
14
// The controller gets
deallocated
when then window is closed,
/external/chromium_org/chrome/browser/ui/cocoa/
about_ipc_dialog.mm
14
// The controller gets
deallocated
when then window is closed,
/external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrTextureUnitObj.h
15
// Although texture unit objects are allocated &
deallocated
like the other
/external/skia/src/gpu/gl/debug/
GrTextureUnitObj.h
15
// Although texture unit objects are allocated &
deallocated
like the other
/external/ceres-solver/internal/ceres/
cxsparse.h
75
// The returned matrix should be
deallocated
with Free when not used
81
// The returned matrix should be
deallocated
with Free when not used
87
// The returned matrix should be
deallocated
with Free when not used anymore.
93
// The returned matrix should be
deallocated
with Free when not used anymore.
105
// The returned matrix should be
deallocated
with Free when not used
/external/chromium_org/third_party/mesa/src/docs/
MESA_release_buffers.spec
65
deallocated
. True is returned if <d> is a valid Mesa GLX drawable,
/external/mesa3d/docs/
MESA_release_buffers.spec
65
deallocated
. True is returned if <d> is a valid Mesa GLX drawable,
/external/chromium_org/content/test/plugin/
plugin_delete_plugin_in_deallocate_test.cc
139
// Verify that our object was
deallocated
exactly once.
144
"Object was not
deallocated
exactly once.");
/external/chromium/base/memory/
singleton_objc.h
38
// are instantiated by sending |alloc| and |init| messages, and are
deallocated
/external/chromium_org/base/memory/
singleton_objc.h
37
// are instantiated by sending |alloc| and |init| messages, and are
deallocated
/external/valgrind/main/callgrind/
costs.h
19
* Chunks are allocated on demand, and
deallocated
at program termination.
/libcore/include/
LocalArray.h
26
* construction time, a buffer will be allocated on the heap (and
deallocated
/external/srec/shared/include/
HashMap.h
45
* The key can be safely
deallocated
after this operation.
172
* The key can be safely
deallocated
after this operation.
182
* The value can be safely
deallocated
after this operation.
184
* but not
deallocated
.
193
* The value can be safely
deallocated
after this operation.
/external/chromium_org/ppapi/proxy/
plugin_var_tracker.h
78
// the plugin or
deallocated
by WebKit over IPC.
86
// given user_data that has not been
deallocated
yet. Call this when
198
// (like by reading it out of the DOM). We will then have
deallocated
the
/external/chromium/chrome/browser/ui/cocoa/extensions/
extension_installed_bubble_bridge.mm
57
// The controller is
deallocated
when the window is closed, so no need to
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
srpc_params.cc
26
// This array will get
deallocated
by FreeArguments().
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
NPV8Object.h
49
// It is created with npCreateV8ScriptObject() and
deallocated
via the deallocate
Completed in 491 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>