Home
last modified time | relevance | path

Searched refs:Get (Results 1 - 25 of 267) sorted by relevance

1234567891011

/drivers/peripheral/partitionslot/test/unittest/
H A Dhdf_partitionslot_test.cpp34 auto devmgr = IDeviceManager::Get(); in SetUpTestCase()
38 std::cout << "Get devmgr failed" << std::endl; in SetUpTestCase()
43 auto devmgr = IDeviceManager::Get(); in TearDownTestCase()
47 std::cout << "Get devmgr failed" << std::endl; in TearDownTestCase()
59 sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get(); in HWTEST_F()
69 sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get(); in HWTEST_F()
79 sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get(); in HWTEST_F()
89 sptr<IPartitionSlot> partitionslot = IPartitionSlot::Get(); in HWTEST_F()
/drivers/peripheral/wlan/chip/hdi_service/
H A Diface_tool.cpp64 if (sock.Get() < 0) { in GetUpState()
69 if (!GetIfState(ifName, sock.Get(), &ifr)) { in GetUpState()
78 if (sock.Get() < 0) { in SetUpState()
83 if (!GetIfState(ifName, sock.Get(), &ifr)) { in SetUpState()
95 if (TEMP_FAILURE_RETRY(ioctl(sock.Get(), SIOCSIFFLAGS, &ifr)) != 0) { in SetUpState()
118 if (sock.Get() < 0) { in SetMacAddress()
122 if (!GetIfState(ifName, sock.Get(), &ifr)) { in SetMacAddress()
132 if (TEMP_FAILURE_RETRY(ioctl(sock.Get(), SIOCSIFHWADDR, &ifr)) != 0) { in SetMacAddress()
/drivers/interface/camera/sequenceable/map_data/
H A Dmap_data_sequenceable.h38 int32_t Get(const std::string &key, int32_t &value) const;
39 int32_t Get(const std::string &key, int64_t &value) const;
40 int32_t Get(const std::string &key, double &value) const;
41 int32_t Get(const std::string &key, std::string &value) const;
59 int32_t Get(const std::string &key, MapDataType type, T &value) const;
H A Dmap_data_sequenceable.cpp132 int32_t MapDataSequenceable::Get(const std::string &key, int32_t &value) const in Get() function in OHOS::HDI::Camera::V1_0::MapDataSequenceable
134 return Get<int32_t>(key, MapDataType::I32, value); in Get()
137 int32_t MapDataSequenceable::Get(const std::string &key, int64_t &value) const in Get() function in OHOS::HDI::Camera::V1_0::MapDataSequenceable
139 return Get<int64_t>(key, MapDataType::I64, value); in Get()
142 int32_t MapDataSequenceable::Get(const std::string &key, double &value) const in Get() function in OHOS::HDI::Camera::V1_0::MapDataSequenceable
144 return Get<double>(key, MapDataType::F64, value); in Get()
147 int32_t MapDataSequenceable::Get(const std::string &key, std::string &value) const in Get() function in OHOS::HDI::Camera::V1_0::MapDataSequenceable
149 return Get<std::string>(key, MapDataType::STRING, value); in Get()
173 int32_t MapDataSequenceable::Get(const std::string &key, MapDataType type, T &value) const in Get() function in OHOS::HDI::Camera::V1_0::MapDataSequenceable
/drivers/peripheral/camera/test/hdi/sequenceable_test/src/
H A Dcamera_hdi_sequenceable_test.cpp52 // Get and Set Test in HWTEST_F()
57 ret = mapDataSequenceable->Get("i32Temp", i32Temp1); in HWTEST_F()
65 ret = mapDataSequenceable->Get("i64Temp", i64Temp1); in HWTEST_F()
73 ret = mapDataSequenceable->Get("doubleTemp", doubleTemp1); in HWTEST_F()
81 ret = mapDataSequenceable->Get("stringTemp", stringTemp1); in HWTEST_F()
93 ret = mapDataSequenceable2->Get("i32Temp", i32Temp2); in HWTEST_F()
98 ret = mapDataSequenceable2->Get("i64Temp", i64Temp2); in HWTEST_F()
103 ret = mapDataSequenceable2->Get("doubleTemp", doubleTemp2); in HWTEST_F()
108 ret = mapDataSequenceable2->Get("stringTemp", stringTemp2); in HWTEST_F()
/drivers/hdf_core/adapter/uhdf2/hdi/test/servmgr/
H A Dservice_manager_hdi_test.cpp73 auto devmgr = IDeviceManager::Get(); in SetUpTestCase()
83 auto devmgr = IDeviceManager::Get(); in TearDownTestCase()
99 auto servmgr = IServiceManager::Get(); in HWTEST_F()
106 auto servmgr = IServiceManager::Get(); in HWTEST_F()
144 auto servmgr = IServiceManager::Get(); in HWTEST_F()
167 auto servmgr = IServiceManager::Get(); in HWTEST_F()
190 auto servmgr = IServiceManager::Get(); in HWTEST_F()
226 auto devmgr = IDeviceManager::Get(); in HWTEST_F()
230 auto servmgr = IServiceManager::Get(); in HWTEST_F()
364 auto devmgr = IDeviceManager::Get(); in HWTEST_F()
[all...]
/drivers/peripheral/display/buffer/test/unittest/
H A Ddeath_test.cpp42 displayBuffer_.reset(IDisplayBuffer::Get()); in HWTEST_F()
54 displayBuffer_.reset(IDisplayBuffer::Get()); in HWTEST_F()
/drivers/peripheral/display/composer/test/unittest/
H A Dhdi_death_test.cpp42 displayComposer_ = Composer::V1_2::IDisplayComposerInterface::Get(); in HWTEST_F()
54 displayComposer_ = Composer::V1_2::IDisplayComposerInterface::Get(); in HWTEST_F()
/drivers/peripheral/memorytracker/test/unittest/phone/
H A Dhdf_memorytracker_test.cpp58 sptr<IMemoryTrackerInterface> memtrack = IMemoryTrackerInterface::Get(); in HWTEST_F()
78 sptr<IMemoryTrackerInterface> memtrack = IMemoryTrackerInterface::Get(true); in HWTEST_F()
/drivers/peripheral/display/hdi_service/gralloc/client/
H A Dallocator_proxy.cpp31 sptr<IDisplayAllocator> IDisplayAllocator::Get(const char *serviceName) in Get() function in OHOS::HDI::Display::V1_0::IDisplayAllocator
39 static sptr<IServiceManager> servMgr = IServiceManager::Get(); in Get()
47 servMgr = IServiceManager::Get(); in Get()
/drivers/interface/display/buffer/v1_0/hdi_impl/
H A Ddisplay_buffer_hdi_impl.cpp23 IDisplayBuffer *IDisplayBuffer::Get() in Get() function in OHOS::HDI::Display::Buffer::V1_0::IDisplayBuffer
/drivers/interface/display/composer/v1_0/hdi_impl/
H A Ddisplay_composer_interface.cpp24 IDisplayComposerInterface* IDisplayComposerInterface::Get(bool needSMQ) in Get() function in OHOS::HDI::Display::Composer::V1_0::IDisplayComposerInterface
/drivers/interface/display/composer/v1_1/hdi_impl/
H A Ddisplay_composer_interface.cpp24 IDisplayComposerInterface* IDisplayComposerInterface::Get(bool needSMQ) in Get() function in OHOS::HDI::Display::Composer::V1_1::IDisplayComposerInterface
/drivers/interface/display/composer/v1_2/hdi_impl/
H A Ddisplay_composer_interface.cpp24 IDisplayComposerInterface* IDisplayComposerInterface::Get(bool needSMQ) in Get() function in OHOS::HDI::Display::Composer::V1_2::IDisplayComposerInterface
/drivers/peripheral/camera/vdi_base/interfaces/v1_0/
H A Dicamera_host_vdi.h64 static ICameraHostVdi* Get(bool isStub = false);
65 static ICameraHostVdi* Get(const std::string &serviceName, bool isStub = false);
/drivers/peripheral/clearplay/interfaces/include/drm/v1_0/
H A Dimedia_key_system_factory.h67 static sptr<OHOS::HDI::Drm::V1_0::IMediaKeySystemFactory> Get(bool isStub = false);
68 static sptr<OHOS::HDI::Drm::V1_0::IMediaKeySystemFactory> Get(const std::string &serviceName, bool isStub = false);
/drivers/peripheral/display/composer/test/common/
H A Dhdi_test_device.cpp46 displayDevice_ = Composer::V1_2::IDisplayComposerInterface::Get(); in InitDevice()
50 gralloc_.reset(IDisplayBuffer::Get()); in InitDevice()
/drivers/interface/display/buffer/v1_1/hdi_impl/
H A Ddisplay_buffer_hdi_impl.cpp23 IDisplayBuffer *IDisplayBuffer::Get() in Get() function in OHOS::HDI::Display::Buffer::V1_1::IDisplayBuffer
/drivers/interface/display/buffer/v1_2/hdi_impl/
H A Ddisplay_buffer_hdi_impl.cpp23 IDisplayBuffer *IDisplayBuffer::Get() in Get() function in OHOS::HDI::Display::Buffer::V1_2::IDisplayBuffer
/drivers/peripheral/display/hal/default_standard/src/display_device/drm/
H A Dhdi_drm_composition.cpp135 ret = drmModeAtomicAddProperty(atomicReqPtr.Get(), mCrtc->GetId(), mCrtc->GetOutFencePropId(), in Apply()
147 ret = ApplyPlane(*layer, *drmPlane, atomicReqPtr.Get()); in Apply()
153 ret = UpdateMode(modeBlock, *(atomicReqPtr.Get())); in Apply()
157 ret = drmModeAtomicCommit(drmFd, atomicReqPtr.Get(), flags, nullptr); in Apply()
/drivers/interface/display/buffer/v1_2/include/
H A Didisplay_buffer.h38 static IDisplayBuffer *Get();
/drivers/peripheral/display/hdi_service/gralloc/include/
H A Didisplay_allocator.h32 static sptr<IDisplayAllocator> Get(const char *serviceName);
/drivers/peripheral/light/test/fuzztest/turnofflight_fuzzer/
H A Dturnofflight_fuzzer.cpp27 sptr<ILightInterface> g_lightInterface = ILightInterface::Get(); in TurnOffLightFuzzTest()
/drivers/peripheral/light/test/fuzztest/turnonlight_fuzzer/
H A Dturnonlight_fuzzer.cpp27 sptr<ILightInterface> g_lightInterface = ILightInterface::Get(); in TurnOnLightFuzzTest()
/drivers/peripheral/sensor/test/fuzztest/sensorenable_fuzzer/
H A Dsensorenable_fuzzer.cpp26 sptr<ISensorInterface> g_sensorInterface = ISensorInterface::Get(); in SensorEnableFuzzTest()

Completed in 7 milliseconds

1234567891011