Lines Matching defs:map
25 void *map;
166 void *map = NULL;
197 map = mmap(NULL, MAP_SIZE, PROT_READ | PROT_WRITE,
199 if (map == MAP_FAILED)
204 munmap(map, MAP_SIZE);
207 entry->map = map;
211 /* Write something (in this case the address of the map) to
215 *(unsigned long *)(map + i) = (unsigned long)map + i;
221 munmap(entry->map, MAP_SIZE);