Home
last modified time | relevance | path

Searched refs:queryRs (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/resourceschedule/qos_manager/frameworks/concurrent_task_client/src/
H A Dconcurrent_task_service_proxy.cpp45 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 Dconcurrent_task_client.cpp46 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 Dconcurrent_task_service_stub.cpp69 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 Dconcurrent_task_controller.cpp111 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 Dconcurrent_task_service.cpp26 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 Dconcurrent_task_controller.h40 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 Dconcurrent_task_service.h30 void QueryInterval(int queryItem, IntervalReply& queryRs) override;
/ohos5.0/foundation/resourceschedule/qos_manager/test/unittest/phone/
H A Dconcurrent_task_controller_test.cpp84 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 Dconcurrent_task_service_test.cpp59 IntervalReply queryRs = {87, 657, 357, 214}; variable
61 queInt.QueryInterval(queryItem, queryRs);
H A Dconcurrent_task_client_test.cpp74 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 Dconcurrent_fuzzer.cpp461 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 Dtask_client_adapter.h52 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 Diconcurrent_task_service.h31 virtual void QueryInterval(int queryItem, IntervalReply& queryRs) = 0;
H A Dconcurrent_task_service_proxy.h32 void QueryInterval(int queryItem, IntervalReply& queryRs) override;
/ohos5.0/foundation/resourceschedule/qos_manager/interfaces/inner_api/
H A Dconcurrent_task_client.h56 void QueryInterval(int queryItem, IntervalReply& queryRs);