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

Method XzDecompress

databuffer.cpp:263–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

261
262
263bool DataBuffer::XzDecompress(DataBuffer& output) const
264{
265 BNDataBuffer* result = BNXzDecompress(m_buffer);
266 if (!result)
267 return false;
268 output = DataBuffer(result);
269 return true;
270}
271
272
273string BinaryNinja::EscapeString(const string& s)

Callers 1

ParseMiniDebugInfoMethod · 0.80

Calls 1

DataBufferClass · 0.70

Tested by

no test coverage detected