/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/device_registrar/ |
H A D | device_registrar_test.cpp | 46 virtual int32_t GetVendorName(std::string& name) = 0; 91 OH_NN_ReturnCode GetVendorName(std::string& name) override 166 MOCK_METHOD1(GetVendorName, int32_t(std::string&)); 206 EXPECT_CALL(*mockIDevice, GetVendorName(::testing::_)) in Get()
|
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/device_registrar/ |
H A D | device_registrar_test.cpp | 46 virtual int32_t GetVendorName(std::string& name) = 0; 91 OH_NN_ReturnCode GetVendorName(std::string& name) override 166 MOCK_METHOD1(GetVendorName, int32_t(std::string&)); 206 EXPECT_CALL(*mockIDevice, GetVendorName(::testing::_)) in Get()
|
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
H A D | register_hdi_device_v1_0.cpp | 45 hdiRet = iDevice->GetVendorName(vendorName); in HDIDeviceV1_0Creator()
|
H A D | hdi_device_v1_0.h | 34 OH_NN_ReturnCode GetVendorName(std::string& name) override;
|
H A D | device.h | 38 virtual OH_NN_ReturnCode GetVendorName(std::string& name) = 0;
|
H A D | register_hdi_device_v2_0.cpp | 52 ret = iDevice->GetVendorName(vendorName); in HDIDeviceV2_0Creator()
|
H A D | hdi_device_v2_0.h | 34 OH_NN_ReturnCode GetVendorName(std::string& name) override;
|
H A D | hdi_device_v2_1.h | 34 OH_NN_ReturnCode GetVendorName(std::string& name) override;
|
H A D | nnbackend.cpp | 59 ret = m_device->GetVendorName(vendorName); in GetBackendName()
|
H A D | hdi_device_v1_0.cpp | 103 OH_NN_ReturnCode HDIDeviceV1_0::GetVendorName(std::string& name) in GetVendorName() function in OHOS::NeuralNetworkRuntime::HDIDeviceV1_0 105 auto ret = m_iDevice->GetVendorName(name); in GetVendorName()
|
H A D | hdi_device_v2_1.cpp | 139 OH_NN_ReturnCode HDIDeviceV2_1::GetVendorName(std::string& name) in GetVendorName() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_1 141 auto ret = m_iDevice->GetVendorName(name); in GetVendorName()
|
H A D | hdi_device_v2_0.cpp | 144 OH_NN_ReturnCode HDIDeviceV2_0::GetVendorName(std::string& name) in GetVendorName() function in OHOS::NeuralNetworkRuntime::HDIDeviceV2_0 146 auto ret = m_iDevice->GetVendorName(name); in GetVendorName()
|
/foundation/ai/neural_network_runtime/test/unittest/common/v2_0/ |
H A D | mock_idevice.h | 32 MOCK_METHOD1(GetVendorName, int32_t(std::string&));
|
/foundation/ai/neural_network_runtime/test/unittest/common/v1_0/ |
H A D | mock_idevice.h | 32 MOCK_METHOD1(GetVendorName, int32_t(std::string&));
|
/foundation/ai/neural_network_runtime/test/fuzztest/ |
H A D | nnrt_device_impl.h | 36 int32_t GetVendorName(std::string& name)
in GetVendorName() function in OHOS::HDI::Nnrt::V2_0::NnrtDeviceImpl
|
/foundation/ai/neural_network_runtime/test/unittest/common/v2_1/ |
H A D | mock_idevice.h | 32 MOCK_METHOD1(GetVendorName, int32_t(std::string&));
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v1_0/hdi_cpu_service/include/ |
H A D | nnrt_device_service.h | 38 int32_t GetVendorName(std::string& name) override;
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v2_0/hdi_cpu_service/include/ |
H A D | nnrt_device_service.h | 38 int32_t GetVendorName(std::string& name) override;
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_backend/ |
H A D | nn_backend_test.cpp | 40 MOCK_METHOD1(GetVendorName, OH_NN_ReturnCode(std::string&)); 135 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in HWTEST_F() 158 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in HWTEST_F() 184 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in HWTEST_F()
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_compiled_cache/ |
H A D | nn_compiled_cache_test.cpp | 42 MOCK_METHOD1(GetVendorName, OH_NN_ReturnCode(std::string&)); 132 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in Creator() 196 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in Creator2()
|
/foundation/ai/neural_network_runtime/test/unittest/components/nn_tensor/ |
H A D | nn_tensor_test.cpp | 48 MOCK_METHOD1(GetVendorName, OH_NN_ReturnCode(std::string&)); 257 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in Creator() 424 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in Creator3() 489 EXPECT_CALL(*((MockIDevice *) device.get()), GetVendorName(::testing::_)) in Creator4()
|
/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/device_manager/ |
H A D | device_manager_test.cpp | 46 EXPECT_CALL(*device, GetVendorName(::testing::_)) in MockInit()
|
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/hdi_device/ |
H A D | hdi_device_test.cpp | 173 * @tc.desc: Verify the GetVendorName function validate vendor name success. 182 EXPECT_CALL(*((V1_0::MockIDevice *)device.GetRefPtr()), GetVendorName(::testing::_)) in HWTEST_F() 187 OH_NN_ReturnCode result = hdiDevice->GetVendorName(newVendorName); in HWTEST_F() 194 * @tc.desc: Verify the GetVendorName function return unavailable device. 203 EXPECT_CALL(*((V1_0::MockIDevice *)device.GetRefPtr()), GetVendorName(::testing::_)) in HWTEST_F() 205 OH_NN_ReturnCode result = hdiDevice->GetVendorName(vendorName); in HWTEST_F()
|
/foundation/ai/neural_network_runtime/example/drivers/nnrt/v1_0/hdi_cpu_service/src/ |
H A D | nnrt_device_service.cpp | 51 int32_t NnrtDeviceService::GetVendorName(std::string& name) in GetVendorName() 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 | 57 MOCK_METHOD1(GetVendorName, int32_t(std::string&)); 304 * @tc.desc: Verify the GetVendorName function validate vendor name success. 313 EXPECT_CALL(*((V2_0::MockIDevice *)device.GetRefPtr()), GetVendorName(::testing::_)) in HWTEST_F() 318 OH_NN_ReturnCode result = hdiDevice->GetVendorName(newVendorName); in HWTEST_F() 325 * @tc.desc: Verify the GetVendorName function return unavailable device. 334 EXPECT_CALL(*((V2_0::MockIDevice *)device.GetRefPtr()), GetVendorName(::testing::_)) in HWTEST_F() 336 OH_NN_ReturnCode result = hdiDevice->GetVendorName(vendorName); in HWTEST_F() 1678 * @tc.desc: Verify the GetVendorName function validate vendor name success. 1687 EXPECT_CALL(*((V2_1::MockIDevice *)device.GetRefPtr()), GetVendorName(::testing::_)) in HWTEST_F() 1692 OH_NN_ReturnCode result = hdiDevice->GetVendorName(newVendorNam in HWTEST_F() [all...] |