Searched refs:oldLaneId (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/unittest/ |
H A D | lane_test.cpp | 473 uint64_t oldLaneId = LANE_ID; variable 477 EXPECT_EQ(UpdateLaneResourceLaneId(oldLaneId, newLaneId, peerUdid), SOFTBUS_NOT_FIND); 478 EXPECT_EQ(UpdateLaneResourceLaneId(oldLaneId, newLaneId, peerUdid1), SOFTBUS_NOT_FIND); 480 … EXPECT_EQ(UpdateLaneResourceLaneId(oldLaneId, INVALID_LANE_ID, peerUdid1), SOFTBUS_INVALID_PARAM); 481 EXPECT_EQ(UpdateLaneResourceLaneId(oldLaneId, INVALID_LANE_ID, nullptr), SOFTBUS_INVALID_PARAM);
|
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/include/ |
H A D | lnn_lane_listener.h | 35 int32_t UpdateLaneBusinessInfoItem(uint64_t oldLaneId, uint64_t newLaneId);
|
H A D | lnn_trans_lane.h | 56 int32_t UpdateReqListLaneId(uint64_t oldLaneId, uint64_t newLaneId);
|
H A D | lnn_lane_link.h | 141 int32_t UpdateLaneResourceLaneId(uint64_t oldLaneId, uint64_t newLaneId, const char *peerUdid);
|
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/ |
H A D | lnn_lane_listener.c | 91 int32_t UpdateLaneBusinessInfoItem(uint64_t oldLaneId, uint64_t newLaneId) in UpdateLaneBusinessInfoItem() argument 93 if (oldLaneId == INVALID_LANE_ID || newLaneId == INVALID_LANE_ID) { in UpdateLaneBusinessInfoItem() 99 laneBusinessInfo.laneId = oldLaneId; in UpdateLaneBusinessInfoItem() 108 …NN_LANE, "update oldLaneId=%{public}" PRIu64 ", newLaneId=%{public}" PRIu64, oldLaneId, newLaneId); in UpdateLaneBusinessInfoItem()
|
H A D | lnn_lane_link.c | 716 int32_t UpdateLaneResourceLaneId(uint64_t oldLaneId, uint64_t newLaneId, const char *peerUdid) in UpdateLaneResourceLaneId() argument 718 if (oldLaneId == INVALID_LANE_ID || newLaneId == INVALID_LANE_ID || peerUdid == NULL) { in UpdateLaneResourceLaneId() 729 if (item->laneId == oldLaneId) { in UpdateLaneResourceLaneId() 737 oldLaneId, newLaneId); in UpdateLaneResourceLaneId() 743 LNN_LOGE(LNN_LANE, "no found lane resource by laneId=%{public}" PRIu64 "", oldLaneId); in UpdateLaneResourceLaneId()
|
H A D | lnn_trans_lane.c | 854 int32_t UpdateReqListLaneId(uint64_t oldLaneId, uint64_t newLaneId) in UpdateReqListLaneId() argument 862 if (item->laneId == oldLaneId) { in UpdateReqListLaneId() 865 newLaneId, oldLaneId); in UpdateReqListLaneId()
|