Home
last modified time | relevance | path

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

/external/libchrome/base/metrics/
Dpersistent_memory_allocator_unittest.cc212 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
353 } while (!allocator_->IsCorrupt() && !allocator_->IsFull()); in TEST_F()
361 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
434 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
556 } while (!allocator_->IsCorrupt() && !allocator_->IsFull()); in TEST_F()
580 EXPECT_FALSE(allocator_->IsCorrupt()); in TEST_F()
589 EXPECT_TRUE(allocator_->IsCorrupt()); in TEST_F()
608 EXPECT_FALSE(allocator.IsCorrupt()); in TEST()
634 EXPECT_FALSE(local.IsCorrupt()); in TEST()
651 EXPECT_FALSE(shalloc2.IsCorrupt()); in TEST()
[all …]
Dpersistent_memory_allocator.cc662 if (IsCorrupt()) in AllocateImpl()
778 if (IsCorrupt()) in MakeIterable()
856 bool PersistentMemoryAllocator::IsCorrupt() const { in IsCorrupt() function in base::PersistentMemoryAllocator
Dpersistent_sample_map.cc182 << ", corrupt=" << allocator->IsCorrupt(); in CreatePersistentRecord()
Dsparse_histogram_unittest.cc46 ASSERT_FALSE(allocator_->IsCorrupt()); in TearDown()
Dpersistent_memory_allocator.h482 bool IsCorrupt() const;
Dpersistent_histogram_allocator.cc321 if (memory_allocator_->IsCorrupt()) in AllocateHistogram()
Dhistogram_unittest.cc72 ASSERT_FALSE(allocator_->IsCorrupt()); in TearDown()
/external/perfetto/src/profiling/memory/
Dshared_ring_buffer.h150 bool IsCorrupt(const PointerPositions& pos);
161 if (IsCorrupt(pos)) in GetPointerPositions()
Dshared_ring_buffer.cc277 bool SharedRingBuffer::IsCorrupt(const PointerPositions& pos) { in IsCorrupt() function in perfetto::profiling::SharedRingBuffer
/external/google-breakpad/src/processor/
Dsource_line_resolver_base.cc248 assert(basic_module->IsCorrupt()); in LoadModuleUsingMemoryBuffer()
252 if (basic_module->IsCorrupt()) { in LoadModuleUsingMemoryBuffer()
Dbasic_source_line_resolver_types.h89 virtual bool IsCorrupt() const { return is_corrupt_; } in IsCorrupt() function
Dsource_line_resolver_base_types.h132 virtual bool IsCorrupt() const = 0;
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()