Searched defs:anon_mmap (Results 1 - 3 of 3) sorted by relevance
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | os_bsd.cpp | 3146 // If 'fixed' is true, anon_mmap() will attempt to reserve anonymous memory 3152 static char* anon_mmap(char* requested_addr, size_t bytes, bool fixed) { function 3168 // anon_mmap() should only get called during VM initialization, 3190 return anon_mmap(requested_addr, bytes, (requested_addr != NULL)); 3533 char * addr = anon_mmap(requested_addr, bytes, false);
|
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | os_linux.cpp | 3074 // If 'fixed' is true, anon_mmap() will attempt to reserve anonymous memory 3080 static char* anon_mmap(char* requested_addr, size_t bytes, bool fixed) { function 3096 // anon_mmap() should only get called during VM initialization, 3118 return anon_mmap(requested_addr, bytes, (requested_addr != NULL)); 3454 char * addr = anon_mmap(requested_addr, bytes, false);
|
/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | os_solaris.cpp | 3152 char* os::Solaris::anon_mmap(char* requested_addr, size_t bytes, size_t alignment_hint, bool fixed) { function in class:os::Solaris 3172 char* addr = Solaris::anon_mmap(requested_addr, bytes, alignment_hint, (requested_addr != NULL)); 3203 char* addr = Solaris::anon_mmap(requested_addr, bytes, 0, false);
|
Completed in 694 milliseconds