/drivers/hdf_core/adapter/uhdf2/manager/ |
D | device_manager.c | 43 if ((looper != NULL) && (looper->Start != NULL)) { in main() 44 looper->Start(looper); in main()
|
/drivers/peripheral/vibrator/ |
D | README.md | 42 | int32_t Start(const char *effectType) | Starts vibration with a given effe… 55 VIBRATOR_MODE_ONCE = 0, // Start one-shot vibration for a specified period. 56 VIBRATOR_MODE_PRESET = 1, // Start periodic vibration with the preset effect. 80 /* Start vibration with the specified duration. */ 91 /* Start vibration with the preset effect. */ 92 startRet = g_vibratorDev->Start(g_timeSequence); 102 /* Start vibration based on the specified duration, intensity, and frequency. */
|
/drivers/peripheral/vibrator/test/unittest/common/ |
D | hdf_vibrator_test.cpp | 132 int32_t startRet = g_vibratorDev->Start(g_timeSequence); 152 int32_t startRet = g_vibratorDev->Start(g_builtIn); 172 int32_t startRet = g_vibratorDev->Start(nullptr); 190 int32_t startRet = g_vibratorDev->Start(g_timeSequence); 214 int32_t startRet = g_vibratorDev->Start(g_timeSequence); 235 int32_t startRet = g_vibratorDev->Start(g_builtIn); 255 int32_t startRet = g_vibratorDev->Start(g_arbitraryStr);
|
/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/ |
D | algo_plugin.cpp | 53 RetCode AlgoPlugin::Start() in Start() function in OHOS::Camera::AlgoPlugin 55 if (algoHandler_->func.Start == nullptr) { in Start() 59 int ret = algoHandler_->func.Start(); in Start() 197 …algoHandler_->func.Start = reinterpret_cast<AlgoFuncStart>(::dlsym(algoHandler_->handle, "Start")); in LoadLib() 198 if (algoHandler_->func.Start == nullptr) { in LoadLib()
|
/drivers/hdf_core/framework/utils/include/ |
D | hdf_message_looper.h | 22 void (*Start)(struct HdfMessageLooper *); member
|
D | hdf_thread_ex.h | 23 void (*Start)(struct HdfThread *thread); member
|
/drivers/peripheral/vibrator/test/unittest/hdi/ |
D | hdf_vibrator_hdi_test.cpp | 130 int32_t startRet = g_vibratorInterface->Start(g_timeSequence); 150 int32_t startRet = g_vibratorInterface->Start(g_builtIn); 170 int32_t startRet = g_vibratorInterface->Start(g_timeSequence); 194 int32_t startRet = g_vibratorInterface->Start(g_timeSequence); 215 int32_t startRet = g_vibratorInterface->Start(g_builtIn); 235 int32_t startRet = g_vibratorInterface->Start(g_arbitraryStr);
|
/drivers/hdf_core/adapter/uhdf2/host/src/ |
D | hdf_device_thread.c | 74 if (looper->Start != NULL) { in DeviceThreadMain() 75 looper->Start(looper); in DeviceThreadMain()
|
/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/pipeline_core/nodes/v4l2_source_node/ |
D | v4l2_source_node.cpp | 54 RetCode V4L2SourceNode::Start(const int32_t streamId) in Start() function in OHOS::Camera::V4L2SourceNode 75 rc = sensorController_->Start(bufCnt, format); in Start() 81 rc = SourceNode::Start(streamId); in Start()
|
/drivers/peripheral/intelligent_voice/passthrough/engine/ |
D | wakeup_engine.h | 28 IntellVoiceStatus Start(const StartInfo &info) override;
|
D | enroll_engine.h | 30 IntellVoiceStatus Start(const StartInfo &info) override;
|
/drivers/peripheral/vibrator/test/benchmarktest/ |
D | hdf_vibrator_benchmark_test.cpp | 87 BENCHMARK_F(VibratorBenchmarkTest, Start)(benchmark::State &state) in BENCHMARK_F() argument 94 startRet = g_vibratorInterface->Start(g_timeSequence); in BENCHMARK_F() 102 BENCHMARK_REGISTER_F(VibratorBenchmarkTest, Start)-> 118 startRet = g_vibratorInterface->Start(g_builtIn); in BENCHMARK_F()
|
/drivers/peripheral/audio/test/unittest/common/capture/ |
D | audio_capture_mmap_test.cpp | 189 ret = mmapCapture_->Start(mmapCapture_); 206 ret = mmapCapture_->Start(mmapCapture_); 209 ret = mmapCapture_->Start(mmapCapture_); // restart can be return two state 231 ret = mmapCapture_->Start(mmapCapture_); 253 ret = mmapCapture_->Start(mmapCapture_);
|
D | audio_capture_common_test.cpp | 203 int32_t ret = capture_->Start(capture_); 225 int32_t ret = capture_->Start(capture_); 253 int32_t ret = capture_->Start(capture_); 296 ASSERT_NE(capture_->Start, nullptr); 298 int32_t ret = capture_->Start(capture_); 304 ASSERT_NE(capture_->Start, nullptr); 306 int32_t ret = capture_->Start(nullptr); 313 ASSERT_NE(capture_->Start, nullptr); 316 int32_t ret = capture_->Start(capture_); 335 ASSERT_NE(capture_->Start, nullptr); [all …]
|
/drivers/external_device_manager/services/native/driver_extension_manager/src/input_emit_event/ |
D | virtual_device_inject.cpp | 25 injectThread_->Start(); in VirtualDeviceInject()
|
/drivers/peripheral/vibrator/test/fuzztest/vibratorstart_fuzzer/ |
D | vibratorstart_fuzzer.cpp | 27 if (!g_vibratorInterface->Start(reinterpret_cast<const std::string &>(data))) { in VibratorStartFuzzTest()
|
/drivers/peripheral/camera/vdi_base/common/pipeline_core/nodes/src/transform_node/ |
D | transform_node.h | 28 RetCode Start(const int32_t streamId) override;
|
D | transform_node.cpp | 23 RetCode TransformNode::Start(const int32_t streamId) in Start() function in OHOS::Camera::TransformNode
|
/drivers/peripheral/camera/vdi_base/common/adapter/platform/mpp/src/pipeline_core/nodes/venc_node/ |
D | venc_node.h | 31 RetCode Start(const int32_t streamId) override;
|
/drivers/peripheral/vibrator/test/performance/common/ |
D | hdf_vibrator_performance_test.cpp | 106 int ret = g_vibratorPerformanceDev->Start(g_timeSequence); 130 int ret = g_vibratorPerformanceDev->Start(g_builtIn);
|
/drivers/peripheral/vibrator/test/performance/hdi/ |
D | hdf_vibrator_hdi_performance_test.cpp | 102 int ret = g_vibratorInterface->Start(g_timeSequence); 126 int ret = g_vibratorInterface->Start(g_builtIn);
|
/drivers/peripheral/bluetooth/audio/interfaces/include/ |
D | audio_control.h | 57 int32_t (*Start)(AudioHandle handle); member
|
/drivers/peripheral/camera/vdi_base/common/adapter/platform/mpp/src/pipeline_core/nodes/vo_node/ |
D | vo_node.h | 32 RetCode Start(const int32_t streamId) override;
|
/drivers/peripheral/vibrator/test/fuzztest/vibratorstop_fuzzer/ |
D | vibratorstop_fuzzer.cpp | 27 if (!g_vibratorInterface->Start(reinterpret_cast<const std::string &>(data))) { in VibratorStopFuzzTest()
|
/drivers/peripheral/audio/interfaces/include/ |
D | audio_control.h | 57 int32_t (*Start)(AudioHandle handle); member
|