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

Method StoreFunctionMemoryAccesses

firmwareninja.cpp:532–540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

530
531
532void FirmwareNinja::StoreFunctionMemoryAccesses(const std::vector<FirmwareNinjaFunctionMemoryAccesses>& fma)
533{
534 if (fma.empty())
535 return;
536
537 BNFirmwareNinjaFunctionMemoryAccesses** fmaArray = MemoryInfoVectorToArray(fma);
538 BNFirmwareNinjaStoreFunctionMemoryAccessesToMetadata(m_object, fmaArray, fma.size());
539 FreeMemoryInfoArray(fmaArray, fma.size());
540}
541
542
543std::vector<FirmwareNinjaFunctionMemoryAccesses> FirmwareNinja::QueryFunctionMemoryAccesses()

Callers

nothing calls this directly

Calls 4

MemoryInfoVectorToArrayFunction · 0.85
FreeMemoryInfoArrayFunction · 0.85
emptyMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected