Home
last modified time | relevance | path

Searched refs:routeType (Results 1 - 25 of 74) sorted by relevance

123

/foundation/communication/dsoftbus/core/adapter/transmission/src/
H A Ddata_bus_native_virtual.c24 int NotifyNearByOnMigrateEvents(const char *peerDeviceId, int routeType, bool isUpgrade) in NotifyNearByOnMigrateEvents() argument
27 (void)routeType; in NotifyNearByOnMigrateEvents()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_page_transition_function.cpp23 void JsPageTransitionFunction::Execute(RouteType routeType, float progress) in Execute() argument
26 params[0] = JSRef<JSVal>::Make(ToJSValue(static_cast<int32_t>(routeType))); in Execute()
H A Djs_page_transition_function.h36 void Execute(RouteType routeType, float progress);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/stage/
H A Dpage_transition_effect.h132 return type_ == PageTransitionType::ENTER && animationOption_.routeType != RouteType::POP; in CanFit()
134 return type_ == PageTransitionType::ENTER && animationOption_.routeType != RouteType::PUSH; in CanFit()
136 return type_ == PageTransitionType::EXIT && animationOption_.routeType != RouteType::POP; in CanFit()
138 return type_ == PageTransitionType::EXIT && animationOption_.routeType != RouteType::PUSH; in CanFit()
H A Dpage_pattern.cpp108 RouteType routeType = (type == PageTransitionType::ENTER_POP || type == PageTransitionType::EXIT_POP) in TriggerPageTransition() local
112 [routeType, handler = effect->GetUserCallback()](const float& progress) { handler(routeType, progress); }); in TriggerPageTransition()
114 handler(routeType, 0.0f); in TriggerPageTransition()
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/clienttranschannelcallback_fuzzer/
H A Dclienttranschannelcallback_fuzzer.cpp82 int32_t routeType = *(reinterpret_cast<const int32_t *>(data)); in ClientTransChannelCallbackTest() local
96 TransOnChannelLinkDown(networkId, routeType); in ClientTransChannelCallbackTest()
/foundation/communication/dsoftbus/core/transmission/ipc/mini/
H A Dtrans_client_proxy.c40 int32_t ClientIpcOnChannelLinkDown(ChannelMsg *data, const char *networkId, const char *peerIp, int32_t routeType) in ClientIpcOnChannelLinkDown() argument
44 return TransOnChannelLinkDown(networkId, routeType); in ClientIpcOnChannelLinkDown()
/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/src/
H A Dtrans_link_listener.c32 #define COMBINE_TYPE(routeType, connType) ((routeType) | ((uint8_t)(connType) << 8))
/foundation/communication/dsoftbus/core/adapter/transmission/include/
H A Ddata_bus_native.h29 int NotifyNearByOnMigrateEvents(const char *peerDeviceId, int routeType, bool isUpgrade);
/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/manager/trans_channel_callback_test/
H A Dtrans_channel_callback_test.cpp183 int32_t routeType = 123124; in HWTEST_F() local
189 .routeType = routeType in HWTEST_F()
/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/src/
H A Dtrans_tcp_direct_manager.c260 appInfo->routeType = connInfo->type == CONNECT_TCP ? WIFI_STA : WIFI_P2P; in TransUpdateAppInfo()
292 appInfo->routeType = WIFI_P2P; in TransOpenDirectChannel()
295 appInfo->routeType = WIFI_P2P_REUSE; in TransOpenDirectChannel()
299 appInfo->routeType = WIFI_STA; in TransOpenDirectChannel()
/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dpage_transition_common.h52 RouteType routeType = RouteType::NONE; member
/foundation/communication/dsoftbus/core/transmission/session/include/
H A Dtrans_session_manager.h51 const char *peerIp, int32_t routeType);
/foundation/communication/dsoftbus/sdk/transmission/session/src/
H A Dclient_trans_socket_manager.c290 static bool ClientTransCheckNeedDel(SessionInfo *sessionNode, int32_t routeType, int32_t connType) in ClientTransCheckNeedDel() argument
293 if (routeType != ROUTE_TYPE_ALL && sessionNode->routeType != routeType) { in ClientTransCheckNeedDel()
300 * and routeType is WIFI_P2P, the connType is hml or p2p in ClientTransCheckNeedDel()
302 if (sessionNode->routeType != routeType) { in ClientTransCheckNeedDel()
342 // connType is set only in function OnWifiDirectDeviceOffLine, others is TRANS_CONN_ALL, and routeType is WIFI_P2P in DestroyClientSessionByNetworkId()
343 int32_t routeType = (int32_t)GET_ROUTE_TYPE(type); in DestroyClientSessionByNetworkId() local
351 if (!ClientTransCheckNeedDel(sessionNode, routeType, connTyp in DestroyClientSessionByNetworkId()
[all...]
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/manager/include/
H A Dclient_trans_channel_callback.h30 int32_t TransOnChannelLinkDown(const char *networkId, int32_t routeType);
/foundation/arkui/ace_engine/frameworks/core/components/page_transition/
H A Dpage_transition_info.h66 void SetRouteType(RouteType routeType) in SetRouteType() argument
68 routeType_ = routeType; in SetRouteType()
/foundation/communication/dsoftbus/core/transmission/trans_channel/auth/src/
H A Dtrans_auth_message.c48 !AddNumberToJsonObject(msg, "ROUTE_TYPE", (int32_t)appInfo->routeType)) { in TransAuthChannelMsgPack()
95 if (!GetJsonObjectInt32Item(obj, "ROUTE_TYPE", (int32_t *)&(appInfo->routeType))) { in TransAuthChannelMsgUnpack()
96 TRANS_LOGW(TRANS_SVC, "routeType is null."); in TransAuthChannelMsgUnpack()
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/clienttranssessionmanager_fuzzer/
H A Dclienttranssessionmanager_fuzzer.cpp115 int32_t routeType = *(reinterpret_cast<const int32_t*>(data)); in ClientTransOnLinkDownTest() local
117 ClientTransOnLinkDown(netWorkId, routeType); in ClientTransOnLinkDownTest()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/manager/src/
H A Dclient_trans_channel_callback.c87 int32_t TransOnChannelLinkDown(const char *networkId, int32_t routeType) in TransOnChannelLinkDown() argument
94 ClientTransOnLinkDown(networkId, routeType); in TransOnChannelLinkDown()
/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/include/
H A Dtrans_channel_callback.h50 int32_t routeType; member
/foundation/communication/dsoftbus/core/transmission/ipc/include/
H A Dtrans_client_proxy.h40 int32_t ClientIpcOnChannelLinkDown(ChannelMsg *data, const char *networkId, const char *peerIp, int32_t routeType);
/foundation/communication/dsoftbus/sdk/transmission/session/include/
H A Dclient_trans_session_manager.h91 int32_t routeType; member
191 int32_t ClientGetRouteTypeByChannelId(int32_t channelId, int32_t channelType, int32_t *routeType);
213 void ClientTransOnLinkDown(const char *networkId, int32_t routeType);
/foundation/communication/dsoftbus/tests/core/transmission/ipc/
H A Dtrans_client_proxy_test.cpp125 channel.routeType = TEST_DATA_TYPE; in HWTEST_F()
362 int32_t routeType = TEST_REMOTE_TYPE; in HWTEST_F() local
363 int32_t ret = ClientIpcOnChannelLinkDown(nullptr, nullptr, peerIp, routeType); in HWTEST_F()
369 ret = ClientIpcOnChannelLinkDown(data, networkId, peerIp, routeType); in HWTEST_F()
/foundation/communication/dsoftbus/core/transmission/session/src/
H A Dtrans_session_manager.c391 int32_t routeType = (int32_t)GET_ROUTE_TYPE(type); in TransOnLinkDown() local
396 "routeType=%{public}d, networkId=%{public}s connType=%{public}d", routeType, in TransOnLinkDown()
415 .routeType = type in TransOnLinkDown()
422 if (routeType == WIFI_P2P) { in TransOnLinkDown()
/foundation/communication/dsoftbus/core/transmission/common/src/
H A Dsoftbus_message_open_channel.c116 !AddNumberToJsonObject(json, MSG_ROUTE_TYPE, appInfo->routeType))) { in JsonObjectPackRequestEx()
278 int32_t routeType = WIFI_STA; in UnpackRequest() local
279 if (GetJsonObjectNumberItem(msg, MSG_ROUTE_TYPE, &routeType) != SOFTBUS_OK) { in UnpackRequest()
282 appInfo->routeType = (RouteType)routeType; in UnpackRequest()

Completed in 11 milliseconds

123