Home
last modified time | relevance | path

Searched refs:mParser (Results 1 – 13 of 13) sorted by relevance

/hardware/nxp/weaver/libese_weaver/src/
Dweaver-impl.cpp58 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()
[all …]
/hardware/google/aemu/host-common/
DMediaH264DecoderGeneric.cpp83 : mId(id), mParser(parser) { in MediaH264DecoderGeneric()
85 (int)mParser.version()); in MediaH264DecoderGeneric()
97 mParser.parseResetParams(ptr, param); in reset()
104 mParser.parseInitContextParams(ptr, param); in initH264Context()
123 if (canUseCudaDecoder() && mParser.version() >= 200) { in initH264ContextInternal()
155 (mParser.version() >= 200 && mUseGpuTexture) in initH264ContextInternal()
165 if (mUseGpuTexture && mParser.version() >= 200) { in initH264ContextInternal()
182 new MediaFfmpegVideoHelper(264, mParser.version() < 200 ? 1 : 4)); in createAndInitSoftVideoHelper()
189 (int)mParser.version()); in clone()
190 return new MediaH264DecoderGeneric(mId, mParser); in clone()
[all …]
DMediaVpxDecoderGeneric.cpp103 mParser(parser), in MediaVpxDecoderGeneric()
118 if (canUseCudaDecoder() && mParser.version() >= 200) { in initVpxContext()
151 if (false && mParser.version() == 200 && in createAndInitSoftVideoHelper()
157 mParser.version() < 200 ? 1 : 4)); in createAndInitSoftVideoHelper()
161 mParser.version() < 200 ? 1 : 4)); in createAndInitSoftVideoHelper()
169 mParser.parseDecodeFrameParams(ptr, param); in decodeFrame()
224 mParser.version() < 200 ? 1 : 4)); in try_decode()
246 mParser.parseGetImageParams(ptr, param); in getImage()
269 if (mParser.version() == 200) { in getImage()
317 stream->putBe32(mParser.version()); in save()
[all …]
DMediaH264DecoderVideoToolBoxProxy.cpp46 mParser(parser), in MediaH264DecoderVideoToolBoxProxy()
53 return new MediaH264DecoderVideoToolBoxProxy(mId, mParser); in clone()
109 stream->putBe32(mParser.version()); in save()
119 mParser = H264PingInfoParser{version}; in load()
DMediaH264DecoderFfmpeg.cpp51 mParser.parseResetParams(ptr, param); in reset()
58 mParser.parseInitContextParams(ptr, param); in initH264Context()
125 (int)mParser.version()); in clone()
126 return new MediaH264DecoderFfmpeg(mId, mParser); in clone()
131 : mId(id), mParser(parser) { in MediaH264DecoderFfmpeg()
133 (int)mParser.version()); in MediaH264DecoderFfmpeg()
198 mParser.parseDecodeFrameParams(ptr, param); in decodeFrameDirect()
207 mParser.parseDecodeFrameParams(ptr, param); in decodeFrame()
351 mParser.parseGetImageParams(ptr, param); in getImage()
408 if (mParser.version() == 100) { in getImage()
[all …]
DMediaH264DecoderCuvid.cpp69 : mId(id), mParser(parser) { in MediaH264DecoderCuvid()
73 if (mParser.version() == 200) { in MediaH264DecoderCuvid()
90 return new MediaH264DecoderCuvid(mId, mParser); in clone()
100 mParser.parseResetParams(ptr, param); in reset()
107 mParser.parseInitContextParams(ptr, param); in initH264Context()
210 mParser.parseDecodeFrameParams(ptr, param); in decodeFrame()
293 mParser.parseGetImageParams(ptr, param); in getImage()
348 if (mParser.version() == 200) { in getImage()
705 stream->putBe32(mParser.version()); in save()
744 mParser = H264PingInfoParser{version}; in load()
DMediaH264DecoderVideoToolBox.cpp53 : mId(id), mParser(parser) { in MediaH264DecoderVideoToolBox()
58 return new MediaH264DecoderVideoToolBox(mId, mParser); in clone()
227 mParser.parseInitContextParams(ptr, param); in initH264Context()
251 mParser.parseResetParams(ptr, param); in reset()
293 mParser.parseDecodeFrameParams(ptr, param); in decodeFrame()
562 mParser.parseGetImageParams(ptr, param); in getImage()
601 if (mParser.version() == 200 && param.hostColorBufferId >= 0) { in getImage()
694 stream->putBe32(mParser.version()); in save()
717 mParser = H264PingInfoParser{version}; in load()
/hardware/google/aemu/host-common/include/host-common/
DMediaVpxDecoderGeneric.h63 virtual int version() const override { return mParser.version(); } in version()
67 VpxPingInfoParser mParser; variable
DMediaH264DecoderGeneric.h70 H264PingInfoParser mParser; variable
DMediaH264DecoderVideoToolBox.h80 H264PingInfoParser mParser; variable
/hardware/nxp/weaver/libese_weaver/inc/
Dweaver-impl.h89 WeaverParser *mParser; variable
/hardware/interfaces/automotive/vehicle/aidl/impl/default_config/JsonConfigLoader/include/
DJsonConfigLoader.h165 std::unique_ptr<jsonconfigloader_impl::JsonConfigParser> mParser;
/hardware/interfaces/automotive/vehicle/aidl/impl/default_config/JsonConfigLoader/src/
DJsonConfigLoader.cpp703 mParser = std::make_unique<jsonconfigloader_impl::JsonConfigParser>(); in JsonConfigLoader()
708 return mParser->parseJsonConfig(is); in loadPropConfig()