Home
last modified time | relevance | path

Searched refs:deviceType (Results 1 - 25 of 463) sorted by relevance

12345678910>>...19

/foundation/ability/ability_runtime/test/unittest/app_utils_test/
H A Dapp_utils_test.cpp56 std::string deviceType = OHOS::system::GetDeviceType(); in HWTEST_F() local
57 TAG_LOGI(AAFwkTag::TEST, "current deviceType is %{public}s", deviceType.c_str()); in HWTEST_F()
58 if (deviceType == "default") { in HWTEST_F()
60 } else if (deviceType == "phone") { in HWTEST_F()
62 } else if (deviceType == "2in1") { in HWTEST_F()
76 std::string deviceType = OHOS::system::GetDeviceType(); in HWTEST_F() local
77 TAG_LOGI(AAFwkTag::TEST, "current deviceType is %{public}s", deviceType.c_str()); in HWTEST_F()
78 if (deviceType in HWTEST_F()
96 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
116 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
136 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
156 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
176 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
196 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
216 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
236 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
256 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
276 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
296 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
324 std::string deviceType = OHOS::system::GetDeviceType(); HWTEST_F() local
[all...]
/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/common/src/
H A Dlnn_device_info.c85 static uint16_t ConvertStringToInt(const char *deviceType, uint16_t *typeId) in ConvertStringToInt() argument
89 uint32_t len = strlen(deviceType); in ConvertStringToInt()
91 if ((*(deviceType + i) <= '9') && (*(deviceType + i) >= '0')) { in ConvertStringToInt()
92 *typeId |= (uint16_t)(*(deviceType + i) - '0'); in ConvertStringToInt()
95 } else if ((*(deviceType + i) <= 'F') && (*(deviceType + i) >= 'A')) { in ConvertStringToInt()
96 tmp = (*(deviceType + i) - 'A' + DIVIDE_NUMBER_AND_LETTERS); in ConvertStringToInt()
100 } else if ((*(deviceType + i) <= 'f') && (*(deviceType in ConvertStringToInt()
136 LnnConvertDeviceTypeToId(const char *deviceType, uint16_t *typeId) LnnConvertDeviceTypeToId() argument
[all...]
/foundation/multimedia/audio_framework/services/audio_policy/server/include/service/manager/
H A Dvolume_data_maintainer.h63 bool GetVolume(DeviceType deviceType, AudioStreamType streamType);
68 bool SaveMuteStatus(DeviceType deviceType, AudioStreamType streamType,
70 bool GetMuteStatus(DeviceType deviceType, AudioStreamType streamType);
81 bool SaveSafeStatus(DeviceType deviceType, SafeStatus safeStatus);
82 bool GetSafeStatus(DeviceType deviceType, SafeStatus &safeStatus);
83 bool SaveSafeVolumeTime(DeviceType deviceType, int64_t time);
84 bool GetSafeVolumeTime(DeviceType deviceType, int64_t &time);
93 static std::string GetVolumeKeyForDataShare(DeviceType deviceType, AudioStreamType streamType);
94 static std::string GetMuteKeyForDataShare(DeviceType deviceType, AudioStreamType streamType);
95 static std::string GetDeviceTypeName(DeviceType deviceType);
[all...]
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/manager/
H A Dvolume_data_maintainer.cpp141 bool VolumeDataMaintainer::GetVolume(DeviceType deviceType, AudioStreamType streamType) in GetVolume() argument
144 return GetVolumeInternal(deviceType, streamType); in GetVolume()
147 bool VolumeDataMaintainer::GetVolumeInternal(DeviceType deviceType, AudioStreamType streamType) in GetVolumeInternal() argument
149 std::string volumeKey = GetVolumeKeyForDataShare(deviceType, streamType); in GetVolumeInternal()
152 deviceType, streamType); in GetVolumeInternal()
201 bool VolumeDataMaintainer::SaveMuteStatus(DeviceType deviceType, AudioStreamType streamType, in SaveMuteStatus() argument
218 return SaveMuteStatusInternal(deviceType, streamType, muteStatus); in SaveMuteStatus()
221 bool VolumeDataMaintainer::SaveMuteStatusInternal(DeviceType deviceType, AudioStreamType streamType, in SaveMuteStatusInternal() argument
224 std::string muteKey = GetMuteKeyForDataShare(deviceType, streamType); in SaveMuteStatusInternal()
227 "datashare", deviceType, streamTyp in SaveMuteStatusInternal()
250 GetMuteStatus(DeviceType deviceType, AudioStreamType streamType) GetMuteStatus() argument
256 GetMuteStatusInternal(DeviceType deviceType, AudioStreamType streamType) GetMuteStatusInternal() argument
371 SaveSafeStatus(DeviceType deviceType, SafeStatus safeStatus) SaveSafeStatus() argument
396 GetSafeStatus(DeviceType deviceType, SafeStatus &safeStatus) GetSafeStatus() argument
427 SaveSafeVolumeTime(DeviceType deviceType, int64_t time) SaveSafeVolumeTime() argument
453 GetSafeVolumeTime(DeviceType deviceType, int64_t &time) GetSafeVolumeTime() argument
549 GetDeviceTypeName(DeviceType deviceType) GetDeviceTypeName() argument
576 GetVolumeKeyForDataShare(DeviceType deviceType, AudioStreamType streamType) GetVolumeKeyForDataShare() argument
596 GetMuteKeyForDataShare(DeviceType deviceType, AudioStreamType streamType) GetMuteKeyForDataShare() argument
[all...]
H A Daudio_adapter_manager.cpp295 AUDIO_INFO_LOG("SetSystemVolumeLevel: streamType: %{public}d, deviceType: %{public}d, volumeLevel:%{public}d", in SetSystemVolumeLevel()
302 AUDIO_INFO_LOG("SetSystemVolumeLevel: streamType: %{public}d, deviceType: %{public}d, volumeLevel:%{public}d", in SetSystemVolumeLevel()
343 void AudioAdapterManager::HandleSaveVolume(DeviceType deviceType, AudioStreamType streamType, int32_t volumeLevel) in HandleSaveVolume() argument
345 volumeDataMaintainer_.SaveVolume(deviceType, streamType, volumeLevel); in HandleSaveVolume()
661 int32_t AudioAdapterManager::SelectDevice(DeviceRole deviceRole, InternalDeviceType deviceType, std::string name) in SelectDevice() argument
669 AUDIO_INFO_LOG("SetDefaultSink %{public}d", deviceType); in SelectDevice()
679 int32_t AudioAdapterManager::SetDeviceActive(InternalDeviceType deviceType, in SetDeviceActive() argument
685 switch (deviceType) { in SetDeviceActive()
696 if (IsInputDevice(deviceType) && (flag & INPUT_DEVICES_FLAG)) { in SetDeviceActive()
697 AUDIO_INFO_LOG("SetDefaultSource %{public}d", deviceType); in SetDeviceActive()
722 SetVolumeForSwitchDevice(InternalDeviceType deviceType) SetVolumeForSwitchDevice() argument
1053 GetVolumeKeyForKvStore(DeviceType deviceType, AudioStreamType streamType) GetVolumeKeyForKvStore() argument
1118 GetDeviceCategory(DeviceType deviceType) GetDeviceCategory() argument
1398 CheckAndDealMuteStatus(const DeviceType &deviceType, const AudioStreamType &streamType) CheckAndDealMuteStatus() argument
1552 GetCurrentDeviceSafeStatus(DeviceType deviceType) GetCurrentDeviceSafeStatus() argument
1573 GetCurentDeviceSafeTime(DeviceType deviceType) GetCurentDeviceSafeTime() argument
1594 SetDeviceSafeStatus(DeviceType deviceType, SafeStatus status) SetDeviceSafeStatus() argument
1606 SetDeviceSafeTime(DeviceType deviceType, int64_t time) SetDeviceSafeTime() argument
1618 GetMuteKeyForKvStore(DeviceType deviceType, AudioStreamType streamType) GetMuteKeyForKvStore() argument
1758 GetSystemVolumeInDb(AudioVolumeType volumeType, int32_t volumeLevel, DeviceType deviceType) GetSystemVolumeInDb() argument
1792 CalculateVolumeDbNonlinear(AudioStreamType streamType, DeviceType deviceType, int32_t volumeLevel) CalculateVolumeDbNonlinear() argument
1874 GetVolumePoints(AudioVolumeType streamType, DeviceVolumeType deviceType, std::vector<VolumePoint> &volumePoints) GetVolumePoints() argument
1895 SetActiveDevice(DeviceType deviceType) SetActiveDevice() argument
[all...]
/foundation/multimodalinput/input/tools/vuinput/test/
H A Dvirtual_device_test.cpp46 std::string deviceType = "mouse"; in HWTEST_F() local
47 auto ret = device.CreateHandle(deviceType); in HWTEST_F()
60 std::string deviceType = "keyboard"; in HWTEST_F() local
61 auto ret = device.CreateHandle(deviceType); in HWTEST_F()
74 std::string deviceType = "knob"; in HWTEST_F() local
75 auto ret = device.CreateHandle(deviceType); in HWTEST_F()
88 std::string deviceType = "joystick"; in HWTEST_F() local
89 auto ret = device.CreateHandle(deviceType); in HWTEST_F()
102 std::string deviceType = "trackball"; in HWTEST_F() local
103 auto ret = device.CreateHandle(deviceType); in HWTEST_F()
116 std::string deviceType = "remotecontrol"; HWTEST_F() local
130 std::string deviceType = "trackpad"; HWTEST_F() local
144 std::string deviceType = "gamepad"; HWTEST_F() local
158 std::string deviceType = "touchpad"; HWTEST_F() local
172 std::string deviceType = "touchscreen"; HWTEST_F() local
186 std::string deviceType = "phone"; HWTEST_F() local
[all...]
/foundation/multimedia/audio_framework/services/audio_policy/test/unittest/audio_policy_service_unit_test/src/
H A Daudio_policy_service_second_unit_test.cpp198 DeviceType deviceType = DeviceType::DEVICE_TYPE_SPEAKER; in HWTEST_F() local
199 int32_t ret = server->audioPolicyService_.ReconfigureAudioChannel(channelCount, deviceType); in HWTEST_F()
202 deviceType = DeviceType::DEVICE_TYPE_FILE_SINK; in HWTEST_F()
203 ret = server->audioPolicyService_.ReconfigureAudioChannel(channelCount, deviceType); in HWTEST_F()
274 DeviceType deviceType = DeviceType::DEVICE_TYPE_MAX; in HWTEST_F() local
275 bool ret = server->audioPolicyService_.IsWiredHeadSet(deviceType); in HWTEST_F()
278 deviceType = DeviceType::DEVICE_TYPE_WIRED_HEADSET; in HWTEST_F()
279 ret = server->audioPolicyService_.IsWiredHeadSet(deviceType); in HWTEST_F()
291 DeviceType deviceType = DeviceType::DEVICE_TYPE_SPEAKER; in HWTEST_F() local
292 bool ret = server->audioPolicyService_.IsBlueTooth(deviceType); in HWTEST_F()
430 DeviceType deviceType = DeviceType::DEVICE_TYPE_SPEAKER; HWTEST_F() local
532 DeviceType deviceType = DeviceType::DEVICE_TYPE_SPEAKER; HWTEST_F() local
564 DeviceType deviceType = server->audioPolicyService_.GetDeviceTypeFromPin(hdiPin); HWTEST_F() local
664 DeviceType deviceType = DeviceType::DEVICE_TYPE_SPEAKER; HWTEST_F() local
743 DeviceType deviceType = DeviceType::DEVICE_TYPE_SPEAKER; HWTEST_F() local
761 DeviceType deviceType; HWTEST_F() local
807 DeviceType deviceType = DeviceType::DEVICE_TYPE_SPEAKER; HWTEST_F() local
[all...]
H A Daudio_policy_service_first_unit_test.cpp305 for (const auto& deviceType : deviceTypes) { in HWTEST_F()
306 AUDIO_INFO_LOG("AudioPolicyServiceTest_001 deviceType:%{public}d, TEST_SESSIONID:%{public}d", in HWTEST_F()
307 static_cast<uint32_t>(deviceType), TEST_SESSIONID); in HWTEST_F()
313 GetServerPtr()->audioPolicyService_.OnPnpDeviceStatusUpdated(deviceType, isConnected); in HWTEST_F()
314 GetServerPtr()->audioPolicyService_.OnPnpDeviceStatusUpdated(deviceType, isConnected, name, macAddress); in HWTEST_F()
316 GetServerPtr()->audioPolicyService_.OnPnpDeviceStatusUpdated(deviceType, isConnected); in HWTEST_F()
317 GetServerPtr()->audioPolicyService_.OnPnpDeviceStatusUpdated(deviceType, isConnected, name, macAddress); in HWTEST_F()
318 GetServerPtr()->audioPolicyService_.SetCallDeviceActive(deviceType, isConnected, macAddress); in HWTEST_F()
326 GetServerPtr()->audioPolicyService_.UpdateAudioCapturerMicrophoneDescriptor(deviceType); in HWTEST_F()
339 GetServerPtr()->audioPolicyService_.ConstructMchAudioModuleInfo(deviceType); in HWTEST_F()
994 InternalDeviceType deviceType = DEVICE_TYPE_NONE; HWTEST_F() local
1050 InternalDeviceType deviceType = DEVICE_TYPE_NONE; HWTEST_F() local
1107 InternalDeviceType deviceType = DEVICE_TYPE_NONE; HWTEST_F() local
1150 DeviceType deviceType = DEVICE_TYPE_NONE; HWTEST_F() local
1185 DeviceType deviceType = DEVICE_TYPE_NONE; HWTEST_F() local
[all...]
/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/
H A Dmodule_info_utils.cpp31 SetModuleInfoDeviceType(des, src.deviceType, DEVICE_TYPE_SIZE); in CopyModuleInfo()
62 ClearModuleInfoDeviceType(moduleInfo->deviceType, DEVICE_TYPE_SIZE); in ClearModuleInfo()
112 bool ModuleInfoUtils::SetModuleInfoDeviceType(ModuleInfo *moduleInfo, char **deviceType, uint32_t numOfDeviceType) in SetModuleInfoDeviceType() argument
114 if (moduleInfo == nullptr || deviceType == nullptr || numOfDeviceType > DEVICE_TYPE_SIZE) { in SetModuleInfoDeviceType()
118 ClearModuleInfoDeviceType(moduleInfo->deviceType, DEVICE_TYPE_SIZE); in SetModuleInfoDeviceType()
121 if (deviceType[i] != nullptr) { in SetModuleInfoDeviceType()
122 moduleInfo->deviceType[i] = Utils::Strdup(deviceType[i]); in SetModuleInfoDeviceType()
123 if (moduleInfo->deviceType[i] == nullptr) { in SetModuleInfoDeviceType()
124 ClearModuleInfoDeviceType(moduleInfo->deviceType, DEVICE_TYPE_SIZ in SetModuleInfoDeviceType()
132 ClearModuleInfoDeviceType(char **deviceType, uint32_t numOfdeviceType) ClearModuleInfoDeviceType() argument
[all...]
/foundation/multimedia/audio_framework/services/audio_policy/server/include/service/interface/
H A Diaudio_policy_interface.h74 virtual int32_t SelectDevice(DeviceRole deviceRole, InternalDeviceType deviceType, std::string name);
76 virtual int32_t SetDeviceActive(InternalDeviceType deviceType,
92 virtual void SetVolumeForSwitchDevice(InternalDeviceType deviceType) = 0;
118 virtual float GetSystemVolumeInDb(AudioVolumeType volumeType, int32_t volumeLevel, DeviceType deviceType) = 0;
126 virtual SafeStatus GetCurrentDeviceSafeStatus(DeviceType deviceType) = 0;
128 virtual int64_t GetCurentDeviceSafeTime(DeviceType deviceType) = 0;
130 virtual int32_t SetDeviceSafeStatus(DeviceType deviceType, SafeStatus status) = 0;
132 virtual int32_t SetDeviceSafeTime(DeviceType deviceType, int64_t time) = 0;
140 virtual void SetActiveDevice(DeviceType deviceType) = 0;
154 virtual void HandleSaveVolume(DeviceType deviceType, AudioStreamTyp
[all...]
/foundation/multimedia/audio_framework/interfaces/inner_api/native/audiocommon/include/
H A Daudio_device_info.h188 inline bool IsInputDevice(DeviceType deviceType) in IsInputDevice() argument
190 return INPUT_DEVICE_TYPE_SET.count(deviceType) > 0; in IsInputDevice()
193 inline bool IsInputDevice(DeviceType deviceType, DeviceRole deviceRole) in IsInputDevice() argument
196 if (deviceType == DEVICE_TYPE_USB_ARM_HEADSET) { in IsInputDevice()
199 return INPUT_DEVICE_TYPE_SET.count(deviceType) > 0; in IsInputDevice()
217 inline bool IsOutputDevice(DeviceType deviceType) in IsOutputDevice() argument
219 return OUTPUT_DEVICE_TYPE_SET.count(deviceType) > 0; in IsOutputDevice()
222 inline bool IsOutputDevice(DeviceType deviceType, DeviceRole deviceRole) in IsOutputDevice() argument
225 if (deviceType == DEVICE_TYPE_USB_ARM_HEADSET) { in IsOutputDevice()
228 return OUTPUT_DEVICE_TYPE_SET.count(deviceType) > in IsOutputDevice()
329 DeviceType deviceType; global() member
337 DeviceType deviceType; global() member
420 DeviceType deviceType = DEVICE_TYPE_INVALID; global() member in OHOS::AudioStandard::DeviceInfo
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/test/unittest/common/
H A Dsystem_info_tdd_test.cpp53 const char *deviceType = SystemInfo::GetInstance().GetDeviceType(); in HWTEST_F() local
54 EXPECT_NE(deviceType, nullptr); in HWTEST_F()
55 if (deviceType != nullptr) { in HWTEST_F()
56 EXPECT_EQ(strcmp(deviceType, "smartVision"), 0); in HWTEST_F()
125 const char *deviceType = SystemInfo::GetInstance().GetDeviceType(); in HWTEST_F() local
126 EXPECT_NE(deviceType, nullptr); in HWTEST_F()
127 if (deviceType != nullptr) { in HWTEST_F()
128 EXPECT_EQ(strcmp(deviceType, "smartVision"), 0); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/accessibility/js_inspector/
H A Dinspect_progress.cpp32 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
33 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
35 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
37 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_marquee.cpp32 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
33 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
35 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
37 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_divider.cpp30 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
31 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
33 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
35 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_label.cpp29 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
30 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
32 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
34 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_refresh.cpp28 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
29 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
31 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
38 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
H A Dinspect_swiper.cpp40 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
41 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
43 } else if (deviceType == DeviceType::TV || deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_button.cpp31 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
32 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
35 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
38 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_slider.cpp37 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
38 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
41 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
44 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_toggle.cpp29 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
30 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
33 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
36 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_text.cpp28 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
29 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
31 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
33 } else if (deviceType == DeviceType::WATCH) { in PackAttrAndStyle()
H A Dinspect_tab_bar.cpp30 DeviceType deviceType = SystemProperties::GetDeviceType(); in PackAttrAndStyle() local
31 if (deviceType == DeviceType::PHONE) { in PackAttrAndStyle()
33 } else if (deviceType == DeviceType::TV) { in PackAttrAndStyle()
/foundation/arkui/ace_engine/test/unittest/core/accessibility/
H A Djs_inspector_test.cpp90 DeviceType deviceType = SystemProperties::GetDeviceType(); in CheckToggleAttrAndStyle() local
94 if (deviceType == DeviceType::PHONE) { in CheckToggleAttrAndStyle()
98 } else if (deviceType == DeviceType::TV) { in CheckToggleAttrAndStyle()
102 } else if (deviceType == DeviceType::WATCH) { in CheckToggleAttrAndStyle()
133 DeviceType deviceType = SystemProperties::GetDeviceType(); in CheckTextAreaAttrAndStyle() local
138 if (deviceType == DeviceType::PHONE) { in CheckTextAreaAttrAndStyle()
143 } else if (deviceType == DeviceType::TV) { in CheckTextAreaAttrAndStyle()
160 DeviceType deviceType = SystemProperties::GetDeviceType(); in CheckTextAttrAndStyle() local
163 if (deviceType == DeviceType::PHONE) { in CheckTextAttrAndStyle()
166 } else if (deviceType in CheckTextAttrAndStyle()
192 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckTabBarAttrAndStyle() local
211 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckSwiperAttrAndStyle() local
243 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckSliderAttrAndStyle() local
277 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckRefreshAttrAndStyle() local
311 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckRatingAttrAndStyle() local
336 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckProgressAttrAndStyle() local
365 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckButtonAttrAndStyle() local
395 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckDividerAttrAndStyle() local
426 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckInputAttrAndStyle() local
455 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckLabelAttrAndStyle() local
487 DeviceType deviceType = SystemProperties::GetDeviceType(); CheckMarqueeAttrAndStyle() local
576 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
596 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
616 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
636 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
656 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
676 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
916 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
936 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
956 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
976 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
996 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1016 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1311 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1331 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1351 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1371 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1391 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1411 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1445 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1465 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1485 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1505 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1525 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1545 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1720 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1740 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1760 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1780 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1800 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
1820 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2317 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2337 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2357 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2377 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2397 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2417 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2490 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2510 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2530 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2550 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2570 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2590 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2624 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2644 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2664 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2684 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2704 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2724 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2834 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2854 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2874 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2894 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2914 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
2934 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3122 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3142 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3162 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3182 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3202 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3222 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3300 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3409 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3445 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
3481 DeviceType deviceType = SystemProperties::GetDeviceType(); HWTEST_F() local
[all...]
/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/manager/pnp_server/
H A Daudio_socket_thread.cpp38 .deviceType = AUDIO_DEVICE_UNKNOWN,
46 pnpDeviceEvent->deviceType == audioSocketEvent_.deviceType && in IsUpdatePnpDeviceState()
58 audioSocketEvent_.deviceType = pnpDeviceEvent->deviceType; in UpdatePnpDeviceState()
164 audioEvent->deviceType = h2wTypeLast; in SetAudioPnpUevent()
169 audioEvent->deviceType = PNP_DEVICE_HEADSET; in SetAudioPnpUevent()
173 audioEvent->deviceType = PNP_DEVICE_ADAPTER_DEVICE; in SetAudioPnpUevent()
177 audioEvent->deviceType = PNP_DEVICE_MIC; in SetAudioPnpUevent()
181 audioEvent->deviceType in SetAudioPnpUevent()
[all...]

Completed in 16 milliseconds

12345678910>>...19