/foundation/ability/form_fwk/test/unittest/frs_form_render_serial_queue_test/ |
H A D | frs_form_render_serial_queue_test.cpp | 57 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 D | bms_bundle_common_test.cpp | 80 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 D | fms_form_serial_queue_test.cpp | 58 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 D | queue_task_handler_wrap.cpp | 22 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 D | queue_task_handler_wrap.h | 27 QueueTaskHandlerWrap(const std::string &queueName, TaskQoS queueQos); 28 QueueTaskHandlerWrap(const std::string &queueName, int32_t concurrentNum, TaskQoS queueQos);
|
H A D | task_handler_wrap.cpp | 60 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 D | serial_queue.cpp | 27 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 D | form_serial_queue.cpp | 28 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 D | form_render_serial_queue.cpp | 29 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 D | form_render_impl.cpp | 60 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 D | window_focus_changed_listener_test.cpp | 103 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 D | rs_video_frame_rate_vote.cpp | 35 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 D | task_handler_wrap.h | 62 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 D | net_policy_file_event_handler.cpp | 42 NetPolicyFileEventHandler::NetPolicyFileEventHandler(const char *queueName) : netPolicyFileEventQueue_(queueName) {} in NetPolicyFileEventHandler() argument
|
/foundation/ability/form_fwk/services/form_render_service/include/ |
H A D | form_render_serial_queue.h | 30 explicit FormRenderSerialQueue(const std::string &queueName);
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_serial_queue.h | 29 explicit FormSerialQueue(const std::string &queueName);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/common/ |
H A D | serial_queue.h | 29 explicit SerialQueue(const std::string &queueName);
|
/foundation/ability/ability_runtime/test/mock/task_handler_wrap_mock/include/ |
H A D | mock_task_handler_wrap.h | 27 static std::shared_ptr<MockTaskHandlerWrap> CreateQueueHandler(const std::string &queueName, in CreateQueueHandler() argument
|
/foundation/communication/netmanager_base/services/netpolicymanager/include/ |
H A D | net_policy_file_event_handler.h | 39 explicit NetPolicyFileEventHandler(const char *queueName);
|
/foundation/resourceschedule/resource_schedule_service/ressched/plugins/cgroup_sched_plugin/framework/sched_controller/include/ |
H A D | cgroup_event_handler.h | 32 explicit CgroupEventHandler(const std::string &queueName);
|
/foundation/resourceschedule/resource_schedule_service/ressched/plugins/cgroup_sched_plugin/framework/sched_controller/ |
H A D | cgroup_event_handler.cpp | 54 CgroupEventHandler::CgroupEventHandler(const std::string &queueName) in CgroupEventHandler() argument 56 cgroupEventQueue_ = std::make_shared<ffrt::queue>(queueName.c_str(), in CgroupEventHandler()
|