MCPcopy Create free account
hub / github.com/MJx0/KittyMemoryEx / findDataFirst

Method findDataFirst

KittyMemoryEx/KittyScanner.cpp:243–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

241}
242
243uintptr_t KittyScannerMgr::findDataFirst(const uintptr_t start,
244 const uintptr_t end,
245 const void *data,
246 size_t size) const
247{
248 if (!_pMem || start >= end || !data || size < 1)
249 return 0;
250
251 std::string mask(size, 'x');
252
253 return findBytesFirst(start, end, (const char *)data, mask);
254}
255
256/* ======================= ElfScanner ======================= */
257

Callers 3

initMethod · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected