Home
last modified time | relevance | path

Searched refs:Send (Results 1 – 16 of 16) sorted by relevance

/developtools/profiler/host/smartperf/client/client_command/include/
Dsp_thread_socket.h91 spSocket.Send("init::True"); in DealMsg()
93 spSocket.Send("init::False"); in DealMsg()
97 spSocket.Send("SP_daemon is running"); in DealMsg()
103 spSocket.Send("start::True"); in DealMsg()
106 spSocket.Send("start::False"); in DealMsg()
109 auto lambdaTask = [&spSocket](std::string data) { spSocket.Send(data); }; in DealMsg()
112 spSocket.Send("start::True"); in DealMsg()
114 spSocket.Send("start::False"); in DealMsg()
118 spSocket.Send("stop::True"); in DealMsg()
144 spSocket.Send(result); in EditorRecv()
Dsp_server_socket.h36 int Send(std::string sendBuf);
/developtools/hdc/src/daemon/
Ddaemon.cpp210 Send(hSession->sessionId, channelId, CMD_KERNEL_HANDSHAKE, in HandDaemonAuth()
230 Send(hSession->sessionId, channelId, CMD_KERNEL_HANDSHAKE, in HandDaemonAuth()
301 Send(hSession->sessionId, channelId, CMD_KERNEL_HANDSHAKE, (uint8_t *)failedString.c_str(), in DaemonSessionHandshake()
320 Send(hSession->sessionId, channelId, CMD_KERNEL_HANDSHAKE, in DaemonSessionHandshake()
409 Send(hSession->sessionId, channelId, CMD_KERNEL_CHANNEL_CLOSE, payload, 1); in FetchCommand()
421 Send(hSession->sessionId, channelId, CMD_KERNEL_CHANNEL_CLOSE, &count, 1); in FetchCommand()
462 return Send(sessionId, channelId, command, reinterpret_cast<uint8_t *>(bufPtr), size) > 0; in ServerCommand()
/developtools/hdc/hdc_rust/src/common/
Dtaskbase.rs20 pub trait TaskBase: Send + Sync + 'static {
Djdwp.rs35 pub trait JdwpBase: Send + Sync + 'static {}
/developtools/smartperf_host/ide/src/doc/md/
Dquickstart_ability_monitor.md122 - Data Send:发送的网络数据总字节数。
123 - Data Send/sec:每秒发送的网络数据字节数。
/developtools/hdc/src/host/
Dclient.cpp424 thisClass->Send(thisClass->channel->channelId, in CommandWorker()
449 thisClass->Send(hChannel->channelId, reinterpret_cast<uint8_t *>(cmd), strlen(cmd)); in ReadStd()
555 Send(hChannel->channelId, reinterpret_cast<uint8_t *>(hShake), sizeof(ChannelHandShake)); in PreHandshake()
558Send(hChannel->channelId, reinterpret_cast<uint8_t *>(hShake), offsetof(struct ChannelHandShake, v… in PreHandshake()
563 Send(hChannel->channelId, in PreHandshake()
655Send(this->channel->channelId, reinterpret_cast<uint8_t *>(const_cast<char *>(this->command.c_str(… in WaitFor()
Dserver.cpp441 Send(hSession->sessionId, 0, CMD_KERNEL_HANDSHAKE, in HandServerAuth()
455 Send(hSession->sessionId, 0, CMD_KERNEL_HANDSHAKE, in HandServerAuth()
538 Send(hSession->sessionId, channelId, CMD_KERNEL_CHANNEL_CLOSE, &flag, 1); in FetchCommand()
566 Send(hSession->sessionId, channelId, CMD_KERNEL_CHANNEL_CLOSE, payload, 1); in FetchCommand()
889 Send(hSession->sessionId, hChannel->channelId, CMD_KERNEL_CHANNEL_CLOSE, &count, 1); in DeatchChannel()
Dserver_for_client.cpp90 thisClass->Send(hChannel->channelId, (uint8_t *)&handShake, sizeof(struct ChannelHandShake)); in AcceptClient()
93 thisClass->Send(hChannel->channelId, reinterpret_cast<uint8_t *>(&handShake), in AcceptClient()
220 …if (ptrServer->Send(hdi->hSession->sessionId, hChannel->channelId, commandFlag, bufPtr, bufSize) <… in SendToDaemon()
/developtools/profiler/host/smartperf/client/client_command/
Dsp_server_socket.cpp72 int SpServerSocket::Send(std::string sendBuf) in Send() function in OHOS::SmartPerf::SpServerSocket
/developtools/hdc/src/common/
Dchannel.h49 void Send(const uint32_t channelId, uint8_t *bufPtr, const int size);
Dtask.cpp68 … return sessionBase->Send(taskInfo->sessionId, taskInfo->channelId, command, bufPtr, size) > 0; in SendToAnother()
Dsession.h92 …int Send(const uint32_t sessionId, const uint32_t channelId, const uint16_t commandFlag, const uin…
Dchannel.cpp340 void HdcChannelBase::Send(const uint32_t channelId, uint8_t *bufPtr, const int size) in Send() function in Hdc::HdcChannelBase
Dsession.cpp815 int HdcSessionBase::Send(const uint32_t sessionId, const uint32_t channelId, const uint16_t command… in Send() function in Hdc::HdcSessionBase
1095 Send(hSession->sessionId, 0, CMD_KERNEL_HANDSHAKE, in WorkThreadStartSession()
/developtools/hdc/hdc_rust/src/transfer/
Dbase.rs61 pub trait Reader: Send + Sync + 'static {