Searched refs:CHECK (Results 1 - 15 of 15) sorted by relevance

/system/extras/perfprofd/quipper/
H A Daddress_mapper.cc68 CHECK(Unmap(range));
75 CHECK(Unmap(old_range));
82 CHECK(MapWithID(old_range.real_addr,
89 CHECK(MapWithID(range.real_addr, range.size, id, offset_base, false));
92 CHECK(MapWithID(range.real_addr + range.size,
155 CHECK(mapped_addr);
169 CHECK(id);
170 CHECK(offset);
H A Dperf_parser.cc120 CHECK(ReadPerfSampleInfo(*parsed_events_[i].raw_event, &sample_info));
168 CHECK(MapMmapEvent(&event.mmap, i)) << "Unable to map MMAP event!";
181 CHECK(MapMmapEvent(&event.mmap2, i)) << "Unable to map MMAP2 event!";
194 CHECK(MapForkEvent(event.fork)) << "Unable to map FORK event!";
205 CHECK(MapCommEvent(event.comm));
393 // Either predicted or mispredicted, not both. But don't use a CHECK here,
430 CHECK(mapper->GetMappedIDAndOffset(ip, &id, &dso_and_offset->offset_));
448 CHECK(dso_iter != dso_set_.end());
521 CHECK(mapper->GetMappedAddress(start, &mapped_addr));
H A Dperf_utils.cc33 CHECK(event);
39 CHECK(event);
H A Dperf_reader.cc707 CHECK(new_event);
725 CHECK(new_event);
784 CHECK(sample);
813 CHECK(event);
/system/core/base/
H A Dlogging_test.cpp64 TEST(logging, CHECK) {
65 ASSERT_DEATH(CHECK(false), "Check failed: false ");
66 CHECK(true);
/system/vold/
H A Dmain.cpp161 CHECK(android::vold::sBlkidContext != nullptr);
162 CHECK(android::vold::sBlkidUntrustedContext != nullptr);
163 CHECK(android::vold::sFsckContext != nullptr);
164 CHECK(android::vold::sFsckUntrustedContext != nullptr);
H A DVolumeBase.cpp44 CHECK(!mCreated);
164 CHECK(!mCreated);
179 CHECK(mCreated);
H A DDisk.cpp91 CHECK(!mCreated);
118 CHECK(!mCreated);
127 CHECK(mCreated);
H A DVolumeManager.cpp262 CHECK(mInternalEmulated == nullptr);
271 CHECK(mInternalEmulated != nullptr);
/system/extras/simpleperf/
H A Devent_fd.cpp113 CHECK(counter != nullptr);
122 CHECK(IsPowerOfTwo(mmap_pages));
H A Drecord_file.cpp145 CHECK(record != nullptr);
304 CHECK(record_fp_ != nullptr);
404 CHECK(file_attrs.size() > 0);
H A Dworkload.cpp129 CHECK(work_state_ == Started || work_state_ == Finished);
H A Denvironment.cpp46 CHECK(!result.empty()) << "can't get online cpu information";
/system/core/base/include/base/
H A Dlogging.h115 // CHECK(false == true) results in a log message of
117 #define CHECK(x) \ macro
167 // CHECK that can be used in a constexpr function. For example:
182 // CHECK should be used unless profiling identifies a CHECK as being in
191 if (::android::base::kEnableDChecks) CHECK(x)
262 // of a CHECK. The destructor will abort if the severity is FATAL.
/system/extras/perfprofd/quipper/base/
H A Dlogging.h29 // The CHECK(condition) macro is active in both debug and release builds and
166 // LOG_IS_ON(DFATAL) always holds in debug mode. In particular, CHECK()s will
220 // CHECK dies with a fatal error if condition is not true. It is *not*
224 // We make sure CHECK et al. always evaluates their arguments, as
225 // doing CHECK(FunctionWithSideEffect()) is a common idiom.
227 #define CHECK(condition) \ macro

Completed in 370 milliseconds