Home
last modified time | relevance | path

Searched refs:targetDeviceName (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/distributedhardware/device_manager/display/entry/src/main/ets/UIExtAbility/
H A DInputUIExtAbility.ets24 if (want.parameters && want.parameters.targetDeviceName) {
25 AppStorage.setOrCreate('targetDeviceName', want.parameters.targetDeviceName);
/ohos5.0/foundation/distributedhardware/device_manager/display/entry/src/main/ets/pages/
H A DInputPinDialog.ets40 @State targetDeviceName: string = '';
69 if (AppStorage.get('targetDeviceName') != null) {
70 this.targetDeviceName = AppStorage.get('targetDeviceName') as string;
71 console.log('targetDeviceName is ' + this.targetDeviceName);
194 Text($r('app.string.dm_connect', this.targetDeviceName))
/ohos5.0/foundation/distributedhardware/device_manager/services/implementation/src/authentication/
H A Dauth_message_processor.cpp218 json[TAG_TARGET_DEVICE_NAME] = authResponseContext_->targetDeviceName; in CreateRespNegotiateMessage()
578 authResponseContext_->targetDeviceName = json[TAG_TARGET_DEVICE_NAME].get<std::string>(); in ParseRespNegotiateMessage()
H A Ddm_auth_manager.cpp785 authResponseContext_->targetDeviceName = softbusConnector_->GetLocalDeviceName(); in RespNegotiate()
1482 DmDialogManager::GetInstance().ShowInputDialog(authResponseContext_->targetDeviceName); in ShowStartAuthDialog()
/ohos5.0/foundation/distributedhardware/device_manager/services/implementation/include/authentication/
H A Ddm_auth_manager.h181 std::string targetDeviceName; member