Home
last modified time | relevance | path

Searched refs:LnnSetDLDeviceInfoName (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/include/
H A Dlnn_net_ledger_mock.h58 virtual bool LnnSetDLDeviceInfoName(const char *udid, const char *name) = 0;
140 MOCK_METHOD2(LnnSetDLDeviceInfoName, bool (const char *, const char *));
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/distributed_ledger/include/
H A Dlnn_distributed_net_ledger.h59 bool LnnSetDLDeviceInfoName(const char *udid, const char *name);
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/
H A Dlnn_devicename_info.c134 if (!LnnSetDLDeviceInfoName(udid, deviceName)) { in OnReceiveDeviceName()
235 (void)LnnSetDLDeviceInfoName(peerNodeInfo.deviceInfo.deviceUdid, displayName); in NickNameMsgProc()
H A Dlnn_sync_item_info.c152 if (!LnnSetDLDeviceInfoName(udid, (char *)msg)) { in OnReceiveTransReqMsg()
H A Dlnn_data_cloud_sync.c464 if (!LnnSetDLDeviceInfoName(deviceUdid, cacheInfo->deviceInfo.deviceName)) { in SetDBNameDataToDLedger()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/src/
H A Dlnn_net_ledger_mock.cpp577 bool LnnSetDLDeviceInfoName(const char *udid, const char *name) in LnnSetDLDeviceInfoName() function
579 return GetNetLedgerInterface()->LnnSetDLDeviceInfoName(udid, name); in LnnSetDLDeviceInfoName()
H A Dlnn_sync_item_info_test.cpp180 EXPECT_CALL(LedgerMock, LnnSetDLDeviceInfoName).WillOnce(Return(SOFTBUS_ERR))
H A Dlnn_devicename_info_test.cpp116 EXPECT_CALL(ledgerMock, LnnSetDLDeviceInfoName).WillOnce(Return(false))
H A Dlnn_data_cloud_sync_mock_test.cpp384 EXPECT_CALL(NetLedgerMock, LnnSetDLDeviceInfoName).WillOnce(Return(SOFTBUS_ERR))
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_ledger/
H A Dlnn_disctributed_net_ledger_test.cpp523 bool ret = LnnSetDLDeviceInfoName(nullptr, nullptr);
525 ret = LnnSetDLDeviceInfoName(NODE1_UDID, NODE1_DEVICE_NAME);
527 ret = LnnSetDLDeviceInfoName(NODE2_UDID, NODE2_DEVICE_NAME);
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/unittest/
H A Dledger_lane_hub_test.cpp427 bool result = LnnSetDLDeviceInfoName(NODE2_UDID, CHANGE_DEVICE_NAME);
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/distributed_ledger/src/
H A Dlnn_distributed_net_ledger_manager.c804 bool LnnSetDLDeviceInfoName(const char *udid, const char *name) in LnnSetDLDeviceInfoName() function