HomeSort by relevance Sort by last modified time
    Searched defs:Leak (Results 1 - 7 of 7) sorted by null

  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
sanitizer_set_death_callback_test.cc 32 void Leak() {
47 Leak();
  /external/compiler-rt/lib/lsan/
lsan_common.h 61 struct Leak {
93 InternalMmapVector<Leak> leaks_;
152 // leak checking and also before every call to pthread_create() (to handle cases
153 // where leak checking is initiated from a non-main thread).
lsan_common.cc 11 // Implementation of common leak checking functionality.
64 static const char kSuppressionLeak[] = "leak";
108 const char *Leak() { return Blue(); }
490 Leak leak = { next_id_++, /* hit_count */ 1, leaked_size, stack_trace_id,
492 leaks_.push_back(leak);
500 static bool LeakComparator(const Leak &leak1, const Leak &leak2) {
517 Printf("The %zu top leak(s):\n", num_leaks_to_report);
528 Printf("Omitting %zu more leak(s).\n", remaining)
    [all...]
  /external/lldb/source/Expression/
IRMemoryMap.cpp 355 IRMemoryMap::Leak (lldb::addr_t process_address, Error &error)
364 error.SetErrorString("Couldn't leak: allocation doesn't exist");
  /external/v8/include/
v8-util.h 272 *reference = Leak(&value);
328 static PersistentContainerValue Leak(
  /external/valgrind/memcheck/
mc_errors.c 171 // A memory leak.
176 } Leak;
681 UInt n_this_record = extra->Err.Leak.n_this_record;
682 UInt n_total_records = extra->Err.Leak.n_total_records;
683 LossRecord* lr = extra->Err.Leak.lr;
881 extra.Err.Leak.n_this_record = n_this_record;
882 extra.Err.Leak.n_total_records = n_total_records;
883 extra.Err.Leak.lr = lr;
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 89 ErrorLeak, // A memory leak due to excessive reference counts.
90 ErrorLeakReturned, // A memory leak due to the returning method not having
    [all...]

Completed in 309 milliseconds