Home
last modified time | relevance | path

Searched refs:DumpType (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/service/
DGraphicsStatsService.h41 enum class DumpType { enum
50 static Dump* createDump(int outFd, DumpType type);
DGraphicsStatsService.cpp373 Dump(int outFd, DumpType type) : mFd(outFd), mType(type) { in Dump()
374 if (mFd == -1 && mType == DumpType::Protobuf) { in Dump()
375 mType = DumpType::ProtobufStatsd; in Dump()
379 DumpType type() { return mType; } in type()
390 DumpType mType;
436 GraphicsStatsService::Dump* GraphicsStatsService::createDump(int outFd, DumpType type) { in createDump()
456 if (dump->type() == DumpType::ProtobufStatsd) { in addToDump()
458 } else if (dump->type() == DumpType::Protobuf) { in addToDump()
470 if (dump->type() == DumpType::ProtobufStatsd) { in addToDump()
472 } else if (dump->type() == DumpType::Protobuf) { in addToDump()
[all …]
/frameworks/base/libs/hwui/jni/
DGraphicsStatsService.cpp43 isProto ? GraphicsStatsService::DumpType::Protobuf in createDump()
44 : GraphicsStatsService::DumpType::Text); in createDump()