ReactOS 0.4.16-dev-109-gf4cb10f
|
Go to the source code of this file.
Macros | |
#define | NDEBUG |
BOOL WINAPI AllocateUserPhysicalPages | ( | IN HANDLE | hProcess, |
IN PULONG_PTR | NumberOfPages, | ||
OUT PULONG_PTR | UserPfnArray | ||
) |
Definition at line 338 of file virtmem.c.
BOOL WINAPI FreeUserPhysicalPages | ( | IN HANDLE | hProcess, |
IN PULONG_PTR | NumberOfPages, | ||
IN PULONG_PTR | PageArray | ||
) |
Definition at line 359 of file virtmem.c.
UINT WINAPI GetWriteWatch | ( | IN DWORD | dwFlags, |
IN PVOID | lpBaseAddress, | ||
IN SIZE_T | dwRegionSize, | ||
IN PVOID * | lpAddresses, | ||
OUT PULONG_PTR | lpdwCount, | ||
OUT PULONG | lpdwGranularity | ||
) |
Definition at line 286 of file virtmem.c.
BOOL WINAPI MapUserPhysicalPages | ( | IN PVOID | VirtualAddress, |
IN ULONG_PTR | NumberOfPages, | ||
OUT PULONG_PTR PageArray | OPTIONAL | ||
) |
Definition at line 380 of file virtmem.c.
BOOL WINAPI MapUserPhysicalPagesScatter | ( | IN PVOID * | VirtualAddresses, |
IN ULONG_PTR | NumberOfPages, | ||
OUT PULONG_PTR PageArray | OPTIONAL | ||
) |
Definition at line 401 of file virtmem.c.
Definition at line 316 of file virtmem.c.
LPVOID NTAPI VirtualAlloc | ( | IN LPVOID | lpAddress, |
IN SIZE_T | dwSize, | ||
IN DWORD | flAllocationType, | ||
IN DWORD | flProtect | ||
) |
Definition at line 65 of file virtmem.c.
Referenced by allocate_block(), CKsAllocator::Commit(), copy(), ATL::CWndProcThunk::CWndProcThunk(), main(), replace(), setup_thiscall_wrappers(), START_TEST(), StdMemAllocator_Alloc(), test__strupr(), test_CompareStringW(), test_CreateFileMapping_protection(), Test_InstructionFaults(), test_Loader(), test_mapping(), test_MapViewOfFile(), test_NtAreMappedFilesTheSame(), test_query_process_vm(), test_read_write(), test_VirtualAlloc(), test_VirtualAlloc_protection(), test_VirtualAllocEx(), test_VirtualProtect(), test_write_watch(), test_WriteFileGather(), test_ws_functions(), VirtualTest(), wave_in_test_device(), and wave_out_test_device().
LPVOID NTAPI VirtualAllocEx | ( | IN HANDLE | hProcess, |
IN LPVOID | lpAddress, | ||
IN SIZE_T | dwSize, | ||
IN DWORD | flAllocationType, | ||
IN DWORD | flProtect | ||
) |
Definition at line 23 of file virtmem.c.
Referenced by _DoDLLInjection(), test_ExitProcess(), and VirtualAlloc().
Definition at line 119 of file virtmem.c.
Referenced by allocate_block(), copy(), CKsAllocator::FreeMediaSamples(), main(), replace(), START_TEST(), StdMemAllocator_Free(), test__strupr(), test_CompareStringW(), Test_InstructionFaults(), test_MapViewOfFile(), test_NtAreMappedFilesTheSame(), test_OpenProcess(), test_query_process_vm(), test_read_write(), test_VirtualAlloc(), test_VirtualAlloc_protection(), test_VirtualAllocEx(), test_VirtualProtect(), test_write_watch(), test_WriteFileGather(), test_ws_functions(), wave_in_test_device(), wave_out_test_device(), and ATL::CWndProcThunk::~CWndProcThunk().
BOOL NTAPI VirtualFreeEx | ( | IN HANDLE | hProcess, |
IN LPVOID | lpAddress, | ||
IN SIZE_T | dwSize, | ||
IN DWORD | dwFreeType | ||
) |
Definition at line 83 of file virtmem.c.
Referenced by test_ExitProcess(), and VirtualFree().
Definition at line 183 of file virtmem.c.
Referenced by test_ws_functions().
BOOL NTAPI VirtualProtect | ( | IN LPVOID | lpAddress, |
IN SIZE_T | dwSize, | ||
IN DWORD | flNewProtect, | ||
OUT PDWORD | lpflOldProtect | ||
) |
Definition at line 135 of file virtmem.c.
Referenced by __write_memory(), _resetstkoflw(), allocate_block(), hex2mem(), hook_WaitForInputIdle(), main(), RedirectIat(), test__strupr(), test_CompareStringW(), test_CreateFileMapping_protection(), test_mapping(), test_read_write(), test_VirtualAlloc(), test_VirtualAllocEx(), test_VirtualProtect(), test_write_watch(), UnProtect::UnProtect(), wave_in_test_device(), wave_out_test_device(), and UnProtect::~UnProtect().
BOOL NTAPI VirtualProtectEx | ( | IN HANDLE | hProcess, |
IN LPVOID | lpAddress, | ||
IN SIZE_T | dwSize, | ||
IN DWORD | flNewProtect, | ||
OUT PDWORD | lpflOldProtect | ||
) |
Definition at line 153 of file virtmem.c.
Referenced by test_ExitProcess(), test_VirtualAllocEx(), and VirtualProtect().
SIZE_T NTAPI VirtualQuery | ( | IN LPCVOID | lpAddress, |
OUT PMEMORY_BASIC_INFORMATION | lpBuffer, | ||
IN SIZE_T | dwLength | ||
) |
Definition at line 211 of file virtmem.c.
Referenced by __write_memory(), _module_name_from_addr(), create_stream_from_map(), KmtUserCallbackThread(), test_CreateFileMapping_protection(), test_dib_bits_access(), test_dibsections(), test_image_mapping(), test_IME(), test_Loader(), test_mapping(), test_MapViewOfFile(), test_section_access(), test_VirtualAlloc(), test_VirtualAlloc_protection(), test_VirtualProtect(), and test_write_watch().
SIZE_T NTAPI VirtualQueryEx | ( | IN HANDLE | hProcess, |
IN LPCVOID | lpAddress, | ||
OUT PMEMORY_BASIC_INFORMATION | lpBuffer, | ||
IN SIZE_T | dwLength | ||
) |
Definition at line 227 of file virtmem.c.
Referenced by fetch_memory64_info(), get_shiminfo(), test_ExitProcess(), test_OpenProcess(), test_section_access(), test_VirtualAllocEx(), and VirtualQuery().
Definition at line 258 of file virtmem.c.