Home
last modified time | relevance | path

Searched refs:IsPrioritySupported (Results 1 - 25 of 30) sorted by relevance

12

/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/device_registrar/
H A Ddevice_registrar_test.cpp58 virtual int32_t IsPrioritySupported(bool& isSupported) = 0;
124 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override
172 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/device_registrar/
H A Ddevice_registrar_test.cpp58 virtual int32_t IsPrioritySupported(bool& isSupported) = 0;
124 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override
172 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
/foundation/ai/neural_network_runtime/test/unittest/common/v2_0/
H A Dmock_idevice.h38 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
H A Dcompilation_mock_idevice.cpp105 OH_NN_ReturnCode HDIDeviceV2_0::IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_0
/foundation/ai/neural_network_runtime/test/unittest/common/v1_0/
H A Dmock_idevice.h38 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
H A Dcompilation_mock_idevice.cpp105 OH_NN_ReturnCode HDIDeviceV1_0::IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV1_0
/foundation/ai/neural_network_runtime/test/fuzztest/
H A Dnnrt_device_impl.h72 int32_t IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::HDI::Nnrt::V2_0::NnrtDeviceImpl
/foundation/ai/neural_network_runtime/test/unittest/common/v2_1/
H A Dmock_idevice.h38 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/
H A Dhdi_device_v1_0.h43 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override;
H A Ddevice.h47 virtual OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) = 0;
H A Dhdi_device_v2_0.h43 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override;
H A Dhdi_device_v2_1.h43 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override;
H A Dhdi_device_v1_0.cpp210 OH_NN_ReturnCode HDIDeviceV1_0::IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV1_0
212 auto ret = m_iDevice->IsPrioritySupported(isSupported); in IsPrioritySupported()
H A Dhdi_device_v2_1.cpp252 OH_NN_ReturnCode HDIDeviceV2_1::IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_1
254 auto ret = m_iDevice->IsPrioritySupported(isSupported); in IsPrioritySupported()
H A Dhdi_device_v2_0.cpp257 OH_NN_ReturnCode HDIDeviceV2_0::IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_0
259 auto ret = m_iDevice->IsPrioritySupported(isSupported); in IsPrioritySupported()
H A Dnncompiler.cpp213 OH_NN_ReturnCode ret = m_device->IsPrioritySupported(isSupportedPriority); in SetPriority()
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v1_0/hdi_cpu_service/include/
H A Dnnrt_device_service.h50 int32_t IsPrioritySupported(bool& isSupported) override;
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/include/
H A Dnnrt_device_service.h50 int32_t IsPrioritySupported(bool& isSupported) override;
/foundation/ai/neural_network_runtime/test/unittest/components/nn_compiler/
H A Dnn_compiler_test.cpp51 MOCK_METHOD1(IsPrioritySupported, OH_NN_ReturnCode(bool&));
480 EXPECT_CALL(*((MockIDevice *) device.get()), IsPrioritySupported(::testing::_)) in HWTEST_F()
503 EXPECT_CALL(*((MockIDevice *) device.get()), IsPrioritySupported(::testing::_)) in HWTEST_F()
590 EXPECT_CALL(*((MockIDevice *) device.get()), IsPrioritySupported(::testing::_)) in HWTEST_F()
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/hdi_device/
H A Dhdi_device_test.cpp640 * @tc.desc: Verify the IsPrioritySupported function return success.
650 EXPECT_CALL(*((V1_0::MockIDevice *)device.GetRefPtr()), IsPrioritySupported(::testing::_)) in HWTEST_F()
655 OH_NN_ReturnCode result = hdiDevice->IsPrioritySupported(newIsSupported); in HWTEST_F()
662 * @tc.desc: Verify the IsPrioritySupported function return unavailable device.
672 EXPECT_CALL(*((V1_0::MockIDevice *)device.GetRefPtr()), IsPrioritySupported(::testing::_)) in HWTEST_F()
674 OH_NN_ReturnCode result = hdiDevice->IsPrioritySupported(isSupported); in HWTEST_F()
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v1_0/hdi_cpu_service/src/
H A Dnnrt_device_service.cpp93 int32_t NnrtDeviceService::IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::HDI::Nnrt::V1_0::NnrtDeviceService
/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/hdi_device/
H A Dhdi_device_test.cpp63 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
782 * @tc.desc: Verify the IsPrioritySupported function return success.
792 EXPECT_CALL(*((V2_0::MockIDevice *)device.GetRefPtr()), IsPrioritySupported(::testing::_)) in HWTEST_F()
797 OH_NN_ReturnCode result = hdiDevice->IsPrioritySupported(newIsSupported); in HWTEST_F()
804 * @tc.desc: Verify the IsPrioritySupported function return unavailable device.
814 EXPECT_CALL(*((V2_0::MockIDevice *)device.GetRefPtr()), IsPrioritySupported(::testing::_)) in HWTEST_F()
816 OH_NN_ReturnCode result = hdiDevice->IsPrioritySupported(isSupported); in HWTEST_F()
2154 * @tc.desc: Verify the IsPrioritySupported function return success.
2164 EXPECT_CALL(*((V2_1::MockIDevice *)device.GetRefPtr()), IsPrioritySupported(::testing::_)) in HWTEST_F()
2169 OH_NN_ReturnCode result = hdiDevice->IsPrioritySupported(newIsSupporte in HWTEST_F()
[all...]
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/src/
H A Dnnrt_device_service.cpp94 int32_t NnrtDeviceService::IsPrioritySupported(bool& isSupported) in IsPrioritySupported() function in OHOS::HDI::Nnrt::V2_0::NnrtDeviceService
/foundation/ai/neural_network_runtime/test/unittest/components/nn_compiled_cache/
H A Dnn_compiled_cache_test.cpp50 MOCK_METHOD1(IsPrioritySupported, OH_NN_ReturnCode(bool&));
/foundation/ai/neural_network_runtime/test/unittest/components/nn_backend/
H A Dnn_backend_test.cpp48 MOCK_METHOD1(IsPrioritySupported, OH_NN_ReturnCode(bool&));

Completed in 21 milliseconds

12