Home
last modified time | relevance | path

Searched refs:SendToAnother (Results 1 – 11 of 11) sorted by relevance

/developtools/hdc/src/common/
Dtask.cpp30 SendToAnother(CMD_KERNEL_WAKEUP_SLAVETASK, nullptr, 0); in HdcTaskBase()
51 SendToAnother(CMD_KERNEL_CHANNEL_CLOSE, &count, 1); in TaskFinish()
55 bool HdcTaskBase::SendToAnother(const uint16_t command, uint8_t *bufPtr, const int size) in SendToAnother() function in Hdc::HdcTaskBase
Dfile.cpp155SendToAnother(CMD_FILE_MODE, reinterpret_cast<uint8_t *>(const_cast<char *>(s.c_str())), s.size()); in CheckMaster()
158SendToAnother(CMD_FILE_CHECK, reinterpret_cast<uint8_t *>(const_cast<char *>(s.c_str())), s.size()… in CheckMaster()
168 SendToAnother(CMD_FILE_FINISH, &flag, 1); in WhenTransferFinish()
202SendToAnother(CMD_DIR_MODE, reinterpret_cast<uint8_t *>(const_cast<char *>(s.c_str())), s.size()); in FileModeSync()
205SendToAnother(CMD_FILE_CHECK, reinterpret_cast<uint8_t *>(const_cast<char *>(s.c_str())), s.size()… in FileModeSync()
242 SendToAnother(CMD_FILE_MODE, nullptr, 0); in FileModeSync()
343 SendToAnother(CMD_FILE_FINISH, payload, 1); in CommandDispatch()
Dtask.h39 …bool SendToAnother(const uint16_t command, uint8_t *bufPtr, const int size); // D / S corresponds…
Dtransfer.cpp194 ret = SendToAnother(commandData, sendBuf, payloadPrefixReserve + compressSize) > 0; in SendIOPayload()
353 thisClass->SendToAnother(thisClass->commandBegin, nullptr, 0); in OnFileOpen()
Dforward.cpp224 ret = SendToAnother(command, newBuf, bufSize + 4); in SendToTask()
/developtools/hdc/src/host/
Dhost_app.cpp115SendToAnother(CMD_APP_CHECK, const_cast<uint8_t *>(reinterpret_cast<const uint8_t *>(bufString.c_s… in CheckMaster()
170 SendToAnother(CMD_APP_UNINSTALL, payload, payloadSize); in CommandDispatch()
Dhost_unity.cpp143 SendToAnother(CMD_UNITY_BUGREPORT_INIT, nullptr, 0); in CommandDispatch()
Dhost_updater.cpp144 SendToAnother(CMD_FLASHD_CHECK, (uint8_t *)buffer.data(), buffer.size()); in CheckMaster()
164 SendToAnother(command, payload, payloadSize); in CheckCmd()
/developtools/hdc/src/daemon/
Ddaemon_app.cpp109 SendToAnother(CMD_APP_FINISH, vecBuf.data(), vecBuf.size()); in AsyncInstallFinish()
Dshell.cpp260 return thisClass->SendToAnother(CMD_KERNEL_ECHO_RAW, (uint8_t *)buf, size); in ChildReadCallback()
Ddaemon_unity.cpp60 …if (!SendToAnother(currentDataCommand, reinterpret_cast<uint8_t *>(const_cast<char *>(result.c_str… in AsyncCmdOut()