Home
last modified time | relevance | path

Searched refs:messageType (Results 1 - 25 of 54) sorted by relevance

123

/foundation/communication/dsoftbus/core/transmission/trans_channel/udp_negotiation/src/
H A Dtrans_udp_virtual.c50 int32_t NotifyUdpChannelClosed(const AppInfo *info, int32_t messageType) in NotifyUdpChannelClosed() argument
53 (void)messageType; in NotifyUdpChannelClosed()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/manager/src/
H A Dclient_trans_channel_callback.c129 int32_t TransOnChannelClosed(int32_t channelId, int32_t channelType, int32_t messageType, ShutdownReason reason) in TransOnChannelClosed() argument
132 "channelId=%{public}d, channelType=%{public}d, messageType=%{public}d", channelId, channelType, messageType); in TransOnChannelClosed()
133 switch (messageType) { in TransOnChannelClosed()
139 TRANS_LOGI(TRANS_SDK, "invalid messageType=%{public}d", messageType); in TransOnChannelClosed()
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/manager/
H A Dclient_trans_channel_callback_test.cpp207 int32_t messageType = MESSAGE_TYPE_NOMAL; in HWTEST_F() local
209 int32_t ret = TransOnChannelClosed(channelId, CHANNEL_TYPE_AUTH, messageType, SHUTDOWN_REASON_UNKNOWN); in HWTEST_F()
215 ret = TransOnChannelClosed(channelId, CHANNEL_TYPE_PROXY, messageType, SHUTDOWN_REASON_UNKNOWN); in HWTEST_F()
224 ret = TransOnChannelClosed(channelId, CHANNEL_TYPE_UDP, messageType, SHUTDOWN_REASON_UNKNOWN); in HWTEST_F()
227 ret = TransOnChannelClosed(channelId, CHANNEL_TYPE_TCP_DIRECT, messageType, SHUTDOWN_REASON_UNKNOWN); in HWTEST_F()
233 ret = TransOnChannelClosed(channelId, CHANNEL_TYPE_BUTT, messageType, SHUTDOWN_REASON_UNKNOWN); in HWTEST_F()
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/clienttranschannelcallback_fuzzer/
H A Dclienttranschannelcallback_fuzzer.cpp78 int32_t messageType = *(reinterpret_cast<const int32_t *>(data)); in ClientTransChannelCallbackTest() local
94 TransOnChannelClosed(channelId, channelType, messageType, (ShutdownReason)shutdownReason); in ClientTransChannelCallbackTest()
/foundation/communication/dsoftbus/sdk/frame/small/src/
H A Dtrans_client_stub.c96 int32_t messageType = 0; in ClientOnChannelClosed() local
99 ReadInt32(data, &messageType); in ClientOnChannelClosed()
100 (void)TransOnChannelClosed(channelId, channelType, messageType, SHUTDOWN_REASON_PEER); in ClientOnChannelClosed()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/
H A Dheader_converter.cpp75 headerConverted.messageType = NetToHost(headerOriginal.messageType); in ConvertNetToHost()
H A Dframe_header.h65 uint16_t messageType = 0; // Distinguish request/response/notify member
/foundation/resourceschedule/device_standby/plugins/strategy/include/
H A Dstrategy_manager_adapter.h31 void HandleEvent(const StandbyMessage& messageType) override;
/foundation/communication/dsoftbus/core/transmission/trans_channel/udp_negotiation/include/
H A Dtrans_udp_negotiation.h35 int32_t NotifyUdpChannelClosed(const AppInfo *info, int32_t messageType);
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/manager/include/
H A Dclient_trans_channel_callback.h32 int32_t TransOnChannelClosed(int32_t channelId, int32_t channelType, int32_t messageType, ShutdownReason reason);
/foundation/communication/dsoftbus/core/authentication/src/
H A Dauth_session_message.c429 if (!JSON_GetInt32FromOject(json, CODE, &messageParse->messageType)) { in IsDeviceMessagePacket()
430 AUTH_LOGE(AUTH_FSM, "parse messageType fail"); in IsDeviceMessagePacket()
432 AUTH_LOGI(AUTH_FSM, "messageType=%{public}d", messageParse->messageType); in IsDeviceMessagePacket()
433 if (messageParse->messageType == CODE_VERIFY_DEVICE) { in IsDeviceMessagePacket()
436 if (messageParse->messageType == CODE_TCP_KEEPALIVE) { in IsDeviceMessagePacket()
547 if (messageParse->messageType == CODE_VERIFY_DEVICE) { in PostDeviceMessage()
549 } else if (messageParse->messageType == CODE_TCP_KEEPALIVE) { in PostDeviceMessage()
/foundation/arkui/ace_engine/frameworks/core/common/
H A Dconnect_server_manager.h50 std::string GetInstanceMapMessage(const char* messageType, int32_t instanceId, const std::string& language = "");
H A Dconnect_server_manager.cpp266 const char* messageType, int32_t instanceId, const std::string& language) in GetInstanceMapMessage()
270 message->Put("type", messageType); in GetInstanceMapMessage()
265 GetInstanceMapMessage( const char* messageType, int32_t instanceId, const std::string& language) GetInstanceMapMessage() argument
/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/include/
H A Dtrans_channel_callback.h34 const char *pkgName, int32_t pid, int32_t channelId, int32_t channelType, int32_t messageType);
/foundation/communication/dsoftbus/sdk/frame/standard/src/
H A Dsoftbus_client_stub.cpp133 int32_t SoftBusClientStub::OnChannelClosed(int32_t channelId, int32_t channelType, int32_t messageType) in OnChannelClosed() argument
135 return TransOnChannelClosed(channelId, channelType, messageType, SHUTDOWN_REASON_PEER); in OnChannelClosed()
266 int32_t messageType; in OnChannelClosedInner() local
267 COMM_CHECK_AND_RETURN_RET_LOGE(data.ReadInt32(messageType), SOFTBUS_IPC_ERR, COMM_SDK, "read messageType failed"); in OnChannelClosedInner()
269 int32_t ret = OnChannelClosed(channelId, channelType, messageType); in OnChannelClosedInner()
H A Dif_softbus_client.cpp46 int32_t ISoftBusClient::OnChannelClosed(int32_t channelId, int32_t channelType, int32_t messageType) in OnChannelClosed() argument
/foundation/communication/dsoftbus/core/authentication/include/
H A Dauth_manager.h60 int32_t messageType; member
/foundation/communication/dsoftbus/sdk/frame/standard/include/
H A Dif_softbus_client.h41 virtual int32_t OnChannelClosed(int32_t channelId, int32_t channelType, int32_t messageType);
/foundation/communication/dsoftbus/core/bus_center/ipc/standard/include/
H A Dbus_center_client_proxy_standard.h31 int32_t OnChannelClosed(int32_t channelId, int32_t channelType, int32_t messageType) override;
/foundation/communication/dsoftbus/core/transmission/ipc/standard/include/
H A Dtrans_client_proxy_standard.h32 int32_t OnChannelClosed(int32_t channelId, int32_t channelType, int32_t messageType) override;
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/multiver/
H A Dvalue_slice_sync.h102 static bool IsPacketValid(const Message *inMsg, uint16_t messageType);
H A Dmulti_ver_data_sync.h112 static bool IsPacketValid(const Message *inMsg, uint16_t messageType);
/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/src/
H A Dtrans_channel_callback.c131 const char *pkgName, int32_t pid, int32_t channelId, int32_t channelType, int32_t messageType) in TransServerOnChannelClosed()
145 .msgMessageType = messageType, in TransServerOnChannelClosed()
130 TransServerOnChannelClosed( const char *pkgName, int32_t pid, int32_t channelId, int32_t channelType, int32_t messageType) TransServerOnChannelClosed() argument
/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/proxy_channel/
H A Dsoftbus_proxychannel_listener_test.cpp84 int32_t channelId, int32_t channelType, int32_t messageType) in TestOnChannelClosed()
90 (void)messageType; in TestOnChannelClosed()
83 TestOnChannelClosed(const char *pkgName, int32_t pid, int32_t channelId, int32_t channelType, int32_t messageType) TestOnChannelClosed() argument
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/
H A Dtime_sync.h120 static bool IsPacketValid(const Message *inMsg, uint16_t messageType);

Completed in 11 milliseconds

123