Home
last modified time | relevance | path

Searched refs:lpAddress (Results 1 – 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/wtf/wince/
DMemoryManager.cpp102 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()
DMemoryManager.h49 …static LPVOID virtualAlloc(LPVOID lpAddress, DWORD dwSize, DWORD flAllocationType, DWORD flProtect…
50 static BOOL virtualFree(LPVOID lpAddress, DWORD dwSize, DWORD dwFreeType);