/ohos5.0/foundation/resourceschedule/qos_manager/frameworks/concurrent_task_client/src/ |
H A D | concurrent_task_service_proxy.cpp | 45 void ConcurrentTaskServiceProxy::QueryInterval(int queryItem, IntervalReply& queryRs) in QueryInterval() argument 56 if (!data.WriteInt32(queryItem) || !data.WriteInt32(queryRs.tid)) { in QueryInterval() 67 queryRs.rtgId = -1; in QueryInterval() 68 queryRs.tid = -1; in QueryInterval() 69 queryRs.paramA = -1; in QueryInterval() 70 queryRs.paramB = -1; in QueryInterval() 71 queryRs.bundleName = ""; in QueryInterval() 73 if (!reply.ReadInt32(queryRs.rtgId) || !reply.ReadInt32(queryRs.tid) in QueryInterval() 74 || !reply.ReadInt32(queryRs.paramA) || !reply.ReadInt32(queryRs.paramB) in QueryInterval() 75 || !reply.ReadString(queryRs.bundleName)) { in QueryInterval()
|
H A D | concurrent_task_client.cpp | 46 void ConcurrentTaskClient::QueryInterval(int queryItem, IntervalReply& queryRs) in QueryInterval() argument 52 clientService_->QueryInterval(queryItem, queryRs); in QueryInterval() 154 void CTC_QueryInterval(int queryItem, OHOS::ConcurrentTask::IntervalReply& queryRs) in CTC_QueryInterval() argument 156 OHOS::ConcurrentTask::ConcurrentTaskClient::GetInstance().QueryInterval(queryItem, queryRs); in CTC_QueryInterval()
|
/ohos5.0/foundation/resourceschedule/qos_manager/services/src/ |
H A D | concurrent_task_service_stub.cpp | 69 IntervalReply queryRs; variable 70 queryRs.rtgId = -1; 71 queryRs.tid = -1; 72 queryRs.paramA = -1; 73 queryRs.paramB = -1; 74 if (!data.ReadInt32(item) || !data.ReadInt32(queryRs.tid)) { 78 QueryInterval(item, queryRs); 79 if (!reply.WriteInt32(queryRs.rtgId) || !reply.WriteInt32(queryRs.tid) 80 || !reply.WriteInt32(queryRs.paramA) || !reply.WriteInt32(queryRs.paramB) 81 || !reply.WriteString(queryRs.bundleName)) {
|
H A D | concurrent_task_controller.cpp | 111 QueryUi(uid, queryRs); in QueryInterval() 126 QueryHwc(uid, queryRs); in QueryInterval() 160 queryRs.rtgId = -1; in QueryUi() 162 queryRs.rtgId = grpId; in QueryUi() 178 queryRs.rtgId = -1; in QueryRender() 180 queryRs.rtgId = grpId; in QueryRender() 189 int queryTid = queryRs.tid; in QueryRenderService() 278 hardwareTid_ = queryRs.tid; in QueryHardware() 300 if (queryRs.tid <= 0) { in QueryExecutorStart() 323 queryRs.rtgId = -1; in QueryHwc() [all …]
|
H A D | concurrent_task_service.cpp | 26 void ConcurrentTaskService::QueryInterval(int queryItem, IntervalReply& queryRs) in QueryInterval() argument 28 TaskController::GetInstance().QueryInterval(queryItem, queryRs); in QueryInterval() 31 void ConcurrentTaskService::QueryDeadline(int queryItem, DeadlineReply& queryRs, const Json::Value&… in QueryDeadline() argument 33 TaskController::GetInstance().QueryDeadline(queryItem, queryRs, payload); in QueryDeadline()
|
/ohos5.0/foundation/resourceschedule/qos_manager/services/include/ |
H A D | concurrent_task_controller.h | 40 void QueryInterval(int queryItem, IntervalReply& queryRs); 55 void QueryUi(pid_t uid, IntervalReply& queryRs); 56 void QueryRender(pid_t uid, IntervalReply& queryRs); 57 void QueryRenderService(pid_t uid, IntervalReply& queryRs); 58 void QueryRenderServiceMain(pid_t uid, pid_t pid, IntervalReply& queryRs); 59 void QueryRenderServiceRender(pid_t uid, pid_t pid, IntervalReply& queryRs); 60 void QueryHardware(pid_t uid, pid_t pid, IntervalReply& queryRs); 61 void QueryExecutorStart(pid_t uid, pid_t pid, IntervalReply& queryRs); 62 void QueryHwc(pid_t uid, IntervalReply& queryRs);
|
H A D | concurrent_task_service.h | 30 void QueryInterval(int queryItem, IntervalReply& queryRs) override;
|
/ohos5.0/foundation/resourceschedule/qos_manager/test/unittest/phone/ |
H A D | concurrent_task_controller_test.cpp | 84 IntervalReply queryRs = {87, 657, 357, 214}; variable 85 queInt.QueryInterval(queryItem, queryRs); 87 queInt.QueryInterval(queryItem, queryRs); 89 queInt.QueryInterval(queryItem, queryRs); 91 queInt.QueryInterval(queryItem, queryRs); 93 queInt.QueryInterval(queryItem, queryRs); 163 IntervalReply queryRs = {87, 657, 357, 214}; variable 164 TaskController::GetInstance().QueryRenderService(uid, queryRs); 178 IntervalReply queryRs = {87, 657, 357, 214}; variable 179 TaskController::GetInstance().QueryRenderServiceMain(uid, pid, queryRs); [all …]
|
H A D | concurrent_task_service_test.cpp | 59 IntervalReply queryRs = {87, 657, 357, 214}; variable 61 queInt.QueryInterval(queryItem, queryRs);
|
H A D | concurrent_task_client_test.cpp | 74 IntervalReply queryRs = {87, 657, 357, 214}; variable 75 ConcurrentTaskClient::GetInstance().QueryInterval(queryItem, queryRs);
|
/ohos5.0/foundation/resourceschedule/qos_manager/test/fuzztest/concurrent_fuzzer/ |
H A D | concurrent_fuzzer.cpp | 461 IntervalReply queryRs; in FuzzConcurrentTaskServiceStubQueryInterval() local 475 DeadlineReply queryRs; in FuzzConcurrentTaskServiceStubQueryDeadline() local 569 IntervalReply queryRs; in FuzzConcurrentTaskClientQueryInterval() local 649 IntervalReply queryRs; in FuzzConcurrentTaskServiceProxyQueryInterval() local 650 queryRs.rtgId = -1; in FuzzConcurrentTaskServiceProxyQueryInterval() 651 queryRs.paramA = -1; in FuzzConcurrentTaskServiceProxyQueryInterval() 652 queryRs.paramB = -1; in FuzzConcurrentTaskServiceProxyQueryInterval() 717 queryRs.paramA = 1; in FuzzTaskControllerQueryRenderService() 718 queryRs.paramB = 1; in FuzzTaskControllerQueryRenderService() 735 queryRs.paramA = 1; in FuzzTaskControllerQueryExecutorStart() [all …]
|
/ohos5.0/foundation/resourceschedule/ffrt/src/sched/ |
H A D | task_client_adapter.h | 52 void CTC_QueryInterval(int queryItem, IntervalReply& queryRs); 182 #define CTC_QUERY_INTERVAL(queryItem, queryRs) \ argument 186 func(queryItem, queryRs); \
|
/ohos5.0/foundation/resourceschedule/qos_manager/frameworks/concurrent_task_client/include/ |
H A D | iconcurrent_task_service.h | 31 virtual void QueryInterval(int queryItem, IntervalReply& queryRs) = 0;
|
H A D | concurrent_task_service_proxy.h | 32 void QueryInterval(int queryItem, IntervalReply& queryRs) override;
|
/ohos5.0/foundation/resourceschedule/qos_manager/interfaces/inner_api/ |
H A D | concurrent_task_client.h | 56 void QueryInterval(int queryItem, IntervalReply& queryRs);
|