Home
last modified time | relevance | path

Searched refs:queueName (Results 1 - 21 of 21) sorted by relevance

/foundation/ability/form_fwk/test/unittest/frs_form_render_serial_queue_test/
H A Dfrs_form_render_serial_queue_test.cpp57 std::string queueName = "FormRenderSerialQueueTest"; in HWTEST_F() local
58 FormRenderSerialQueue serialQueueTask(queueName); in HWTEST_F()
72 std::string queueName = "FormRenderSerialQueueTest"; in HWTEST_F() local
73 FormRenderSerialQueue serialQueueTask(queueName); in HWTEST_F()
85 std::string queueName = "FormRenderSerialQueueTest"; in HWTEST_F() local
86 FormRenderSerialQueue serialQueueTask(queueName); in HWTEST_F()
100 std::string queueName = "FormRenderSerialQueueTest"; in HWTEST_F() local
101 FormRenderSerialQueue serialQueueTask(queueName); in HWTEST_F()
119 std::string queueName = "FormRenderSerialQueueTest"; in HWTEST_F() local
120 FormRenderSerialQueue serialQueueTask(queueName); in HWTEST_F()
137 std::string queueName = "FormRenderSerialQueueTest"; HWTEST_F() local
154 std::string queueName = "FormRenderSerialQueueTest"; HWTEST_F() local
171 std::string queueName = "FormRenderSerialQueueTest"; HWTEST_F() local
191 std::string queueName = "FormRenderSerialQueueTest"; HWTEST_F() local
213 std::string queueName = "FormRenderSerialQueueTest"; HWTEST_F() local
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_common_test/
H A Dbms_bundle_common_test.cpp80 std::string queueName; in HWTEST_F() local
81 SerialQueue serialQueue(queueName); in HWTEST_F()
94 std::string queueName; in HWTEST_F() local
95 SerialQueue serialQueue(queueName); in HWTEST_F()
113 std::string queueName; in HWTEST_F() local
114 SerialQueue serialQueue(queueName); in HWTEST_F()
132 std::string queueName; in HWTEST_F() local
133 SerialQueue serialQueue(queueName); in HWTEST_F()
151 std::string queueName; in HWTEST_F() local
152 SerialQueue serialQueue(queueName); in HWTEST_F()
[all...]
/foundation/ability/form_fwk/test/unittest/fms_form_serial_queue_test/
H A Dfms_form_serial_queue_test.cpp58 const std::string queueName = "queue"; in HWTEST_F() local
59 std::shared_ptr<FormSerialQueue> queue = std::make_shared<FormSerialQueue>(queueName.c_str()); in HWTEST_F()
75 const std::string queueName = "queue1"; in HWTEST_F() local
76 std::shared_ptr<FormSerialQueue> queue = std::make_shared<FormSerialQueue>(queueName.c_str()); in HWTEST_F()
95 const std::string queueName = "queue1"; in HWTEST_F() local
96 std::shared_ptr<FormSerialQueue> queue = std::make_shared<FormSerialQueue>(queueName.c_str()); in HWTEST_F()
/foundation/ability/ability_runtime/services/common/src/
H A Dqueue_task_handler_wrap.cpp22 QueueTaskHandlerWrap::QueueTaskHandlerWrap(const std::string &queueName, TaskQoS queueQos) in QueueTaskHandlerWrap() argument
23 : taskQueue_(queueName.c_str(), ffrt::queue_attr().qos(Convert2FfrtQos(queueQos)).timeout(QUEUE_TIME_OUT)) in QueueTaskHandlerWrap()
26 QueueTaskHandlerWrap::QueueTaskHandlerWrap(const std::string &queueName, int32_t concurrentNum, TaskQoS queueQos) in QueueTaskHandlerWrap() argument
29 queueName.c_str(), in QueueTaskHandlerWrap()
H A Dqueue_task_handler_wrap.h27 QueueTaskHandlerWrap(const std::string &queueName, TaskQoS queueQos);
28 QueueTaskHandlerWrap(const std::string &queueName, int32_t concurrentNum, TaskQoS queueQos);
H A Dtask_handler_wrap.cpp60 std::shared_ptr<TaskHandlerWrap> TaskHandlerWrap::CreateQueueHandler(const std::string &queueName, in CreateQueueHandler() argument
63 return std::make_shared<QueueTaskHandlerWrap>(queueName, queueQos); in CreateQueueHandler()
66 std::shared_ptr<TaskHandlerWrap> TaskHandlerWrap::CreateConcurrentQueueHandler(const std::string &queueName, in CreateConcurrentQueueHandler() argument
69 return std::make_shared<QueueTaskHandlerWrap>(queueName, concurrentNum, queueQos); in CreateConcurrentQueueHandler()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/common/
H A Dserial_queue.cpp27 SerialQueue::SerialQueue(const std::string &queueName) in SerialQueue() argument
29 APP_LOGI("create SerialQueue, queueName %{public}s", queueName.c_str()); in SerialQueue()
30 queue_ = std::make_shared<queue>(queueName.c_str()); in SerialQueue()
/foundation/ability/form_fwk/services/src/
H A Dform_serial_queue.cpp28 FormSerialQueue::FormSerialQueue(const std::string &queueName): queue_(queueName.c_str()) in FormSerialQueue() argument
30 HILOG_DEBUG("create FormSerialQueue, queueName :%{public}s", queueName.c_str()); in FormSerialQueue()
/foundation/ability/form_fwk/services/form_render_service/src/
H A Dform_render_serial_queue.cpp29 FormRenderSerialQueue::FormRenderSerialQueue(const std::string &queueName): queue_(queueName.c_str()) in FormRenderSerialQueue() argument
31 HILOG_DEBUG("create FormRenderSerialQueue, queueName :%{public}s", queueName.c_str()); in FormRenderSerialQueue()
H A Dform_render_impl.cpp60 const std::string queueName = "FormRenderSerialQueue"; in FormRenderImpl() local
61 serialQueue_ = std::make_shared<FormRenderSerialQueue>(queueName); in FormRenderImpl()
/foundation/ability/ability_runtime/test/unittest/window_focus_changed_listener_test/
H A Dwindow_focus_changed_listener_test.cpp103 std::string queueName = "queueName"; in HWTEST_F() local
104 std::shared_ptr<AAFwk::TaskHandlerWrap> handler = AAFwk::TaskHandlerWrap::CreateQueueHandler(queueName); in HWTEST_F()
162 std::string queueName = "queueName"; in HWTEST_F() local
163 std::shared_ptr<AAFwk::TaskHandlerWrap> handler = AAFwk::TaskHandlerWrap::CreateQueueHandler(queueName); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/hyper_graphic_manager/frame_rate_vote/
H A Drs_video_frame_rate_vote.cpp35 std::string queueName = "video_frame_rate_vote_queue_" + std::to_string(surfaceNodeId); in RSVideoFrameRateVote() local
36 ffrtQueue_ = std::make_shared<ffrt::queue>(queueName.c_str()); in RSVideoFrameRateVote()
/foundation/ability/ability_runtime/services/common/include/
H A Dtask_handler_wrap.h62 static std::shared_ptr<TaskHandlerWrap> CreateQueueHandler(const std::string &queueName,
65 static std::shared_ptr<TaskHandlerWrap> CreateConcurrentQueueHandler(const std::string &queueName,
/foundation/communication/netmanager_base/services/netpolicymanager/src/common/
H A Dnet_policy_file_event_handler.cpp42 NetPolicyFileEventHandler::NetPolicyFileEventHandler(const char *queueName) : netPolicyFileEventQueue_(queueName) {} in NetPolicyFileEventHandler() argument
/foundation/ability/form_fwk/services/form_render_service/include/
H A Dform_render_serial_queue.h30 explicit FormRenderSerialQueue(const std::string &queueName);
/foundation/ability/form_fwk/services/include/
H A Dform_serial_queue.h29 explicit FormSerialQueue(const std::string &queueName);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/common/
H A Dserial_queue.h29 explicit SerialQueue(const std::string &queueName);
/foundation/ability/ability_runtime/test/mock/task_handler_wrap_mock/include/
H A Dmock_task_handler_wrap.h27 static std::shared_ptr<MockTaskHandlerWrap> CreateQueueHandler(const std::string &queueName, in CreateQueueHandler() argument
/foundation/communication/netmanager_base/services/netpolicymanager/include/
H A Dnet_policy_file_event_handler.h39 explicit NetPolicyFileEventHandler(const char *queueName);
/foundation/resourceschedule/resource_schedule_service/ressched/plugins/cgroup_sched_plugin/framework/sched_controller/include/
H A Dcgroup_event_handler.h32 explicit CgroupEventHandler(const std::string &queueName);
/foundation/resourceschedule/resource_schedule_service/ressched/plugins/cgroup_sched_plugin/framework/sched_controller/
H A Dcgroup_event_handler.cpp54 CgroupEventHandler::CgroupEventHandler(const std::string &queueName) in CgroupEventHandler() argument
56 cgroupEventQueue_ = std::make_shared<ffrt::queue>(queueName.c_str(), in CgroupEventHandler()

Completed in 8 milliseconds