Lines Matching refs:mParser
58 mParser = WeaverParserImpl::getInstance(); in Init()
60 RETURN_IF_NULL(mParser, WEAVER_STATUS_FAILED, "Parser is NULL"); in Init()
62 mParser->getAppletId(aid); in Init()
82 RETURN_IF_NULL(mParser, WEAVER_STATUS_FAILED, "Parser is NULL"); in GetSlots()
88 if (mParser->FrameGetSlotCmd(getSlotCmd) && in GetSlots()
101 status = mParser->ParseSlotInfo(std::move(resp), slotInfo); in GetSlots()
135 RETURN_IF_NULL(mParser, WEAVER_STATUS_FAILED, "Parser is NULL"); in Read()
143 if (mParser->FrameReadCmd(slotId, key, cmd) && in Read()
148 status = mParser->ParseReadInfo(resp, readRespInfo); in Read()
153 if (mParser->FrameGetDataCmd(WeaverParserImpl::sThrottleGetDataP1, (uint8_t)slotId, cmd) && in Read()
156 if (mParser->ParseGetDataInfo(std::move(resp), getDataInfo) == WEAVER_STATUS_OK) { in Read()
192 RETURN_IF_NULL(mParser, WEAVER_STATUS_FAILED, "Parser is NULL"); in Write()
200 if (mParser->FrameWriteCmd(slotId, key, value, readCmd) && in Write()
210 if (status != WEAVER_STATUS_OK || (!mParser->isSuccess(std::move(resp)))) { in Write()