Searched refs:FileContent (Results 1 – 1 of 1) sorted by relevance
/reactos/modules/rostests/kmtests/ntos_mm/ |
H A D | ZwMapViewOfSection.c | 279 PVOID FileContent; in CompareFileContents() local 285 FileContent = ExAllocatePoolWithTag(PagedPool, BufferLength, 'Test'); in CompareFileContents() 286 if (!skip((FileContent != NULL), "Error allocating memory for FileContent\n")) in CompareFileContents() 288 …Status = ZwReadFile(FileHandle, NULL, NULL, NULL, &IoStatusBlock, FileContent, BufferLength, &Byte… in CompareFileContents() 293 Match = RtlCompareMemory(FileContent, Buffer, BufferLength); in CompareFileContents() 294 ExFreePoolWithTag(FileContent, 'Test'); in CompareFileContents()
|