Searched refs:lpAddress (Results 1 – 2 of 2) sorted by relevance
/external/webkit/JavaScriptCore/wtf/wince/ |
D | MemoryManager.cpp | 102 LPVOID MemoryManager::virtualAlloc(LPVOID lpAddress, DWORD dwSize, DWORD flAllocationType, DWORD fl… in virtualAlloc() argument 104 return ::VirtualAlloc(lpAddress, dwSize, flAllocationType, flProtect); in virtualAlloc() 107 BOOL MemoryManager::virtualFree(LPVOID lpAddress, DWORD dwSize, DWORD dwFreeType) in virtualFree() argument 109 return ::VirtualFree(lpAddress, dwSize, dwFreeType); in virtualFree()
|
D | MemoryManager.h | 49 …static LPVOID virtualAlloc(LPVOID lpAddress, DWORD dwSize, DWORD flAllocationType, DWORD flProtect… 50 static BOOL virtualFree(LPVOID lpAddress, DWORD dwSize, DWORD dwFreeType);
|