HomeSort by relevance Sort by last modified time
    Searched refs:ProfileData (Results 1 - 25 of 59) sorted by null

1 2 3

  /frameworks/base/libs/hwui/
ProfileDataContainer.h 19 #include "ProfileData.h"
35 ProfileData* get() { return mData; }
36 ProfileData* operator->() { return mData; }
43 ProfileData* mData = new ProfileData;
ProfileDataContainer.cpp 29 munmap(mData, sizeof(ProfileData));
44 mData = new ProfileData;
56 if (regionSize < static_cast<int>(sizeof(ProfileData))) {
58 regionSize, static_cast<unsigned int>(sizeof(ProfileData)));
61 ProfileData* newData = reinterpret_cast<ProfileData*>(
62 mmap(NULL, sizeof(ProfileData), PROT_READ | PROT_WRITE,
ProfileData.h 46 class ProfileData {
47 PREVENT_COPY_AND_ASSIGN(ProfileData);
50 ProfileData() { reset(); }
53 void mergeWith(const ProfileData& other);
73 return std::tuple_size<decltype(ProfileData::mFrameCounts)>::value
74 + std::tuple_size<decltype(ProfileData::mSlowFrameCounts)>::value;
97 class MockProfileData : public ProfileData {
ProfileData.cpp 17 #include "ProfileData.h"
69 uint32_t ProfileData::frameTimeForFrameCountIndex(uint32_t index) {
82 uint32_t ProfileData::frameTimeForSlowFrameCountIndex(uint32_t index) {
86 void ProfileData::mergeWith(const ProfileData& other) {
110 void ProfileData::dump(int fd) const {
128 uint32_t ProfileData::findPercentile(int percentile) const {
146 void ProfileData::reset() {
155 void ProfileData::reportFrame(int64_t duration) {
167 void ProfileData::histogramForEach(const std::function<void(HistogramEntry)>& callback) const
    [all...]
JankTracker.h 20 #include "ProfileData.h"
43 // Metadata about the ProfileData being collected
73 static void dumpData(int fd, const ProfileDataDescription* description, const ProfileData* data);
JankTracker.cpp 157 void JankTracker::dumpData(int fd, const ProfileDataDescription* description, const ProfileData* data) {
179 fprintf(file, "\n\n---PROFILEDATA---\n");
194 fprintf(file, "\n---PROFILEDATA---\n\n");
  /frameworks/base/services/core/jni/
com_android_server_GraphicsStatsService.cpp 32 return sizeof(ProfileData);
44 const ProfileData* data = nullptr;
49 LOG_ALWAYS_FATAL_IF(buffer.size() != sizeof(ProfileData),
50 "Buffer size %zu doesn't match expected %zu!", buffer.size(), sizeof(ProfileData));
51 data = reinterpret_cast<const ProfileData*>(buffer.get());
83 LOG_ALWAYS_FATAL_IF(buffer.size() != sizeof(ProfileData),
84 "Buffer size %zu doesn't match expected %zu!", buffer.size(), sizeof(ProfileData));
92 const ProfileData* data = reinterpret_cast<const ProfileData*>(buffer.get());
  /external/compiler-rt/lib/profile/
InstrProfilingMerge.c 41 int __llvm_profile_check_compatibility(const char *ProfileData,
44 __llvm_profile_header *Header = (__llvm_profile_header *)ProfileData;
47 (__llvm_profile_data *)(ProfileData + sizeof(__llvm_profile_header));
85 void __llvm_profile_merge_from_buffer(const char *ProfileData,
88 __llvm_profile_header *Header = (__llvm_profile_header *)ProfileData;
94 (__llvm_profile_data *)(ProfileData + sizeof(__llvm_profile_header));
  /frameworks/base/libs/hwui/service/
GraphicsStatsService.h 47 int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data);
51 int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data);