MCPcopy Create free account
hub / github.com/avast/retdec-idaplugin / deserialize

Method deserialize

src/idaplugin/place.cpp:158–172  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156}
157
158bool idaapi retdec_place_t::deserialize(
159 const uchar** pptr,
160 const uchar* end)
161{
162 if (!place_t__deserialize(this, pptr, end) || *pptr >= end)
163 {
164 return false;
165 }
166 auto fa = unpack_ea(pptr, end);
167 _fnc = RetDec::selectiveDecompilation(fa, false);
168 auto y = unpack_ea(pptr, end);
169 auto x = unpack_ea(pptr, end);
170 _yx = YX(y, x);
171 return true;
172}
173
174int idaapi retdec_place_t::id() const
175{

Callers

nothing calls this directly

Calls 1

YXClass · 0.85

Tested by

no test coverage detected