Home
last modified time | relevance | path

Searched refs:Start (Results 1 - 25 of 183) sorted by relevance

12345678

/drivers/hdf_core/adapter/uhdf2/manager/
H A Ddevice_manager.c48 if ((looper != NULL) && (looper->Start != NULL)) { in main()
50 looper->Start(looper); in main()
/drivers/peripheral/vibrator/test/unittest/common/
H A Dhdf_vibrator_test.cpp132 int32_t startRet = g_vibratorDev->Start(g_timeSequence); in HWTEST_F()
152 int32_t startRet = g_vibratorDev->Start(g_builtIn); in HWTEST_F()
172 int32_t startRet = g_vibratorDev->Start(nullptr); in HWTEST_F()
190 int32_t startRet = g_vibratorDev->Start(g_timeSequence); in HWTEST_F()
214 int32_t startRet = g_vibratorDev->Start(g_timeSequence); in HWTEST_F()
235 int32_t startRet = g_vibratorDev->Start(g_builtIn); in HWTEST_F()
255 int32_t startRet = g_vibratorDev->Start(g_arbitraryStr); in HWTEST_F()
300 * @tc.desc: Start vibrator based on the setting vibration effect.
326 * @tc.desc: Start vibrator based on the setting vibration effect.
343 * @tc.desc: Start vibrato
[all...]
/drivers/peripheral/camera/vdi_base/common/pipeline_core/ipp/src/
H A Dalgo_plugin.cpp53 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()
199 CAMERA_LOGE("can't get symbol of function Start, %{public}s", ::dlerror()); in LoadLib()
/drivers/hdf_core/framework/utils/include/
H A Dhdf_message_looper.h22 void (*Start)(struct HdfMessageLooper *); member
H A Dhdf_thread_ex.h23 void (*Start)(struct HdfThread *thread); member
/drivers/hdf_core/adapter/uhdf2/host/src/
H A Dhdf_device_thread.c74 if (looper->Start != NULL) { in DeviceThreadMain()
75 looper->Start(looper); in DeviceThreadMain()
/drivers/peripheral/intelligent_voice/passthrough/engine/
H A Dwakeup_engine.h28 IntellVoiceStatus Start(const StartInfo &info) override;
H A Denroll_engine.h30 IntellVoiceStatus Start(const StartInfo &info) override;
/drivers/peripheral/vibrator/test/benchmarktest/
H A Dhdf_vibrator_benchmark_test.cpp83 * @tc.desc: Benchmarktest for interface Start
87 BENCHMARK_F(VibratorBenchmarkTest, Start)(benchmark::State &state) in BENCHMARK_F()
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()
208 * @tc.desc: Start periodic vibration with custom composite effect
/drivers/peripheral/bluetooth/audio/interfaces/include/
H A Daudio_control.h57 int32_t (*Start)(AudioHandle handle); member
65 * @see Start
/drivers/peripheral/camera/vdi_base/common/adapter/platform/mpp/src/pipeline_core/nodes/venc_node/
H A Dvenc_node.h31 RetCode Start(const int32_t streamId) override;
H A Dvenc_node.cpp27 RetCode VencNode::Start(const int32_t streamId) in Start() function in OHOS::Camera::VencNode
/drivers/peripheral/camera/vdi_base/common/pipeline_core/nodes/src/transform_node/
H A Dtransform_node.cpp23 RetCode TransformNode::Start(const int32_t streamId) in Start() function in OHOS::Camera::TransformNode
H A Dtransform_node.h28 RetCode Start(const int32_t streamId) override;
/drivers/peripheral/distributed_audio/interface/audio/v1_0/
H A Di_audio_control.h23 virtual int32_t Start() = 0;
/drivers/peripheral/vibrator/test/fuzztest/vibratorstart_fuzzer/
H A Dvibratorstart_fuzzer.cpp27 if (!g_vibratorInterface->Start(reinterpret_cast<const std::string &>(data))) { in VibratorStartFuzzTest()
/drivers/peripheral/vibrator/test/fuzztest/vibratorstop_fuzzer/
H A Dvibratorstop_fuzzer.cpp27 if (!g_vibratorInterface->Start(reinterpret_cast<const std::string &>(data))) { in VibratorStopFuzzTest()
/drivers/peripheral/audio/test/unittest/common/capture/
H A Daudio_capture_mmap_test.cpp188 ret = mmapCapture_->Start(mmapCapture_); in HWTEST_F()
205 ret = mmapCapture_->Start(mmapCapture_); in HWTEST_F()
208 ret = mmapCapture_->Start(mmapCapture_); // restart can be return two state in HWTEST_F()
230 ret = mmapCapture_->Start(mmapCapture_); in HWTEST_F()
252 ret = mmapCapture_->Start(mmapCapture_); in HWTEST_F()
H A Daudio_capture_common_test.cpp202 int32_t ret = capture_->Start(capture_); in HWTEST_F()
224 int32_t ret = capture_->Start(capture_); in HWTEST_F()
253 int32_t ret = capture_->Start(capture_); in HWTEST_F()
296 ASSERT_NE(capture_->Start, nullptr); in HWTEST_F()
298 int32_t ret = capture_->Start(capture_); in HWTEST_F()
305 ASSERT_NE(capture_->Start, nullptr); in HWTEST_F()
307 int32_t ret = capture_->Start(nullptr); in HWTEST_F()
315 ASSERT_NE(capture_->Start, nullptr); in HWTEST_F()
318 int32_t ret = capture_->Start(capture_); in HWTEST_F()
337 ASSERT_NE(capture_->Start, nullpt in HWTEST_F()
[all...]
/drivers/peripheral/vibrator/test/unittest/hdi/
H A Dhdf_vibrator_hdi_test.cpp145 ret = g_vibratorInterface->Start(iter); in HWTEST_F()
169 ret = g_vibratorInterface->Start(iter); in HWTEST_F()
193 ret = g_vibratorInterface->Start(iter); in HWTEST_F()
221 ret = g_vibratorInterface->Start(iter); in HWTEST_F()
246 ret = g_vibratorInterface->Start(iter); in HWTEST_F()
267 int32_t startRet = g_vibratorInterface->Start(g_arbitraryStr); in HWTEST_F()
309 * @tc.desc: Start vibrator based on the setting vibration effect.
350 * @tc.desc: Start vibrator based on the setting vibration effect.
383 * @tc.desc: Start vibrator based on the setting vibration effect.
416 * @tc.desc: Start vibrato
[all...]
/drivers/hdf_core/framework/model/misc/vibrator/driver/include/
H A Dvibrator_driver.h19 int32_t (*Start)(void); member
/drivers/hdf_core/framework/model/network/wifi/platform/include/message/
H A Dmessage_dispatcher.h29 ErrorCode (*Start)(struct MessageDispatcher * dispatcher); \
/drivers/hdf_core/framework/test/fuzztest/devicemanagerstart_fuzzer/
H A Ddevicemanagerstart_fuzzer.cpp49 if ((looper != NULL) && (looper->Start != NULL)) { in DeviceManagerStartServiceFuzzTest()
/drivers/peripheral/audio/interfaces/2.0/include/
H A Daudio_control.h58 int32_t (*Start)(AudioHandle handle); member
66 * @see Start
/drivers/peripheral/camera/vdi_base/common/adapter/platform/mpp/src/pipeline_core/nodes/vi_node/
H A Dvi_node.h30 RetCode Start(const int32_t streamId) override;

Completed in 9 milliseconds

12345678