HomeSort by relevance Sort by last modified time
    Searched full:leak (Results 601 - 625 of 2655) sorted by null

<<21222324252627282930>>

  /prebuilts/misc/windows/sdl2/include/
SDL_filesystem.h 52 * memory leak. This is not necessarily a fast call, though, so you should
107 * memory leak. This is not necessarily a fast call, though, so you should
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_filesystem.h 52 * memory leak. This is not necessarily a fast call, though, so you should
107 * memory leak. This is not necessarily a fast call, though, so you should
  /external/mesa3d/docs/relnotes/
8.0.3.html 152 <li>main: Fix memory leak in _mesa_make_extension_string()</li>
225 <li>darwin: Eliminate a pthread mutex leak</li>
309 <li>mesa: Fix memory leak in _mesa_get_uniform_location.</li>
310 <li>linker: Fix memory leak in count_uniform_size::visit_field.</li>
313 <li>mesa: Fix memory leak in generate_mipmap_compressed.</li>
9.1.3.html 151 <li>mesa: Don't leak shared state when context initialization fails</li>
152 <li>mesa: Don't leak gl_context::BeginEnd at context destruction</li>
180 <li>nvc0: Fix fd leak in nvc0_create_decoder</li>
  /external/libxml2/doc/
news.html 110 Fix memory leak in LZMA decompressor (Nick Wellnhofer),<br />
114 Fix memory leak in nanoftp (Nick Wellnhofer),<br />
158 Fix memory leak in xmlParseEntityDecl error path (Nick Wellnhofer),<br />
161 Fix memory leak in xmlStringLenGetNodeList (Nick Wellnhofer),<br />
163 Fix memory leak in xmlBufAttrSerializeTxtContent (Nick Wellnhofer),<br />
172 Fix memory leak in xmlCanonicPath (Nick Wellnhofer),<br />
173 Fix memory leak in xmlXPathCompareNodeSetValue (Nick Wellnhofer),<br />
174 Fix memory leak in pattern error path (Nick Wellnhofer),<br />
175 Fix memory leak in parser error path (Nick Wellnhofer),<br />
177 Fix memory leak in xmlXPathNodeSetMergeAndClear (Nick Wellnhofer),<br /
    [all...]
  /external/clang/test/Analysis/
properties.m 57 NSString *string1 = [[NSString alloc] initWithFormat:@"test %f", 0.0]; // expected-warning {{Potential leak}}
145 self.name = [[NSString alloc] init]; // expected-warning {{leak}}
156 p.name = [[NSString string] retain]; // expected-warning {{leak}}
157 p.name = [[NSString alloc] init]; // expected-warning {{leak}}
159 p.friend = [[Person alloc] init]; // expected-warning {{leak}}
379 NSNumber *number = [[NSNumber alloc] initWithInteger:5]; // expected-warning {{Potential leak of an object stored into 'number'}}
381 // Make sure we catch this leak.
malloc-plist.c 15 in++; // expected-warning {{leak}}
21 A[0] = 0;// expected-warning {{leak}}
29 return;// expected-warning {{leak}}
104 // Test that we refer to the last symbol used in the leak diagnostic.
195 } // expected-warning {{Potential leak of memory}}
206 my_malloc_into_struct(); // expected-warning {{Potential leak of memory}}
418 // CHECK-NEXT: <string>Potential leak of memory pointed to by &apos;p&apos;</string>
420 // CHECK-NEXT: <string>Potential leak of memory pointed to by &apos;p&apos;</string>
423 // CHECK-NEXT: <key>description</key><string>Potential leak of memory pointed to by &apos;p&apos;</string>
425 // CHECK-NEXT: <key>type</key><string>Memory leak</string
    [all...]
retain-release.m 378 // Test a leak.
382 CFDateRef date = CFDateCreate(0, t); // expected-warning{{leak}}
390 // Test a leak involving the return.
393 CFDateRef date = CFDateCreate(0, CFAbsoluteTimeGetCurrent()); // expected-warning{{leak}}
398 // Test a leak involving an overwrite.
401 CFDateRef date = CFDateCreate(0, CFAbsoluteTimeGetCurrent()); //expected-warning{{leak}}
403 date = CFDateCreate(0, CFAbsoluteTimeGetCurrent()); // expected-warning {{leak}}
412 CFDateRef date = MyDateCreate(); // expected-warning{{leak}}
430 DADiskRef disk = DADiskCreateFromBSDName(kCFAllocatorDefault, 0, "hello"); // expected-warning{{leak}}
433 disk = DADiskCreateFromIOMedia(kCFAllocatorDefault, 0, media); // expected-warning{{leak}}
    [all...]
  /external/clang/lib/Driver/
SanitizerArgs.cpp 34 SupportsCoverage = Address | Memory | Leak | Undefined | Integer | DataFlow,
310 std::make_pair(Thread, Memory), std::make_pair(Leak, Thread),
311 std::make_pair(Leak, Memory), std::make_pair(KernelAddress, Address),
312 std::make_pair(KernelAddress, Leak),
316 std::make_pair(Efficiency, Leak),
331 // FIXME: Currently -fsanitize=leak is silently ignored in the presence of
333 // -f(-no)sanitize=leak should change whether leak detection is enabled by
693 // We can't make this conditional on -fsanitize=leak, as that flag shouldn't
    [all...]
  /external/guice/core/src/com/google/inject/internal/
BytecodeGen.java 93 // to $FastClass doesn't leak into the class names. if we did not do this,
111 // to $Enhancer doesn't leak into the class names. if we did not do this,
225 * since it's OSGi-safe and doesn't leak permgen space. But often we cannot due to visibility.
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_l3_state.c 268 * context state changed by the GL would leak into the DDX, the assumption
272 * and cause it to misrender if we let our L3 set-up to leak into the DDX.
277 * of the batch will be redundant most of the time. A kind of state leak is
  /external/python/cpython3/Lib/ctypes/test/
test_callbacks.py 91 # a memory leak. A callback function cannot return a non-integral
92 # C type without causing a memory leak.
106 # ...but this call doesn't leak any more. Where is the refcount?
  /external/python/cpython3/Python/
modsupport.c 111 /* Note that we can't bail immediately on error as this will leak
155 /* Note that we can't bail immediately on error as this will leak
189 /* Note that we can't bail immediately on error as this will leak
  /external/wayland/tests/
test-runner.c 172 fprintf(stderr, "Memory leak detected in test. "
180 fprintf(stderr, "fd leak detected in test. "
186 fprintf(stderr, "Leak checks disabled\n");
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
ScreenPinningRequest.java 49 import com.android.systemui.util.leak.RotationUtils;
53 import static com.android.systemui.util.leak.RotationUtils.ROTATION_LANDSCAPE;
54 import static com.android.systemui.util.leak.RotationUtils.ROTATION_SEASCAPE;
  /frameworks/base/services/core/java/com/android/server/wm/
RemoteAnimationController.java 266 // In case the client holds on to the finish callback, make sure we don't leak
267 // RemoteAnimationController which in turn would leak the runner on the client.
277 * to prevent memory leak.
  /frameworks/support/lifecycle/runtime/src/main/java/androidx/lifecycle/
LifecycleRegistry.java 68 * Only WeakReference on LifecycleOwner is kept, so if somebody leaks Lifecycle, they won't leak
69 * the whole Fragment / Activity. However, to leak Lifecycle object isn't great idea neither,
70 * because it keeps strong references on all other listeners, so you'll leak all of them as
  /external/valgrind/
NEWS 47 Memcheck can also produce XTree leak reports using the Callgrind file
87 - New command line options --xtree-leak=no|yes and --xtree-leak-file=<file>
88 to produce the end of execution leak report in a xtree callgrind format
92 the leak report in an xtree file.
227 377717 Fix massive space leak when reading compressed debuginfo sections
571 - The default value for --leak-check-heuristics has been changed from
    [all...]
  /external/valgrind/docs/html/
dist.news.html 70 ??Memcheck?can?also?produce?XTree?leak?reports?using?the?Callgrind?file<br>
110 ??-?New?command?line?options?--xtree-leak=no|yes?and?--xtree-leak-file=&lt;file&gt;<br>
111 ????to?produce?the?end?of?execution?leak?report?in?a?xtree?callgrind?format<br>
115 ????the?leak?report?in?an?xtree?file.<br>
250 377717??Fix?massive?space?leak?when?reading?compressed?debuginfo?sections<br>
594 ??-?The?default?value?for?--leak-check-heuristics?has?been?changed?from<br>
    [all...]
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
Utils.java 60 // there could be a memory leak.
  /device/linaro/bootloader/OpenPlatformPkg/Documentation/Marvell/Drivers/
SpiDriver.txt 55 function) in order to prevent from memory leak.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
modsupport.c 24 Errors may still leak memory.
169 /* Note that we can't bail immediately on error as this will leak
216 /* Note that we can't bail immediately on error as this will leak
265 /* Note that we can't bail immediately on error as this will leak
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
modsupport.c 24 Errors may still leak memory.
169 /* Note that we can't bail immediately on error as this will leak
216 /* Note that we can't bail immediately on error as this will leak
265 /* Note that we can't bail immediately on error as this will leak
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbynis.c 83 /* avoid potential memory leak */
  /external/ImageMagick/Magick++/
NEWS 61 * Bugfix for Magick::Exception memory leak.
81 * Fixed memory leak in Image::draw().
84 exit to avoid annoying memory leak tools.
269 leak if it was used. Fixed by starting reference count from one

Completed in 1408 milliseconds

<<21222324252627282930>>