Home
last modified time | relevance | path

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

/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 in QueryInterval()
[all...]
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()
/foundation/resourceschedule/qos_manager/services/src/
H A Dconcurrent_task_service_stub.cpp69 IntervalReply queryRs; in QueryIntervalInner() local
70 queryRs.rtgId = -1; in QueryIntervalInner()
71 queryRs.tid = -1; in QueryIntervalInner()
72 queryRs.paramA = -1; in QueryIntervalInner()
73 queryRs.paramB = -1; in QueryIntervalInner()
74 if (!data.ReadInt32(item) || !data.ReadInt32(queryRs.tid)) { in QueryIntervalInner()
78 QueryInterval(item, queryRs); in QueryIntervalInner()
79 if (!reply.WriteInt32(queryRs.rtgId) || !reply.WriteInt32(queryRs.tid) in QueryIntervalInner()
80 || !reply.WriteInt32(queryRs in QueryIntervalInner()
[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& payload) in QueryDeadline() argument
33 TaskController::GetInstance().QueryDeadline(queryItem, queryRs, payload); in QueryDeadline()
H A Dconcurrent_task_controller.cpp102 void TaskController::QueryInterval(int queryItem, IntervalReply& queryRs) in QueryInterval() argument
108 QueryUi(uid, queryRs); in QueryInterval()
111 QueryRender(uid, queryRs); in QueryInterval()
114 QueryRenderService(uid, queryRs); in QueryInterval()
117 QueryRenderServiceMain(uid, pid, queryRs); in QueryInterval()
120 QueryRenderServiceRender(uid, pid, queryRs); in QueryInterval()
123 QueryHwc(uid, queryRs); in QueryInterval()
126 QueryHardware(uid, pid, queryRs); in QueryInterval()
129 QueryExecutorStart(uid, pid, queryRs); in QueryInterval()
146 void TaskController::QueryUi(int uid, IntervalReply& queryRs) in QueryUi() argument
164 QueryRender(int uid, IntervalReply& queryRs) QueryRender() argument
181 QueryRenderService(int uid, IntervalReply& queryRs) QueryRenderService() argument
214 QueryRenderServiceMain(int uid, int pid, IntervalReply& queryRs) QueryRenderServiceMain() argument
244 QueryRenderServiceRender(int uid, int pid, IntervalReply& queryRs) QueryRenderServiceRender() argument
267 QueryHardware(int uid, int pid, IntervalReply& queryRs) QueryHardware() argument
285 QueryExecutorStart(int uid, int pid, IntervalReply& queryRs) QueryExecutorStart() argument
309 QueryHwc(int uid, IntervalReply& queryRs) QueryHwc() argument
[all...]
/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;
/foundation/resourceschedule/qos_manager/test/unittest/phone/
H A Dconcurrent_task_controller_test.cpp84 IntervalReply queryRs = {87, 657, 357, 214}; in HWTEST_F() local
85 queInt.QueryInterval(queryItem, queryRs); in HWTEST_F()
87 queInt.QueryInterval(queryItem, queryRs); in HWTEST_F()
89 queInt.QueryInterval(queryItem, queryRs); in HWTEST_F()
91 queInt.QueryInterval(queryItem, queryRs); in HWTEST_F()
93 queInt.QueryInterval(queryItem, queryRs); in HWTEST_F()
163 IntervalReply queryRs = {87, 657, 357, 214}; in HWTEST_F() local
164 TaskController::GetInstance().QueryRenderService(uid, queryRs); in HWTEST_F()
178 IntervalReply queryRs = {87, 657, 357, 214}; in HWTEST_F() local
179 TaskController::GetInstance().QueryRenderServiceMain(uid, pid, queryRs); in HWTEST_F()
198 IntervalReply queryRs = {87, 657, 357, 214}; HWTEST_F() local
[all...]
H A Dconcurrent_task_service_test.cpp59 IntervalReply queryRs = {87, 657, 357, 214}; in HWTEST_F() local
61 queInt.QueryInterval(queryItem, queryRs); in HWTEST_F()
H A Dconcurrent_task_client_test.cpp74 IntervalReply queryRs = {87, 657, 357, 214}; in HWTEST_F() local
75 ConcurrentTaskClient::GetInstance().QueryInterval(queryItem, queryRs); in HWTEST_F()
/foundation/resourceschedule/qos_manager/test/fuzztest/concurrent_fuzzer/
H A Dconcurrent_fuzzer.cpp50 void QueryInterval(int queryItem, IntervalReply& queryRs) override
461 IntervalReply queryRs; in FuzzConcurrentTaskServiceStubQueryInterval() local
462 s.QueryInterval(queryItem, queryRs); in FuzzConcurrentTaskServiceStubQueryInterval()
475 DeadlineReply queryRs; in FuzzConcurrentTaskServiceStubQueryDeadline() local
480 s.QueryDeadline(deadlineType, queryRs, jsValue); in FuzzConcurrentTaskServiceStubQueryDeadline()
569 IntervalReply queryRs; in FuzzConcurrentTaskClientQueryInterval() local
570 ConcurrentTaskClient::GetInstance().QueryInterval(queryItem, queryRs); in FuzzConcurrentTaskClientQueryInterval()
649 IntervalReply queryRs; in FuzzConcurrentTaskServiceProxyQueryInterval() local
650 queryRs.rtgId = -1; in FuzzConcurrentTaskServiceProxyQueryInterval()
651 queryRs in FuzzConcurrentTaskServiceProxyQueryInterval()
714 IntervalReply queryRs; FuzzTaskControllerQueryRenderService() local
732 IntervalReply queryRs; FuzzTaskControllerQueryExecutorStart() local
[all...]
/foundation/resourceschedule/ffrt/src/sched/
H A Dtask_client_adapter.h53 void CTC_QueryInterval(int queryItem, IntervalReply& queryRs);
184 #define CTC_QUERY_INTERVAL(queryItem, queryRs) \
188 func(queryItem, queryRs); \
/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;
/foundation/resourceschedule/qos_manager/interfaces/inner_api/
H A Dconcurrent_task_client.h54 * @param queryRs Indicates the context info of the query message.
56 void QueryInterval(int queryItem, IntervalReply& queryRs);

Completed in 7 milliseconds