Home | History | Annotate | Download | only in ion

Lines Matching full:map_flags

20 int map_flags = MAP_SHARED;
96 ret = ion_map(fd, handle, len, prot, map_flags, 0, &ptr, &map_fd);
161 ptr = mmap(NULL, len, prot, map_flags, share_fd, 0);
217 ptr = mmap(NULL, len, prot, map_flags, recv_fd, 0);
243 {"map_flags", required_argument, 0, 'z'},
263 map_flags = 0;
264 map_flags |= strstr(optarg, "PROT_EXEC") ?
266 map_flags |= strstr(optarg, "PROT_READ") ?
268 map_flags |= strstr(optarg, "PROT_WRITE") ?
270 map_flags |= strstr(optarg, "PROT_NONE") ?
307 "map_flags %d, prot %d, alloc_flags %d\n", test, len, width,
308 height, fmt, align, map_flags, prot, alloc_flags);