Home
last modified time | relevance | path

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

/frameworks/native/services/vr/performanced/
Dperformance_service.h20 class PerformanceService : public pdx::ServiceBase<PerformanceService> {
30 PerformanceService();
73 PerformanceService(const PerformanceService&) = delete;
74 void operator=(const PerformanceService&) = delete;
Dperformance_service.cpp104 PerformanceService::PerformanceService() in PerformanceService() function in android::dvr::PerformanceService
215 bool PerformanceService::IsInitialized() const { in IsInitialized()
220 std::string PerformanceService::DumpState(size_t /*max_length*/) { in DumpState()
224 Status<void> PerformanceService::OnSetSchedulerPolicy( in OnSetSchedulerPolicy()
302 Status<void> PerformanceService::OnSetCpuPartition( in OnSetCpuPartition()
326 Status<void> PerformanceService::OnSetSchedulerClass( in OnSetSchedulerClass()
358 Status<std::string> PerformanceService::OnGetCpuPartition(Message& message, in OnGetCpuPartition()
368 Status<void> PerformanceService::HandleMessage(Message& message) { in HandleMessage()
373 *this, &PerformanceService::OnSetSchedulerPolicy, message); in HandleMessage()
378 *this, &PerformanceService::OnSetCpuPartition, message); in HandleMessage()
[all …]
Dmain.cpp64 service = android::dvr::PerformanceService::Create(); in main()