Home
last modified time | relevance | path

Searched refs:IsCorrupt (Results 1 – 12 of 12) sorted by relevance

/external/libchrome/base/metrics/
Dpersistent_memory_allocator_unittest.cc158 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
302 } while (!allocator_->IsCorrupt() && !allocator_->IsFull()); in TEST_F()
310 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
383 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
464 } while (!allocator_->IsCorrupt() && !allocator_->IsFull()); in TEST_F()
488 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
497 EXPECT_TRUE(allocator_->IsCorrupt()); in TEST_F()
516 EXPECT_FALSE(allocator.IsCorrupt()); in TEST()
542 EXPECT_FALSE(local.IsCorrupt()); in TEST()
559 EXPECT_FALSE(shalloc2.IsCorrupt()); in TEST()
[all …]
Dpersistent_memory_allocator.cc495 if (IsCorrupt()) in AllocateImpl()
576 meminfo->free = IsCorrupt() ? 0 : remaining - sizeof(BlockHeader); in GetMemoryInfo()
581 if (IsCorrupt()) in MakeIterable()
653 bool PersistentMemoryAllocator::IsCorrupt() const { in IsCorrupt() function in base::PersistentMemoryAllocator
Dpersistent_sample_map.cc168 << ", corrupt=" << allocator->IsCorrupt(); in CreatePersistentRecord()
Dpersistent_memory_allocator.h279 bool IsCorrupt() const;
Dpersistent_histogram_allocator.cc298 if (memory_allocator_->IsCorrupt()) { in AllocateHistogram()
380 if (memory_allocator_->IsCorrupt()) { in AllocateHistogram()
Dsparse_histogram_unittest.cc43 ASSERT_FALSE(allocator_->IsCorrupt()); in TearDown()
Dhistogram_unittest.cc51 ASSERT_FALSE(allocator_->IsCorrupt()); in TearDown()
/external/google-breakpad/src/processor/
Dsource_line_resolver_base.cc248 assert(basic_module->IsCorrupt()); in LoadModuleUsingMemoryBuffer()
252 if (basic_module->IsCorrupt()) { in LoadModuleUsingMemoryBuffer()
Dsource_line_resolver_base_types.h132 virtual bool IsCorrupt() const = 0;
Dbasic_source_line_resolver_types.h89 virtual bool IsCorrupt() const { return is_corrupt_; } in IsCorrupt() function
Dfast_source_line_resolver_types.h128 virtual bool IsCorrupt() const { return is_corrupt_; } in IsCorrupt() function
Dmodule_comparer.cc77 ASSERT_TRUE(fast_module->IsCorrupt() == basic_module->IsCorrupt()); in Compare()