MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / LzmaDecompress

Method LzmaDecompress

databuffer.cpp:243–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

241
242
243bool DataBuffer::LzmaDecompress(DataBuffer& output) const
244{
245 BNDataBuffer* result = BNLzmaDecompress(m_buffer);
246 if (!result)
247 return false;
248 output = DataBuffer(result);
249 return true;
250}
251
252
253bool DataBuffer::Lzma2Decompress(DataBuffer& output) const

Callers 1

ParseDebugInfoMethod · 0.80

Calls 1

DataBufferClass · 0.70

Tested by

no test coverage detected