Home
last modified time | relevance | path

Searched refs:infoNode (Results 1 - 5 of 5) sorted by relevance

/foundation/communication/dsoftbus/core/discovery/manager/src/
H A Ddisc_manager.c95 #define DFX_RECORD_DISC_CALL_START(infoNode, packageName, interfaceType) \
99 BuildDiscCallEvent(&extra, infoNode, packageName, interfaceType); \
145 static void DfxRecordStartDiscoveryDevice(DiscInfo *infoNode) in DfxRecordStartDiscoveryDevice() argument
147 infoNode->statistics.startTime = SoftBusGetSysTimeMs(); in DfxRecordStartDiscoveryDevice()
148 infoNode->statistics.repTimes = 0; in DfxRecordStartDiscoveryDevice()
149 infoNode->statistics.devNum = 0; in DfxRecordStartDiscoveryDevice()
150 infoNode->statistics.discTimes = 0; in DfxRecordStartDiscoveryDevice()
160 DiscInfo *infoNode = NULL; in UpdateDdmpStartDiscoveryTime() local
161 LIST_FOR_EACH_ENTRY(infoNode, &(g_capabilityList[DDMP_CAPABILITY_BITMAP]), DiscInfo, capNode) { in UpdateDdmpStartDiscoveryTime()
162 if (infoNode in UpdateDdmpStartDiscoveryTime()
169 DfxRecordDeviceFound(DiscInfo *infoNode, const DeviceInfo *device, const InnerDeviceInfoAddtions *additions) DfxRecordDeviceFound() argument
192 DfxRecordStopDiscoveryDevice(const char *packageName, DiscInfo *infoNode) DfxRecordStopDiscoveryDevice() argument
247 DfxCallInterfaceByMedium( const DiscInfo *infoNode, const char *packageName, const InterfaceFuncType type, int32_t reason) DfxCallInterfaceByMedium() argument
343 IsInnerModule(const DiscInfo *infoNode) IsInnerModule() argument
356 InnerDeviceFound(DiscInfo *infoNode, const DeviceInfo *device, const InnerDeviceInfoAddtions *additions) InnerDeviceFound() argument
388 DiscInfo *infoNode = NULL; DiscOnDeviceFound() local
519 DiscInfo *infoNode = (DiscInfo *)SoftBusCalloc(sizeof(DiscInfo)); CreateDiscInfoForPublish() local
561 DiscInfo *infoNode = (DiscInfo *)SoftBusCalloc(sizeof(DiscInfo)); CreateDiscInfoForSubscribe() local
607 DiscInfo *infoNode = NULL; DumpDiscInfoList() local
644 DiscInfo *infoNode = NULL; AddDiscInfoToList() local
699 DiscInfo *infoNode = NULL; RemoveInfoFromList() local
782 DiscInfo *infoNode = NULL; InnerUnPublishService() local
842 DiscInfo *infoNode = NULL; InnerStopDiscovery() local
921 DiscInfo *infoNode = CreateDiscInfoForPublish(info); DiscPublish() local
943 DiscInfo *infoNode = CreateDiscInfoForPublish(info); DiscStartScan() local
975 DiscInfo *infoNode = CreateDiscInfoForSubscribe(info); DiscStartAdvertise() local
997 DiscInfo *infoNode = CreateDiscInfoForSubscribe(info); DiscSubscribe() local
1029 DiscInfo *infoNode = CreateDiscInfoForPublish(info); DiscPublishService() local
1062 DiscInfo *infoNode = CreateDiscInfoForSubscribe(info); DiscStartDiscovery() local
1178 DiscInfo *infoNode = NULL; RemoveDiscInfoByPackageName() local
[all...]
/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_model.c74 LaneIdInfo *infoNode = NULL; in AddLaneIdNode() local
75 LIST_FOR_EACH_ENTRY(infoNode, &laneModel->laneIdList, LaneIdInfo, node) { in AddLaneIdNode()
76 if (infoNode->laneId == laneId) { in AddLaneIdNode()
226 LaneIdInfo *infoNode = NULL; in GetLaneIdList() local
227 LIST_FOR_EACH_ENTRY(infoNode, &laneModel->laneIdList, LaneIdInfo, node) { in GetLaneIdList()
228 (*laneIdList)[cnt] = infoNode->laneId; in GetLaneIdList()
271 LaneIdInfo *infoNode = NULL; in ClearProfileMap() local
273 LIST_FOR_EACH_ENTRY_SAFE(infoNode, nextNode, &laneModel->laneIdList, LaneIdInfo, node) { in ClearProfileMap()
274 ListDelete(&infoNode->node); in ClearProfileMap()
275 SoftBusFree(infoNode); in ClearProfileMap()
[all...]
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/tcp_direct/
H A Dtrans_session_test.cpp324 SessionServerInfo *infoNode = NULL; in HWTEST_F() local
326 LIST_FOR_EACH_ENTRY_SAFE(infoNode, infoNodeNext, &(sessionServerList), SessionServerInfo, node) { in HWTEST_F()
327 ListDelete(&infoNode->node); in HWTEST_F()
328 SoftBusFree(infoNode); in HWTEST_F()
354 infoNode = NULL; in HWTEST_F()
356 LIST_FOR_EACH_ENTRY_SAFE(infoNode, infoNodeNext, &(sessionServerList), SessionServerInfo, node) { in HWTEST_F()
357 ListDelete(&infoNode->node); in HWTEST_F()
358 SoftBusFree(infoNode); in HWTEST_F()
/foundation/communication/dsoftbus/sdk/transmission/session/src/
H A Dclient_trans_socket_manager.c382 SessionServerInfo *infoNode = (SessionServerInfo *)SoftBusCalloc(sizeof(SessionServerInfo)); in CreateSessionServerInfoNode() local
383 if (infoNode == NULL) { in CreateSessionServerInfoNode()
388 if (strcpy_s(infoNode->pkgName, SESSION_NAME_SIZE_MAX, clientSessionServer->pkgName) != EOK) { in CreateSessionServerInfoNode()
389 SoftBusFree(infoNode); in CreateSessionServerInfoNode()
394 if (strcpy_s(infoNode->sessionName, SESSION_NAME_SIZE_MAX, clientSessionServer->sessionName) != EOK) { in CreateSessionServerInfoNode()
395 SoftBusFree(infoNode); in CreateSessionServerInfoNode()
400 return infoNode; in CreateSessionServerInfoNode()
748 SessionServerInfo *infoNode = NULL; in ReCreateSessionServerToServer() local
751 LIST_FOR_EACH_ENTRY_SAFE(infoNode, infoNodeNext, sessionServerInfoList, SessionServerInfo, node) { in ReCreateSessionServerToServer()
752 int32_t ret = ServerIpcCreateSessionServer(infoNode in ReCreateSessionServerToServer()
[all...]
/foundation/communication/dsoftbus/tests/sdk/transmission/session/
H A Dclient_trans_session_manager_test.cpp903 SessionServerInfo *infoNode = NULL; in HWTEST_F() local
905 LIST_FOR_EACH_ENTRY_SAFE(infoNode, infoNodeNext, &(sessionServerList), SessionServerInfo, node) { in HWTEST_F()
906 ListDelete(&infoNode->node); in HWTEST_F()
907 SoftBusFree(infoNode); in HWTEST_F()
949 SessionServerInfo *infoNode = NULL; in HWTEST_F() local
951 LIST_FOR_EACH_ENTRY_SAFE(infoNode, infoNodeNext, &(sessionServerList), SessionServerInfo, node) { in HWTEST_F()
952 ListDelete(&infoNode->node); in HWTEST_F()
953 SoftBusFree(infoNode); in HWTEST_F()
967 infoNode = NULL; in HWTEST_F()
969 LIST_FOR_EACH_ENTRY_SAFE(infoNode, infoNodeNex in HWTEST_F()
1381 SessionServerInfo *infoNode = NULL; HWTEST_F() local
[all...]

Completed in 7 milliseconds