Home
last modified time | relevance | path

Searched refs:LaneType (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/include/
H A Dlnn_lane_interface.h164 } LaneType; typedef
217 LaneType type;
224 LaneType type;
247 LaneType type;
262 LaneType type;
269 uint32_t (*lnnGetLaneHandle)(LaneType type);
279 int32_t (*registerLaneListener)(LaneType type, const LaneStatusListener *listener);
280 int32_t (*unRegisterLaneListener)(LaneType type);
286 uint32_t ApplyLaneReqId(LaneType type);
H A Dlnn_lane_listener.h27 int32_t UnRegisterLaneListener(LaneType type);
28 int32_t RegisterLaneListener(LaneType type, const LaneStatusListener *listener);
29 int32_t AddLaneBusinessInfoItem(LaneType laneType, uint64_t laneId);
30 int32_t DelLaneBusinessInfoItem(LaneType laneType, uint64_t laneId);
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/lane_hub/lane_manager/src/
H A Dlnn_lane_listener.c33 const static LaneType SUPPORT_TYPE_LIST[] = {LANE_TYPE_HDLC, LANE_TYPE_TRANS, LANE_TYPE_CTRL};
37 LaneType laneType;
45 LaneType type;
62 static bool LaneTypeCheck(LaneType type) in LaneTypeCheck()
64 uint32_t size = sizeof(SUPPORT_TYPE_LIST) / sizeof(LaneType); in LaneTypeCheck()
116 int32_t AddLaneBusinessInfoItem(LaneType laneType, uint64_t laneId) in AddLaneBusinessInfoItem()
159 int32_t DelLaneBusinessInfoItem(LaneType laneType, uint64_t laneId) in DelLaneBusinessInfoItem()
228 static LaneListenerInfo *LaneListenerIsExist(LaneType type) in LaneListenerIsExist()
240 static int32_t FindLaneListenerInfoByLaneType(LaneType type, LaneListenerInfo *laneListenerInfo) in FindLaneListenerInfoByLaneType()
427 int32_t RegisterLaneListener(LaneType type, const LaneStatusListener *listener) in RegisterLaneListener()
[all …]
H A Dlnn_lane.c92 static uint32_t AllocLaneReqId(LaneType type) in AllocLaneReqId()
295 uint32_t ApplyLaneReqId(LaneType type) in ApplyLaneReqId()
399 static int32_t CheckLaneObject(uint32_t laneReqId, LaneType *type) in CheckLaneObject()
414 LaneType type; in LnnCancelLane()
430 LaneType type; in LnnFreeLink()
491 LaneType type; in LnnFreeLane()
H A Dlnn_trans_lane.c765 static int32_t ParseLaneTypeByLaneReqId(uint32_t laneReqId, LaneType *laneType) in ParseLaneTypeByLaneReqId()
771 *laneType = (LaneType)(laneReqId >> LANE_REQ_ID_TYPE_SHIFT); in ParseLaneTypeByLaneReqId()
914 static int32_t FreeLink(uint32_t laneReqId, uint64_t laneId, LaneType type) in FreeLink()
934 LaneType type = (LaneType)(laneReqId >> LANE_REQ_ID_TYPE_SHIFT); in Free()
1006 LaneType laneType; in NotifyLaneAllocSuccess()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane/trans_lane/
H A Dlnn_trans_lane_deps_mock.h48 virtual int32_t AddLaneBusinessInfoItem(LaneType laneType, uint64_t laneId) = 0;
49 virtual int32_t DelLaneBusinessInfoItem(LaneType laneType, uint64_t laneId) = 0;
75 MOCK_METHOD2(AddLaneBusinessInfoItem, int32_t (LaneType laneType, uint64_t laneId));
76 MOCK_METHOD2(DelLaneBusinessInfoItem, int32_t (LaneType laneType, uint64_t laneId));
H A Dlnn_trans_lane_deps_mock.cpp119 int32_t AddLaneBusinessInfoItem(LaneType laneType, uint64_t laneId) in AddLaneBusinessInfoItem()
124 int32_t DelLaneBusinessInfoItem(LaneType laneType, uint64_t laneId) in DelLaneBusinessInfoItem()
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane/src/
H A Dlnn_lane_test.cpp400 LaneType laneType = LANE_TYPE_TRANS;
434 LaneType laneType = LANE_TYPE_TRANS;
471 LaneType laneType = LANE_TYPE_TRANS;
502 LaneType laneType = LANE_TYPE_TRANS;
533 LaneType laneType = LANE_TYPE_TRANS;
563 LaneType laneType = LANE_TYPE_TRANS;
593 LaneType laneType = LANE_TYPE_TRANS;
786 allocInfo.type = (LaneType)-1;
1120 LaneType laneType = LANE_TYPE_BUTT;
2955 request.type = (LaneType)-1;
[all …]
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/common/mock/include/
H A Dtrans_auth_mock.h85 virtual uint32_t ApplyLaneReqId(LaneType type) = 0;
145 MOCK_METHOD1(ApplyLaneReqId, uint32_t (LaneType));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/lane_listener/
H A Dlnn_lane_listener_test.cpp184 LaneType type = LANE_TYPE_BUTT;
204 LaneType type = LANE_TYPE_TRANS;
607 LaneType type = LANE_TYPE_TRANS;
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/unittest/
H A Dlane_test.cpp215 LaneType laneType = LANE_TYPE_TRANS;
230 LaneType laneType = LANE_TYPE_TRANS;
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/common/mock/src/
H A Dtrans_auth_mock.cpp232 uint32_t ApplyLaneReqId(LaneType type) in ApplyLaneReqId()
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/common/
H A Dtrans_lane_pending_test.cpp153 static uint32_t TestApplyLaneReqId(LaneType type) in TestApplyLaneReqId()