/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/device_registrar/ |
H A D | device_registrar_test.cpp | 58 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 D | device_registrar_test.cpp | 58 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 D | mock_idevice.h | 38 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
|
H A D | compilation_mock_idevice.cpp | 105 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 D | mock_idevice.h | 38 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
|
H A D | compilation_mock_idevice.cpp | 105 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 D | nnrt_device_impl.h | 72 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 D | mock_idevice.h | 38 MOCK_METHOD1(IsPrioritySupported, int32_t(bool&));
|
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
H A D | hdi_device_v1_0.h | 43 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override;
|
H A D | device.h | 47 virtual OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) = 0;
|
H A D | hdi_device_v2_0.h | 43 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override;
|
H A D | hdi_device_v2_1.h | 43 OH_NN_ReturnCode IsPrioritySupported(bool& isSupported) override;
|
H A D | hdi_device_v1_0.cpp | 210 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 D | hdi_device_v2_1.cpp | 252 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 D | hdi_device_v2_0.cpp | 257 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 D | nncompiler.cpp | 213 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 D | nnrt_device_service.h | 50 int32_t IsPrioritySupported(bool& isSupported) override;
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/include/ |
H A D | nnrt_device_service.h | 50 int32_t IsPrioritySupported(bool& isSupported) override;
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_compiler/ |
H A D | nn_compiler_test.cpp | 51 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 D | hdi_device_test.cpp | 640 * @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 D | nnrt_device_service.cpp | 93 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 D | hdi_device_test.cpp | 63 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 D | nnrt_device_service.cpp | 94 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 D | nn_compiled_cache_test.cpp | 50 MOCK_METHOD1(IsPrioritySupported, OH_NN_ReturnCode(bool&));
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_backend/ |
H A D | nn_backend_test.cpp | 48 MOCK_METHOD1(IsPrioritySupported, OH_NN_ReturnCode(bool&));
|