Lines Matching refs:resp
85 std::vector<uint8_t> resp; in GetSlots() local
89 mTransport->Send(getSlotCmd, resp)) { in GetSlots()
101 status = mParser->ParseSlotInfo(std::move(resp), slotInfo); in GetSlots()
138 std::vector<uint8_t> resp; in Read() local
144 mTransport->Send(cmd, resp)) { in Read()
148 status = mParser->ParseReadInfo(resp, readRespInfo); in Read()
152 resp.clear(); in Read()
154 (mTransport->Send(cmd, resp))) { in Read()
156 if (mParser->ParseGetDataInfo(std::move(resp), getDataInfo) == WEAVER_STATUS_OK) { in Read()
195 std::vector<uint8_t> resp; in Write() local
201 mTransport->Send(readCmd, resp)) { in Write()
210 if (status != WEAVER_STATUS_OK || (!mParser->isSuccess(std::move(resp)))) { in Write()