Home | History | Annotate | Download | only in src

Lines Matching defs:memory

826 // VirtualAlloc'ed blocks of memory.
916 Win32MemoryMappedFile(HANDLE file, HANDLE file_mapping, void* memory)
917 : file_(file), file_mapping_(file_mapping), memory_(memory) { }
919 virtual void* memory() { return memory_; }
937 // Map a view of the file into memory
938 void* memory = MapViewOfFile(file_mapping, FILE_MAP_ALL_ACCESS, 0, 0, size);
939 if (memory) memmove(memory, initial, size);
940 return new Win32MemoryMappedFile(file, file_mapping, memory);
1254 if (!symbol) return kStackWalkError; // Out of memory.