Searched refs:bytesIO (Results 1 – 10 of 10) sorted by relevance
| /developtools/hdc/src/test/ |
| D | ut_mod.cpp | 25 int bytesIO = 0; in TestBaseCommand() local 29 if ((bytesIO = Base::ReadBinFile((UT_TMP_PATH + "/base-discover.result").c_str(), in TestBaseCommand() 43 if ((bytesIO = Base::ReadBinFile((UT_TMP_PATH + "/base-list.result").c_str(), in TestBaseCommand() 54 if ((bytesIO = Base::ReadBinFile((UT_TMP_PATH + "/base-any.result").c_str(), in TestBaseCommand() 76 int bytesIO = 0; in TestShellExecute() local 84 if ((bytesIO = Base::ReadBinFile((UT_TMP_PATH + "/" + resultFile).c_str(), in TestShellExecute() 98 if ((bytesIO = Base::ReadBinFile((UT_TMP_PATH + "/" + resultFile).c_str(), in TestShellExecute()
|
| /developtools/hdc/src/host/ |
| D | server_for_client.h | 37 int ReadChannel(HChannel hChannel, uint8_t *bufPtr, const int bytesIO) override; 44 int BindChannelToSession(HChannel hChannel, uint8_t *bufPtr, const int bytesIO); 56 int ChannelHandShake(HChannel hChannel, uint8_t *bufPtr, const int bytesIO);
|
| D | server_for_client.cpp | 704 int HdcServerForClient::BindChannelToSession(HChannel hChannel, uint8_t *bufPtr, const int bytesIO) in BindChannelToSession() argument 755 int HdcServerForClient::ChannelHandShake(HChannel hChannel, uint8_t *bufPtr, const int bytesIO) in ChannelHandShake() argument 758 rebuildHandshake.insert(rebuildHandshake.end(), bufPtr, bufPtr + bytesIO); in ChannelHandShake() 796 int HdcServerForClient::ReadChannel(HChannel hChannel, uint8_t *bufPtr, const int bytesIO) in ReadChannel() argument 800 return ChannelHandShake(hChannel, bufPtr, bytesIO); in ReadChannel() 806 … if (!SendToDaemon(hChannel, command, bufPtr + sizeof(uint16_t), bytesIO - sizeof(uint16_t))) { in ReadChannel() 813 … string retEcho = String2FormatCommand(reinterpret_cast<char *>(bufPtr), bytesIO, &formatCommand); in ReadChannel() 830 formatCommand.parameters = string(reinterpret_cast<char *>(bufPtr), bytesIO); in ReadChannel() 837 ret = bytesIO; in ReadChannel()
|
| D | client.cpp | 567 int HdcClient::ReadChannel(HChannel hChannel, uint8_t *buf, const int bytesIO) in ReadChannel() argument 576 WRITE_LOG(LOG_DEBUG, "Client ReadChannel :%d", bytesIO); in ReadChannel() 580 if (bytesIO >= static_cast<int>(sizeof(uint16_t))) { in ReadChannel() 586 … string version(reinterpret_cast<char *>(buf + sizeof(uint16_t)), bytesIO - sizeof(uint16_t)); in ReadChannel() 599 … if (!fileTask->CommandDispatch(cmd, buf + sizeof(uint16_t), bytesIO - sizeof(uint16_t))) { in ReadChannel() 610 … if (!appTask->CommandDispatch(cmd, buf + sizeof(uint16_t), bytesIO - sizeof(uint16_t))) { in ReadChannel() 617 string s(reinterpret_cast<char *>(buf), bytesIO); in ReadChannel()
|
| D | client.h | 42 int ReadChannel(HChannel hChannel, uint8_t *buf, const int bytesIO) override;
|
| /developtools/hdc/src/daemon/ |
| D | daemon.h | 48 void JdwpNewFileDescriptor(const uint8_t *buf, const int bytesIO) override;
|
| D | daemon.cpp | 465 void HdcDaemon::JdwpNewFileDescriptor(const uint8_t *buf, const int bytesIO) in JdwpNewFileDescriptor() argument
|
| /developtools/hdc/src/common/ |
| D | channel.h | 44 virtual int ReadChannel(HChannel hChannel, uint8_t *bufPtr, const int bytesIO) in ReadChannel() argument
|
| D | session.h | 142 virtual void JdwpNewFileDescriptor(const uint8_t *buf, const int bytesIO) in JdwpNewFileDescriptor() argument 194 const int bytesIO);
|
| D | session.cpp | 980 const int bytesIO) in DispatchSessionThreadCommand() argument 987 JdwpNewFileDescriptor(baseBuf, bytesIO); in DispatchSessionThreadCommand()
|