/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/common/src/ |
H A D | lnn_node_info.c | 38 if (((uint32_t)info->discoveryType & (1 << (uint32_t)type)) != 0) { in LnnHasDiscoveryType() 78 info->discoveryType = (uint32_t)info->discoveryType | (1 << (uint32_t)type); in LnnSetDiscoveryType() 88 info->discoveryType = (uint32_t)info->discoveryType & ~(1 << (uint32_t)type); in LnnClearDiscoveryType()
|
/foundation/communication/dsoftbus/tests/core/discovery/coap/unittest/ |
H A D | disc_nstackx_adapter_test.cpp | 69 .discoveryType = NSTACKX_DISCOVERY_TYPE_ACTIVE, 360 g_testNstackxInfo.discoveryType = NSTACKX_DISCOVERY_TYPE_PASSIVE; in HWTEST_F() 369 g_testNstackxInfo.discoveryType = NSTACKX_DISCOVERY_TYPE_ACTIVE; in HWTEST_F() 518 * when given NSTACKX_DISCOVERY_TYPE_ACTIVE NSTACKX_DeviceInfo.discoveryType, 532 .discoveryType = NSTACKX_DISCOVERY_TYPE_ACTIVE, in HWTEST_F()
|
/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/distributed_ledger/src/ |
H A D | lnn_distributed_net_ledger.c | 199 newInfo->discoveryType = newInfo->discoveryType | oldInfo->discoveryType; in NewWifiDiscovered() 218 newInfo->discoveryType = newInfo->discoveryType | oldInfo->discoveryType; in NewBrBleDiscovered() 719 oldInfo->discoveryType = newInfo->discoveryType | oldInfo->discoveryType; in LnnUpdateNodeInfo() 1073 info->discoveryType | in GetNodeInfoDiscovery() [all...] |
H A D | lnn_distributed_net_ledger_manager.c | 445 *((int32_t *)buf) = (int32_t)info->discoveryType; in DlGetNetType()
|
/foundation/communication/dsoftbus/core/discovery/coap/nstackx_coap/src/ |
H A D | disc_coap_capability.c | 81 if (nstackxInfo->discoveryType == NSTACKX_DISCOVERY_TYPE_ACTIVE ||
in DiscCoapProcessDeviceInfo()
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/include/ |
H A D | nstackx_device.h | 131 uint8_t discoveryType; member
|
/foundation/communication/dsoftbus/tests/core/bus_center/test/heartbeat/ |
H A D | hb_medium_mgr_test.cpp | 210 .discoveryType = TEST_DISC_TYPE, in HWTEST_F() 297 NodeInfo nodeInfo = { .discoveryType = TEST_DISC_TYPE, .deviceInfo.deviceUdid = TEST_UDID_HASH, }; in HWTEST_F() 346 .discoveryType = TEST_DISC_TYPE, in HWTEST_F() 445 .discoveryType = TEST_DISC_TYPE, in HWTEST_F() 778 .discoveryType = TEST_DISC_TYPE, in HWTEST_F()
|
H A D | hb_fsm_test.cpp | 454 .discoveryType = TEST_DISC_TYPE, in HWTEST_F()
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/ |
H A D | nstackx_device.c | 292 notifyDevice->discoveryType = deviceInfo->discoveryType; in GetNotifyDeviceInfo()
|
H A D | nstackx_device_remote.c | 411 curInfo->discoveryType = newInfo->discoveryType; in UpdateDeviceInfo() 496 if (deviceInfo->discoveryType == NSTACKX_DISCOVERY_TYPE_PASSIVE) { in CheckAndUpdateRemoteNodeChangeState()
|
H A D | nstackx_dfinder_hidump.c | 232 DUMP_MSG_ADD_CHECK(ret, buf, index, size, "discoveryType:%hhu"CRLF, info->discoveryType); in DumpDeviceInfo()
|
/foundation/communication/dsoftbus/core/common/dfx/statistics/instant/ |
H A D | instant_statistics.cpp | 84 uint32_t discoveryType; 780 (void)AddNumber64ToJsonObject(json, "discoveryType", remoteInfo->discoveryType); 852 remoteInfo->discoveryType = nodeInfo.discoveryType;
|
/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/ |
H A D | lnn_net_builder_process.c | 360 msgPara->nodeInfo->discoveryType = 1 << (uint32_t)LnnConvAddrTypeToDiscType(msgPara->addr.type); in ProcessDeviceVerifyPass() 702 if (nodeInfo.discoveryType != 0) { in ProcessLeaveSpecific()
|
H A D | lnn_network_info.c | 133 if (info.discoveryType != capability) { in OnReceiveCapaSyncInfoMsg()
|
H A D | lnn_connection_fsm.c | 1149 nodeInfo->discoveryType = 1 << (uint32_t)LnnConvAddrTypeToDiscType(connInfo->addr.type); in LnnFillConnInfo() 1354 LNN_LOGI(LNN_BUILDER, "oldNodeInfo not have wifi, discoveryType=%{public}u", oldNodeInfo->discoveryType); in IsWifiConnectInfoChanged()
|
/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/common/include/ |
H A D | lnn_node_info.h | 146 uint32_t discoveryType; member
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/interface/ |
H A D | nstackx.h | 97 uint8_t discoveryType; member
|
/foundation/communication/dsoftbus/core/authentication/src/ |
H A D | auth_session_json.c | 1648 uint32_t discoveryType = 0; in AddDiscoveryType() local 1649 if (LnnGetRemoteNumInfo(networkId, NUM_KEY_DISCOVERY_TYPE, (int32_t *)&discoveryType) != SOFTBUS_OK) { in AddDiscoveryType() 1650 AUTH_LOGE(AUTH_FSM, "get discoveryType fail"); in AddDiscoveryType() 1655 nodeInfo.discoveryType = discoveryType; in AddDiscoveryType() 1710 (void)SetDiscType(&info->discoveryType, discTypeStr); in UnpackBt()
|
/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/src/ |
H A D | lnn_network_info_test.cpp | 162 NodeInfo info = { .discoveryType = DISCOVERY_TYPE, }; in HWTEST_F()
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/mini_discover/ |
H A D | coap_discover.c | 78 deviceInfo->discoveryType = (*remoteUrl != NULL) ? NSTACKX_DISCOVERY_TYPE_PASSIVE : NSTACKX_DISCOVERY_TYPE_ACTIVE; in HndPostServiceDiscoverInner()
|
/foundation/communication/dsoftbus/tests/core/authentication/unittest/ |
H A D | auth_session_message_test.cpp | 460 info.discoveryType = 11; in HWTEST_F() 462 info.discoveryType = 15; in HWTEST_F()
|
/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_ledger/ |
H A D | lnn_disctributed_net_ledger_test.cpp | 93 info.discoveryType = DISCOVERY_TYPE; in SetUp() 119 info.discoveryType = DISCOVERY_TYPE; in HWTEST_F()
|
/foundation/communication/dsoftbus/core/bus_center/lnn/net_ledger/local_ledger/src/ |
H A D | lnn_local_net_ledger.c | 687 *((int32_t *)buf) = (int32_t)info->discoveryType; in LlGetNetType() 2246 nodeInfo->discoveryType = 0; in LnnInitLocalLedger()
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_ctrl/core/coap_discover/ |
H A D | coap_discover.c | 258 deviceInfo->discoveryType = (*remoteUrl != NULL) ? NSTACKX_DISCOVERY_TYPE_PASSIVE : NSTACKX_DISCOVERY_TYPE_ACTIVE; in HndPostServiceDiscoverInner()
|
/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/heartbeat/src/ |
H A D | lnn_heartbeat_medium_mgr.c | 1183 "deviceTypeStr=%{public}s, masterWeight=%{public}d, discoveryType=%{public}d, " in LnnDumpHbOnlineNodeList() 1186 deviceTypeStr != NULL ? deviceTypeStr : "", nodeInfo.masterWeight, nodeInfo.discoveryType, oldTimestamp); in LnnDumpHbOnlineNodeList()
|