Home
last modified time | relevance | path

Searched refs:LnnGetNodeKeyInfo (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/common/src/
H A Dlnn_net_ledger.c308 int32_t LnnGetNodeKeyInfo(const char *networkId, int key, uint8_t *info, uint32_t infoLen) in LnnGetNodeKeyInfo() function
520 if (LnnGetNodeKeyInfo(nodeInfo->networkId, key, udid, UDID_BUF_LEN) != SOFTBUS_OK) { in SoftbusDumpPrintUdid()
537 if (LnnGetNodeKeyInfo(nodeInfo->networkId, key, uuid, UUID_BUF_LEN) != SOFTBUS_OK) { in SoftbusDumpPrintUuid()
555 if (LnnGetNodeKeyInfo(nodeInfo->networkId, key, brMac, BT_MAC_LEN) != SOFTBUS_OK) { in SoftbusDumpPrintMac()
571 …if (LnnGetNodeKeyInfo(nodeInfo->networkId, key, (uint8_t *)ipAddr, IP_STR_MAX_LEN) != SOFTBUS_OK) { in SoftbusDumpPrintIp()
585 …if (LnnGetNodeKeyInfo(nodeInfo->networkId, key, (uint8_t *)&netCapacity, sizeof(netCapacity)) != S… in SoftbusDumpPrintNetCapacity()
598 …if (LnnGetNodeKeyInfo(nodeInfo->networkId, key, (uint8_t *)&netType, sizeof(netType)) != SOFTBUS_O… in SoftbusDumpPrintNetType()
615 …if (LnnGetNodeKeyInfo(nodeInfo->networkId, key, (uint8_t *)&securityLevel, sizeof(securityLevel)) … in SoftbusDumpPrintDeviceLevel()
630 … if (LnnGetNodeKeyInfo(nodeInfo->networkId, NODE_KEY_DEVICE_SCREEN_STATUS, (uint8_t *)&isScreenOn, in SoftbusDumpPrintScreenStatus()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_ledger/
H A Dlnn_ledger_common_test.cpp224 EXPECT_TRUE(LnnGetNodeKeyInfo(nullptr, 0, info, BUF_LEN) == SOFTBUS_INVALID_PARAM);
225 EXPECT_TRUE(LnnGetNodeKeyInfo(LOCAL_NETWORKID, 0, info, BUF_LEN) == SOFTBUS_OK);
226 EXPECT_TRUE(LnnGetNodeKeyInfo(LOCAL_NETWORKID, KEY_MAX_INDEX - 1, info, BUF_LEN) == SOFTBUS_OK);
228 EXPECT_TRUE(LnnGetNodeKeyInfo(LOCAL_NETWORKID, i, info, BUF_LEN) == SOFTBUS_OK);
231 LnnGetNodeKeyInfo(REMOTE_NETWORKID, i, info, BUF_LEN);
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/test/mock/include/
H A Dbus_center_ipc_mock.h37 …virtual int32_t LnnGetNodeKeyInfo(const char *networkId, int key, uint8_t *info, uint32_t infoLen)…
76 MOCK_METHOD4(LnnGetNodeKeyInfo, int32_t(const char *, int, uint8_t *, uint32_t));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/test/mock/src/
H A Dbus_center_ipc_mock.cpp65 int32_t LnnGetNodeKeyInfo(const char *networkId, int key, uint8_t *info, uint32_t infoLen) in LnnGetNodeKeyInfo() function
67 return BusCenterIpcInterfaceInstance()->LnnGetNodeKeyInfo(networkId, key, info, infoLen); in LnnGetNodeKeyInfo()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/include/
H A Dlnn_net_ledger_mock.h83 …virtual int32_t LnnGetNodeKeyInfo(const char *networkId, int key, uint8_t *info, uint32_t infoLen)…
168 MOCK_METHOD4(LnnGetNodeKeyInfo, int32_t(const char *, int, uint8_t *, uint32_t));
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/interface/
H A Dbus_center_manager.h78 int32_t LnnGetNodeKeyInfo(const char *networkId, int key, uint8_t *info, uint32_t infoLen);
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/ipc/mini/
H A Dlnn_bus_center_ipc.c88 return LnnGetNodeKeyInfo(networkId, key, buf, len); in LnnIpcGetNodeKeyInfo()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/src/
H A Dlnn_net_ledger_mock.cpp471 int32_t LnnGetNodeKeyInfo(const char *networkId, int key, uint8_t *info, uint32_t infoLen) in LnnGetNodeKeyInfo() function
473 return GetNetLedgerInterface()->LnnGetNodeKeyInfo(networkId, key, info, infoLen); in LnnGetNodeKeyInfo()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/ipc/small/src/
H A Dlnn_bus_center_ipc.c301 return LnnGetNodeKeyInfo(networkId, key, buf, len); in LnnIpcGetNodeKeyInfo()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/ipc/standard/src/
H A Dlnn_bus_center_ipc.cpp245 return LnnGetNodeKeyInfo(networkId, key, buf, len); in LnnIpcGetNodeKeyInfo()
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/
H A Dlnn_sync_info_manager.c668 …if (LnnGetNodeKeyInfo(networkId, NODE_KEY_BLE_OFFLINE_CODE, remoteOfflineCode, WIFI_OFFLINE_CODE_L… in CheckWifiOfflineMsgResult()