Home | History | Annotate | Download | only in runtime

Lines Matching refs:reuse

260                              bool low_4gb, bool reuse, std::string* error_msg) {
270 if (reuse) {
271 // reuse means it is okay that it overlaps an existing page mapping.
447 return new MemMap(name, addr, byte_count, addr, page_aligned_byte_count, 0, true /* reuse */);
451 int fd, off_t start, bool reuse, const char* filename,
456 // Note that we do not allow MAP_FIXED unless reuse == true, i.e we
458 if (reuse) {
459 // reuse means it is okay that it overlaps an existing page mapping.
507 prot, reuse);
537 size_t base_size, int prot, bool reuse)
539 prot_(prot), reuse_(reuse) {